motebit 1.10.0 → 1.11.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/README.md +43 -3
- package/dist/index.js +57715 -56404
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -32,6 +32,9 @@ motebit delegate "review owner/repo#42" # Discover worker → submit → get re
|
|
|
32
32
|
--target <motebit-id> # Skip discovery, delegate to specific agent
|
|
33
33
|
--budget 10 # Max spend in USD
|
|
34
34
|
--plan # Decompose into steps, multi-agent orchestration
|
|
35
|
+
--sovereign # Pay agents directly via Solana wallet (no relay settlement)
|
|
36
|
+
--pay-new-agents # Allow paid P2P delegation to agents with no trust history
|
|
37
|
+
# (cold-start opt-in; default off)
|
|
35
38
|
|
|
36
39
|
# Account
|
|
37
40
|
motebit balance # Show balance + recent transactions
|
|
@@ -43,17 +46,46 @@ motebit run --price 0.50 # Daemon mode — accept tasks at $0.50/tas
|
|
|
43
46
|
motebit serve --price 0.50 # MCP server mode — same pricing, HTTP transport
|
|
44
47
|
```
|
|
45
48
|
|
|
49
|
+
## Standing delegations
|
|
50
|
+
|
|
51
|
+
Signed, revocable spend grants — scoped capabilities, a lifetime ceiling, short lifetimes by design. See [spec/standing-delegation-v1.md](https://github.com/motebit/motebit/blob/main/spec/standing-delegation-v1.md).
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
motebit grant create # Mint a standing-delegation grant
|
|
55
|
+
--scope <caps> # Capabilities the grant covers
|
|
56
|
+
--subject <s> # Who may spend under it
|
|
57
|
+
--lifetime-usd <n> # Hard lifetime ceiling in USD
|
|
58
|
+
--days 7 # Grant lifetime (default 7, max 30 — money grants live short)
|
|
59
|
+
motebit grant list # List stored grants (state, subject, ceiling)
|
|
60
|
+
motebit grant show <id> # Show a grant + its tick schedule
|
|
61
|
+
motebit grant revoke <id> # Sign the terminal revocation + propagate to the relay
|
|
62
|
+
```
|
|
63
|
+
|
|
46
64
|
## Identity & trust
|
|
47
65
|
|
|
48
66
|
```bash
|
|
67
|
+
motebit id # Show your identity (motebit_id, did:key, public key)
|
|
68
|
+
motebit wallet # Show your sovereign Solana wallet (address, USDC balance)
|
|
69
|
+
motebit wallet swap <sol> # Convert SOL → USDC working capital
|
|
49
70
|
motebit export # Export signed identity bundle (motebit.md)
|
|
50
71
|
motebit verify motebit.md # Verify an identity file signature
|
|
51
72
|
motebit rotate --reason "scheduled" # Rotate keypair with succession chain
|
|
73
|
+
motebit seed # Recovery-seed backup status
|
|
74
|
+
motebit seed reveal # Print the seed once (passphrase-gated) for paper
|
|
75
|
+
motebit keychain enroll # Opt-in: store the passphrase in the macOS login
|
|
76
|
+
# Keychain (your macOS account is the protection —
|
|
77
|
+
# not biometrics; never replaces the seed backup)
|
|
78
|
+
motebit restore [motebit.md] # Recover an identity — full-bundle from a motebit.md,
|
|
79
|
+
# or seed-only (re-derives a sovereign id); also
|
|
80
|
+
# resets a forgotten passphrase when the seed
|
|
81
|
+
# matches the key already on this machine
|
|
52
82
|
motebit register # Register identity with relay
|
|
53
83
|
motebit credentials # List earned credentials
|
|
54
84
|
motebit ledger <goal-id> # Show execution ledger for a goal
|
|
55
85
|
```
|
|
56
86
|
|
|
87
|
+
No operator can recover your key — the seed is yours. Record it with `motebit seed reveal` before you need it; `motebit restore` is the door it opens.
|
|
88
|
+
|
|
57
89
|
## Daemon & server
|
|
58
90
|
|
|
59
91
|
```bash
|
|
@@ -72,8 +104,13 @@ motebit serve --identity motebit.md # MCP server — expose tools via HTTP/stdi
|
|
|
72
104
|
motebit goal add "Research X" --every 6h # Scheduled goal
|
|
73
105
|
motebit goal list # List goals with status
|
|
74
106
|
motebit goal outcomes <goal-id> # Execution history
|
|
107
|
+
motebit goal pause <goal-id> # Pause a scheduled goal
|
|
108
|
+
motebit goal resume <goal-id> # Resume a paused goal
|
|
109
|
+
motebit goal remove <goal-id> # Remove a scheduled goal
|
|
75
110
|
motebit approvals list # Pending tool call approvals
|
|
111
|
+
motebit approvals show <id> # Show approval detail
|
|
76
112
|
motebit approvals approve <id> # Approve a pending call
|
|
113
|
+
motebit approvals deny <id> # Deny a pending call [--reason <text>]
|
|
77
114
|
```
|
|
78
115
|
|
|
79
116
|
## Federation
|
|
@@ -95,14 +132,16 @@ provenance-gated. See [spec/skills-v1.md](https://github.com/motebit/motebit/blo
|
|
|
95
132
|
|
|
96
133
|
```bash
|
|
97
134
|
motebit skills list # List installed skills with status badges
|
|
98
|
-
motebit skills install <
|
|
135
|
+
motebit skills install <dir | did:key:…/name@version> # Install from a local directory or the registry
|
|
99
136
|
--force # Overwrite existing version
|
|
137
|
+
motebit skills publish <directory> # Sign a skill directory with your identity key + submit to the relay registry
|
|
100
138
|
motebit skills enable <name> # Enable for selection (default after install)
|
|
101
139
|
motebit skills disable <name> # Skip in selection without removing
|
|
102
140
|
motebit skills trust <name> # Operator-attest an unsigned skill — auto-load eligible
|
|
103
141
|
motebit skills untrust <name> # Revoke operator-attested trust
|
|
104
142
|
motebit skills verify <name> # Re-verify the envelope signature
|
|
105
143
|
motebit skills remove <name> # Delete + emit audit event
|
|
144
|
+
motebit skills audit [name] # Show the audit log (trust grants, removals, consent) [--event-type=…] [--limit=N] [--json]
|
|
106
145
|
motebit skills run-script <skill> <script> [args...] # Phase 2 — gated script execution
|
|
107
146
|
--auto-approve # Skip the prompt (still records the audit row)
|
|
108
147
|
```
|
|
@@ -164,11 +203,12 @@ For the wire-format contract third parties build against, see the Apache-2.0 pac
|
|
|
164
203
|
- [`@motebit/protocol`](https://www.npmjs.com/package/@motebit/protocol) — wire-format types (Apache-2.0, zero deps)
|
|
165
204
|
- [`@motebit/sdk`](https://www.npmjs.com/package/@motebit/sdk) — developer contract for building Motebit-powered agents
|
|
166
205
|
- [`@motebit/crypto`](https://www.npmjs.com/package/@motebit/crypto) — signing and verification primitives (Apache-2.0, zero deps)
|
|
206
|
+
- [`@motebit/verify`](https://www.npmjs.com/package/@motebit/verify) — the `motebit-verify` CLI a human installs to check any signed artifact (Apache-2.0)
|
|
167
207
|
- [`@motebit/verifier`](https://www.npmjs.com/package/@motebit/verifier) — offline third-party verifier library (Apache-2.0)
|
|
168
208
|
- [`create-motebit`](https://www.npmjs.com/package/create-motebit) — scaffold a signed agent identity
|
|
169
209
|
|
|
170
210
|
## License
|
|
171
211
|
|
|
172
|
-
|
|
212
|
+
Business Source License 1.1 (BUSL-1.1) — see [LICENSE](./LICENSE).
|
|
173
213
|
|
|
174
|
-
"Motebit" is a trademark. The
|
|
214
|
+
"Motebit" is a trademark. The Business Source License grants rights to this software, not to any Motebit trademarks, logos, or branding. You may not use Motebit branding in a way that suggests endorsement or affiliation without written permission.
|