agentbnb 5.1.2 → 5.1.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/dist/cli/index.js +6 -2
- package/package.json +1 -1
- package/skills/agentbnb/SKILL.md +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -1314,7 +1314,7 @@ Batch Results (${res.results.length} items):`);
|
|
|
1314
1314
|
}
|
|
1315
1315
|
const useReceipt = isRemoteRequest && opts.receipt !== false;
|
|
1316
1316
|
const isRelayOnly = isRemoteRequest && !gatewayUrl;
|
|
1317
|
-
const useRegistryLedger =
|
|
1317
|
+
const useRegistryLedger = false;
|
|
1318
1318
|
if (useReceipt && !opts.cost && !isRelayOnly) {
|
|
1319
1319
|
console.error("Error: --cost <credits> is required for remote requests. Specify the credits to commit.");
|
|
1320
1320
|
process.exit(1);
|
|
@@ -1467,7 +1467,11 @@ Batch Results (${res.results.length} items):`);
|
|
|
1467
1467
|
gatewayUrl,
|
|
1468
1468
|
token,
|
|
1469
1469
|
cardId,
|
|
1470
|
-
params: {
|
|
1470
|
+
params: {
|
|
1471
|
+
...params,
|
|
1472
|
+
...opts.skill ? { skill_id: opts.skill } : {},
|
|
1473
|
+
requester: config.owner
|
|
1474
|
+
},
|
|
1471
1475
|
escrowReceipt,
|
|
1472
1476
|
identity: identityAuth
|
|
1473
1477
|
});
|
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.4"
|
|
9
9
|
tags: "ai-agent-skill,claude-code,agent-skills,p2p,capability-sharing"
|
|
10
10
|
---
|
|
11
11
|
|