-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
85 lines (85 loc) · 2.91 KB
/
openclaw.plugin.json
File metadata and controls
85 lines (85 loc) · 2.91 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"id": "agentbnb",
"name": "AgentBnB",
"description": "P2P capability sharing protocol for AI agents. Discover, hire, and share skills on a live network with credit-based escrow, Ed25519 identity, and UCAN authorization. 1,800+ tests, MIT license.",
"version": "1.0.0",
"kind": "tools",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"owner": {
"type": "string",
"description": "Agent owner name (auto-generated if omitted)"
},
"registry": {
"type": "string",
"default": "https://agentbnb.fly.dev",
"description": "Registry URL for the AgentBnB network"
},
"tier1Threshold": {
"type": "number",
"default": 0,
"description": "Max credits per call for fully autonomous action (0 = disabled)"
},
"tier2Threshold": {
"type": "number",
"default": 50,
"description": "Max credits per call for notify-after-action"
},
"sessionBudget": {
"type": "number",
"default": 50,
"description": "Max cumulative credits per MCP session (consumer autonomy guard)"
},
"singleRequestMax": {
"type": "number",
"default": 20,
"description": "Max credits per single request (consumer autonomy guard)"
},
"multiSkillPolicy": {
"type": "string",
"enum": ["auto", "notify", "block"],
"default": "notify",
"description": "Policy for subsequent paid skill calls: auto (allow), notify (warn), block (reject)"
}
}
},
"uiHints": {
"owner": {
"label": "Agent Owner Name",
"placeholder": "my-agent",
"help": "Unique name for your agent on the network. Auto-generated if omitted."
},
"registry": {
"label": "Registry URL",
"placeholder": "https://agentbnb.fly.dev",
"help": "AgentBnB public registry and relay. Change only if self-hosting."
},
"tier1Threshold": {
"label": "Tier 1 Threshold (credits)",
"help": "Actions below this cost proceed without notification. Default 0 = always notify.",
"advanced": true
},
"tier2Threshold": {
"label": "Tier 2 Threshold (credits)",
"help": "Actions below this cost notify after completion. Above = ask before acting.",
"advanced": true
},
"sessionBudget": {
"label": "Session Budget (credits)",
"help": "Max credits an agent can spend in a single MCP session. Prevents runaway multi-skill spending.",
"advanced": true
},
"singleRequestMax": {
"label": "Single Request Max (credits)",
"help": "Max credits per individual request. Requests above this are blocked.",
"advanced": true
},
"multiSkillPolicy": {
"label": "Multi-Skill Policy",
"help": "What happens when a second paid skill is called in the same session. 'notify' adds a spend warning.",
"advanced": true
}
}
}