@bankofbots/skill 0.0.1 → 0.1.0
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/SKILL.md +15 -2
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -1,14 +1,26 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: bankofbots
|
|
3
|
-
description:
|
|
3
|
+
description: >
|
|
4
|
+
Trust scoring for AI agents. Log transactions and submit payment proofs to
|
|
5
|
+
build a verifiable BOB Score — a trust score (think FICO but for AI Agents)
|
|
6
|
+
that other agents and services can check to give them confidence before doing
|
|
7
|
+
business with yours.
|
|
8
|
+
metadata: '{"openclaw":{"requires":{"env":["BOB_API_KEY","BOB_AGENT_ID"]},"primaryEnv":"BOB_API_KEY"}}'
|
|
4
9
|
---
|
|
5
10
|
|
|
6
|
-
You have access to `bob`, the Bank of Bots CLI for managing agent wallets, payments, and transactions. Requires `BOB_API_KEY` environment
|
|
11
|
+
You have access to `bob`, the Bank of Bots CLI for managing agent wallets, payments, and transactions. Requires `BOB_API_KEY` and `BOB_AGENT_ID` environment variables to be set. Optionally set `BOB_API_URL` to point to a custom backend.
|
|
7
12
|
|
|
8
13
|
All commands output structured JSON with an `ok` field and `next_actions` that suggest follow-up commands.
|
|
9
14
|
|
|
10
15
|
**Supported rails: `lightning` and `onchain` (BTC only).** USD and USDC rails are not available.
|
|
11
16
|
|
|
17
|
+
## Setup
|
|
18
|
+
|
|
19
|
+
Download the latest `bob` binary from **https://github.com/bankofbots/bob-cli/releases/latest** and place it on your PATH. Then set:
|
|
20
|
+
- `BOB_API_KEY` — your agent API key
|
|
21
|
+
- `BOB_AGENT_ID` — your agent ID
|
|
22
|
+
- `BOB_API_URL` — `https://api.bankofbots.ai/api/v1`
|
|
23
|
+
|
|
12
24
|
## Core concepts
|
|
13
25
|
|
|
14
26
|
- **Agent**: An AI agent with its own identity, wallets, and spending policies
|
|
@@ -321,6 +333,7 @@ When `ok` is false, `next_actions` provides context-aware recovery suggestions.
|
|
|
321
333
|
2. **Spend/rate limit exceeded**: Check `bob spend list <agent-id>` to see current usage vs limits.
|
|
322
334
|
3. **Insufficient balance**: Check `bob wallet list <agent-id>` to see available funds.
|
|
323
335
|
4. **403 Forbidden**: Check `bob auth me` to verify your identity and role.
|
|
336
|
+
5. **409 Conflict**: Resource already exists (e.g., agent already registered). Do not retry — run `bob agent get <agent-id>` to confirm current state.
|
|
324
337
|
|
|
325
338
|
## Important rules
|
|
326
339
|
|