motebit 1.8.3 → 1.10.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 +14 -7
- package/dist/index.js +32682 -31492
- package/package.json +23 -23
- package/schema/motebit-yaml-v1.json +53 -47
package/README.md
CHANGED
|
@@ -91,7 +91,7 @@ motebit federation mesh <url1> <url2> ... # Pair-wise peer N relays
|
|
|
91
91
|
User-installable procedural-knowledge files (agentskills.io-compatible) with
|
|
92
92
|
motebit's sovereign extensions: cryptographic provenance, sensitivity-tiered
|
|
93
93
|
loading, hardware-attestation gating. Install is permissive; auto-load is
|
|
94
|
-
provenance-gated. See
|
|
94
|
+
provenance-gated. See [spec/skills-v1.md](https://github.com/motebit/motebit/blob/main/spec/skills-v1.md).
|
|
95
95
|
|
|
96
96
|
```bash
|
|
97
97
|
motebit skills list # List installed skills with status badges
|
|
@@ -125,10 +125,17 @@ subdirectories. Audit events (trust grants, removals) append to
|
|
|
125
125
|
|
|
126
126
|
## Providers
|
|
127
127
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
|
131
|
-
|
|
|
128
|
+
The intelligence is pluggable: a motebit's identity, memory, and trust persist independently of its model provider. Configure an inference source:
|
|
129
|
+
|
|
130
|
+
| Provider | Setup |
|
|
131
|
+
| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
132
|
+
| **Anthropic** | `export ANTHROPIC_API_KEY=sk-ant-...` (default) |
|
|
133
|
+
| **OpenAI** | `export OPENAI_API_KEY=sk-...`, `motebit --provider openai` |
|
|
134
|
+
| **Google** | `export GOOGLE_API_KEY=AIza...`, `motebit --provider google` |
|
|
135
|
+
| **Groq** | `export GROQ_API_KEY=gsk_...`, `motebit --provider groq` |
|
|
136
|
+
| **DeepSeek** | `export DEEPSEEK_API_KEY=sk-...`, `motebit --provider deepseek` |
|
|
137
|
+
| **Local server** | [Ollama](https://ollama.ai), LM Studio, llama.cpp, vLLM, or any OpenAI-compatible endpoint — `motebit --provider local-server` (alias: `ollama`); no API key needed |
|
|
138
|
+
| **Motebit Cloud** | `motebit --provider proxy` — subscription via the relay |
|
|
132
139
|
|
|
133
140
|
## Troubleshooting
|
|
134
141
|
|
|
@@ -146,11 +153,11 @@ See [docs.motebit.com](https://docs.motebit.com) for full documentation.
|
|
|
146
153
|
|
|
147
154
|
## How it ships
|
|
148
155
|
|
|
149
|
-
`motebit` is the bundled reference runtime — relay, policy engine, sync engine, MCP server, and wallet adapters all inlined into a single
|
|
156
|
+
`motebit` is the bundled reference runtime — relay, policy engine, sync engine, MCP server, and wallet adapters all inlined into a single package at build time. The CLI is its primary operator-facing surface; there are no internal package versions to track.
|
|
150
157
|
|
|
151
158
|
**The public promise of `motebit@1.0` is that operator-facing surface — subcommands, flags, exit codes, `~/.motebit/` layout, relay HTTP routes, MCP server tool list — not the internal workspace package graph.** Breaking changes to that surface require a major bump.
|
|
152
159
|
|
|
153
|
-
For the wire-format contract third parties build against, see the Apache-2.0 packages: [`@motebit/protocol`](https://www.npmjs.com/package/@motebit/protocol), [`@motebit/crypto`](https://www.npmjs.com/package/@motebit/crypto), [`@motebit/sdk`](https://www.npmjs.com/package/@motebit/sdk), and the [
|
|
160
|
+
For the wire-format contract third parties build against, see the Apache-2.0 packages: [`@motebit/protocol`](https://www.npmjs.com/package/@motebit/protocol), [`@motebit/crypto`](https://www.npmjs.com/package/@motebit/crypto), [`@motebit/sdk`](https://www.npmjs.com/package/@motebit/sdk), and the [34 open specs](https://github.com/motebit/motebit/tree/main/spec). Those promise stability independently and are gated by `check-api-surface`.
|
|
154
161
|
|
|
155
162
|
## Related
|
|
156
163
|
|