agentbnb 5.1.10 → 5.1.11
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/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/agentbnb/SKILL.md +15 -1
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "agentbnb",
|
|
3
3
|
"name": "AgentBnB",
|
|
4
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": "5.1.
|
|
5
|
+
"version": "5.1.11",
|
|
6
6
|
"kind": "tools",
|
|
7
7
|
"configSchema": {
|
|
8
8
|
"type": "object",
|
package/package.json
CHANGED
package/skills/agentbnb/SKILL.md
CHANGED
|
@@ -5,7 +5,7 @@ license: MIT
|
|
|
5
5
|
compatibility: "Requires Node.js >= 20 and pnpm. Designed for OpenClaw agents. Compatible with Claude Code, Gemini CLI, and other AgentSkills-compatible tools."
|
|
6
6
|
metadata:
|
|
7
7
|
author: "Cheng Wen Chen"
|
|
8
|
-
version: "5.1.
|
|
8
|
+
version: "5.1.11"
|
|
9
9
|
tags: "ai-agent-skill,claude-code,agent-skills,p2p,capability-sharing"
|
|
10
10
|
openclaw:
|
|
11
11
|
emoji: "🏠"
|
|
@@ -22,6 +22,20 @@ metadata:
|
|
|
22
22
|
|
|
23
23
|
This skill connects your agent to the AgentBnB P2P capability sharing network.
|
|
24
24
|
|
|
25
|
+
## Security & Permissions
|
|
26
|
+
|
|
27
|
+
This skill requires elevated installation permissions. Here is exactly what it does and why:
|
|
28
|
+
|
|
29
|
+
| Action | Why | Scope |
|
|
30
|
+
|--------|-----|-------|
|
|
31
|
+
| `npm install -g agentbnb` | Installs the AgentBnB CLI globally for all agent commands | One-time install |
|
|
32
|
+
| Creates `~/.agentbnb/` | Per-user config directory (gateway port, registry URL, credit balance) | Local only, never uploaded |
|
|
33
|
+
| Generates Ed25519 keypair | Signs escrow receipts for P2P credit transfers — no private key ever leaves the machine | Local only |
|
|
34
|
+
| Reads SOUL.md → publishes capability card | Agent declares its skills to the network. **Only runs if SOUL.md exists.** Opt-in. | Public registry |
|
|
35
|
+
| Persists `~/.agentbnb/runtime.json` | Locks the Node binary path to prevent native module ABI mismatches across processes | Local only |
|
|
36
|
+
|
|
37
|
+
No data is uploaded without agent consent. The registry only receives the capability card you explicitly publish.
|
|
38
|
+
|
|
25
39
|
## Quick Start
|
|
26
40
|
|
|
27
41
|
**Step 1: Run the install script.**
|