motebit 1.1.1 → 1.2.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 +27 -0
- package/dist/index.js +27924 -21402
- package/package.json +13 -12
package/README.md
CHANGED
|
@@ -82,8 +82,35 @@ motebit approvals approve <id> # Approve a pending call
|
|
|
82
82
|
motebit federation status # Show relay identity
|
|
83
83
|
motebit federation peers # List active peers
|
|
84
84
|
motebit federation peer <url> # Peer with another relay
|
|
85
|
+
motebit federation peer-remove <url> # Un-peer this relay from a remote peer
|
|
86
|
+
motebit federation mesh <url1> <url2> ... # Pair-wise peer N relays
|
|
85
87
|
```
|
|
86
88
|
|
|
89
|
+
## Skills
|
|
90
|
+
|
|
91
|
+
User-installable procedural-knowledge files (agentskills.io-compatible) with
|
|
92
|
+
motebit's sovereign extensions: cryptographic provenance, sensitivity-tiered
|
|
93
|
+
loading, hardware-attestation gating. Install is permissive; auto-load is
|
|
94
|
+
provenance-gated. See `spec/skills-v1.md`.
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
motebit skills list # List installed skills with status badges
|
|
98
|
+
motebit skills install <directory> # Install from a local skill directory
|
|
99
|
+
--force # Overwrite existing version
|
|
100
|
+
motebit skills enable <name> # Enable for selection (default after install)
|
|
101
|
+
motebit skills disable <name> # Skip in selection without removing
|
|
102
|
+
motebit skills trust <name> # Operator-attest an unsigned skill — auto-load eligible
|
|
103
|
+
motebit skills untrust <name> # Revoke operator-attested trust
|
|
104
|
+
motebit skills verify <name> # Re-verify the envelope signature
|
|
105
|
+
motebit skills remove <name> # Delete + emit audit event
|
|
106
|
+
motebit skills run-script <skill> <script> [args...] # Phase 2 — gated script execution
|
|
107
|
+
--auto-approve # Skip the prompt (still records the audit row)
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
Storage: `~/.motebit/skills/` — `installed.json` index plus per-skill
|
|
111
|
+
subdirectories. Audit events (trust grants, removals) append to
|
|
112
|
+
`~/.motebit/skills/audit.log` as JSONL.
|
|
113
|
+
|
|
87
114
|
## Features
|
|
88
115
|
|
|
89
116
|
- **REPL** — Interactive chat with streaming, tool use, and approval flow
|