agentbnb 4.0.2 → 4.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -2
- package/dist/card-RNEWSAQ6.js +88 -0
- package/dist/{chunk-7NA43XCG.js → chunk-5QGXARLJ.js} +4 -2
- package/dist/chunk-EVBX22YU.js +68 -0
- package/dist/chunk-JXEOE7HX.js +295 -0
- package/dist/chunk-UB2NPFC7.js +165 -0
- package/dist/cli/index.js +6 -4
- package/dist/conductor-mode-ESGFZ6T5.js +739 -0
- package/dist/{execute-PNGQOMYO.js → execute-QH6F54D7.js} +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +4 -2
- package/dist/peers-E4MKNNDN.js +12 -0
- package/dist/{serve-skill-TPHZH6BS.js → serve-skill-Q6NHX2RA.js} +1 -1
- package/dist/{server-365V3GYD.js → server-B5E566CI.js} +1 -1
- package/dist/skills/agentbnb/bootstrap.js +2001 -0
- package/openclaw.plugin.json +54 -0
- package/package.json +8 -2
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "agentbnb",
|
|
3
|
+
"name": "AgentBnB",
|
|
4
|
+
"description": "P2P agent capability sharing — join the network, share idle skills, earn credits, and access capabilities from peers. Agents run autonomously on their own will.",
|
|
5
|
+
"version": "4.0.3",
|
|
6
|
+
"kind": "tools",
|
|
7
|
+
"configSchema": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"additionalProperties": false,
|
|
10
|
+
"properties": {
|
|
11
|
+
"owner": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"description": "Agent owner name (auto-generated if omitted)"
|
|
14
|
+
},
|
|
15
|
+
"registry": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"default": "https://hub.agentbnb.dev",
|
|
18
|
+
"description": "Registry URL for the AgentBnB network"
|
|
19
|
+
},
|
|
20
|
+
"tier1Threshold": {
|
|
21
|
+
"type": "number",
|
|
22
|
+
"default": 0,
|
|
23
|
+
"description": "Max credits per call for fully autonomous action (0 = disabled)"
|
|
24
|
+
},
|
|
25
|
+
"tier2Threshold": {
|
|
26
|
+
"type": "number",
|
|
27
|
+
"default": 50,
|
|
28
|
+
"description": "Max credits per call for notify-after-action"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"uiHints": {
|
|
33
|
+
"owner": {
|
|
34
|
+
"label": "Agent Owner Name",
|
|
35
|
+
"placeholder": "my-agent",
|
|
36
|
+
"help": "Unique name for your agent on the network. Auto-generated if omitted."
|
|
37
|
+
},
|
|
38
|
+
"registry": {
|
|
39
|
+
"label": "Registry URL",
|
|
40
|
+
"placeholder": "https://hub.agentbnb.dev",
|
|
41
|
+
"help": "AgentBnB public registry. Change only if self-hosting."
|
|
42
|
+
},
|
|
43
|
+
"tier1Threshold": {
|
|
44
|
+
"label": "Tier 1 Threshold (credits)",
|
|
45
|
+
"help": "Actions below this cost proceed without notification. Default 0 = always notify.",
|
|
46
|
+
"advanced": true
|
|
47
|
+
},
|
|
48
|
+
"tier2Threshold": {
|
|
49
|
+
"label": "Tier 2 Threshold (credits)",
|
|
50
|
+
"help": "Actions below this cost notify after completion. Above = ask before acting.",
|
|
51
|
+
"advanced": true
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentbnb",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4",
|
|
4
4
|
"description": "P2P Agent Capability Sharing Protocol — Airbnb for AI agent pipelines",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"dist",
|
|
13
13
|
"README.md",
|
|
14
14
|
"LICENSE",
|
|
15
|
-
"skills"
|
|
15
|
+
"skills",
|
|
16
|
+
"openclaw.plugin.json"
|
|
16
17
|
],
|
|
17
18
|
"exports": {
|
|
18
19
|
".": {
|
|
@@ -79,6 +80,11 @@
|
|
|
79
80
|
"ws": "^8.19.0",
|
|
80
81
|
"zod": "^3.24.0"
|
|
81
82
|
},
|
|
83
|
+
"openclaw": {
|
|
84
|
+
"extensions": [
|
|
85
|
+
"./dist/skills/agentbnb/bootstrap.js"
|
|
86
|
+
]
|
|
87
|
+
},
|
|
82
88
|
"engines": {
|
|
83
89
|
"node": ">=20.0.0"
|
|
84
90
|
},
|