-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
56 lines (56 loc) · 1.54 KB
/
openclaw.plugin.json
File metadata and controls
56 lines (56 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"id": "openclaw-algorand-plugin",
"name": "Algorand Integration",
"description": "Algorand blockchain integration with MCP and skills — by GoPlausible",
"version": "2.0.3",
"skills": [
"skills/algorand-development",
"skills/algorand-typescript",
"skills/algorand-python",
"skills/algorand-interaction",
"skills/algorand-x402-typescript",
"skills/algorand-x402-python",
"skills/haystack-router-development",
"skills/haystack-router-interaction",
"skills/alpha-arcade-interaction"
],
"activation": {
"commands": ["algorand-plugin"]
},
"commandAliases": [
{
"name": "algorand-plugin",
"description": "Algorand blockchain integration (GoPlausible)"
}
],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enableX402": {
"type": "boolean",
"default": true,
"description": "Enable x402 micropayments skills and x402_fetch tool"
}
}
},
"uiHints": {
"enableX402": {
"label": "Enable x402 Micropayments"
}
},
"setup": {
"summary": "Configure Algorand blockchain integration",
"steps": [
{
"id": "x402",
"label": "x402 Micropayments",
"description": "Enable the x402 HTTP-native payment protocol support (x402_fetch tool + skills).",
"configKey": "enableX402"
}
],
"postSetup": {
"message": "Restart the OpenClaw gateway to apply changes. algorand-mcp is auto-registered in ~/.mcporter/mcporter.json on first load."
}
}
}