motebit
v1.13.2
Published
Reference runtime and operator console for sovereign AI agents — REPL, daemon, delegation, MCP server. Persistent Ed25519 identity, signed execution receipts, governance at the boundary.
Maintainers
Readme
motebit
Sovereign AI agent for the terminal. Persistent identity, accumulated trust, governance at the boundary.
Install
npm install -g motebitRequires Node.js >= 20. After install, run motebit doctor to verify everything is working.
Quick start
# Interactive REPL — chat with your agent
motebit
# Check system readiness
motebit doctorMarket commands
Pay for tasks and earn from them — a two-sided agent economy.
# Pay side
motebit fund 5.00 # Deposit via Stripe Checkout (opens browser)
motebit delegate "review owner/repo#42" # Discover worker → submit → get result
--capability review_pr # Required capability (default: web_search)
--target <motebit-id> # Skip discovery, delegate to specific agent
--budget 10 # Max spend in USD
--plan # Decompose into steps, multi-agent orchestration
--sovereign # Pay agents directly via Solana wallet (no relay settlement)
--pay-new-agents # Allow paid P2P delegation to agents with no trust history
# (cold-start opt-in; default off)
# Account
motebit balance # Show balance + recent transactions
motebit withdraw 10.00 # Request withdrawal
--destination 0xWallet # Payout address
# Earn side
motebit run --price 0.50 # Daemon mode — accept tasks at $0.50/task
motebit serve --price 0.50 # MCP server mode — same pricing, HTTP transportStanding delegations
Signed, revocable spend grants — scoped capabilities, a lifetime ceiling, short lifetimes by design. See spec/standing-delegation-v1.md.
motebit grant create # Mint a standing-delegation grant
--scope <caps> # Capabilities the grant covers
--subject <s> # Who may spend under it
--lifetime-usd <n> # Hard lifetime ceiling in USD
--days 7 # Grant lifetime (default 7, max 30 — money grants live short)
motebit grant list # List stored grants (state, subject, ceiling)
motebit grant show <id> # Show a grant + its tick schedule
motebit grant revoke <id> # Sign the terminal revocation + propagate to the relayIdentity & trust
motebit id # Show your identity (motebit_id, did:key, public key)
motebit wallet # Show your sovereign Solana wallet (address, USDC balance)
motebit wallet swap <sol> # Convert SOL → USDC working capital
motebit export # Export signed identity bundle (motebit.md)
motebit verify motebit.md # Verify an identity file signature
motebit rotate --reason "scheduled" # Rotate keypair with succession chain
motebit seed # Recovery-seed backup status
motebit seed reveal # Print the seed once (passphrase-gated) for paper
motebit keychain enroll # Opt-in: store the passphrase in the macOS login
# Keychain (your macOS account is the protection —
# not biometrics; never replaces the seed backup)
motebit restore [motebit.md] # Recover an identity — full-bundle from a motebit.md,
# or seed-only (re-derives a sovereign id); also
# resets a forgotten passphrase when the seed
# matches the key already on this machine
motebit register # Register identity with relay
motebit credentials # List earned credentials
motebit ledger <goal-id> # Show execution ledger for a goalNo 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.
Daemon & server
motebit run --identity motebit.md # Daemon mode — goals, sync, delegation
motebit serve --identity motebit.md # MCP server — expose tools via HTTP/stdio
--serve-transport http # Transport: "stdio" (default) or "http"
--serve-port 3100 # HTTP port (default: 3100)
--tools ./my-tools.js # Custom tool definitions
--direct # Direct tool execution (no AI loop)
--self-test # Run self-test after relay registrationGoals & approvals
motebit goal add "Research X" --every 6h # Scheduled goal
motebit goal list # List goals with status
motebit goal outcomes <goal-id> # Execution history
motebit goal pause <goal-id> # Pause a scheduled goal
motebit goal resume <goal-id> # Resume a paused goal
motebit goal remove <goal-id> # Remove a scheduled goal
motebit approvals list # Pending tool call approvals
motebit approvals show <id> # Show approval detail
motebit approvals approve <id> # Approve a pending call
motebit approvals deny <id> # Deny a pending call [--reason <text>]Federation
motebit federation status # Show relay identity
motebit federation peers # List active peers
motebit federation peer <url> # Peer with another relay
motebit federation peer-remove <url> # Un-peer this relay from a remote peer
motebit federation mesh <url1> <url2> ... # Pair-wise peer N relaysSkills
User-installable procedural-knowledge files (agentskills.io-compatible) with motebit's sovereign extensions: cryptographic provenance, sensitivity-tiered loading, hardware-attestation gating. Install is permissive; auto-load is provenance-gated. See spec/skills-v1.md.
motebit skills list # List installed skills with status badges
motebit skills install <dir | did:key:…/name@version> # Install from a local directory or the registry
--force # Overwrite existing version
motebit skills publish <directory> # Sign a skill directory with your identity key + submit to the relay registry
motebit skills enable <name> # Enable for selection (default after install)
motebit skills disable <name> # Skip in selection without removing
motebit skills trust <name> # Operator-attest an unsigned skill — auto-load eligible
motebit skills untrust <name> # Revoke operator-attested trust
motebit skills verify <name> # Re-verify the envelope signature
motebit skills remove <name> # Delete + emit audit event
motebit skills audit [name] # Show the audit log (trust grants, removals, consent) [--event-type=…] [--limit=N] [--json]
motebit skills run-script <skill> <script> [args...] # Phase 2 — gated script execution
--auto-approve # Skip the prompt (still records the audit row)Storage: ~/.motebit/skills/ — installed.json index plus per-skill
subdirectories. Audit events (trust grants, removals) append to
~/.motebit/skills/audit.log as JSONL.
Features
- REPL — Interactive chat with streaming, tool use, and approval flow
- Identity — Ed25519 keypair, encrypted with PBKDF2, stored locally
- Market — Virtual accounts, Stripe deposits, task delegation, settlement, withdrawals
- Daemon mode — Scheduled goals, tool approval queue, fail-closed governance
- MCP — Connect to any MCP server for tool discovery
- Operator mode — Gated write/exec tools with per-call approval
- Memory — Semantic graph with confidence decay and sensitivity governance
- Sync — Multi-device sync via HTTP/WebSocket relay
- Earning — Run as a paid service with
--price, earn from delegated tasks
Providers
The intelligence is pluggable: a motebit's identity, memory, and trust persist independently of its model provider. Configure an inference source:
| Provider | Setup |
| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Anthropic | export ANTHROPIC_API_KEY=sk-ant-... (default) |
| OpenAI | export OPENAI_API_KEY=sk-..., motebit --provider openai |
| Google | export GOOGLE_API_KEY=AIza..., motebit --provider google |
| Groq | export GROQ_API_KEY=gsk_..., motebit --provider groq |
| DeepSeek | export DEEPSEEK_API_KEY=sk-..., motebit --provider deepseek |
| Local server | Ollama, LM Studio, llama.cpp, vLLM, or any OpenAI-compatible endpoint — motebit --provider local-server (alias: ollama); no API key needed |
| Motebit Cloud | motebit --provider proxy — subscription via the relay |
Troubleshooting
If npm install -g motebit fails with native module errors (better-sqlite3):
- macOS: Install Xcode command line tools:
xcode-select --install - Linux: Install build essentials:
apt install build-essential python3(Debian/Ubuntu) - Windows: Install Visual Studio Build Tools — open the Visual Studio Installer (or download from https://visualstudio.microsoft.com/visual-cpp-build-tools/) and select the "Desktop development with C++" workload, plus a recent Windows SDK and Python 3. The legacy
windows-build-toolsnpm package was deprecated in 2018 and does not function on Node 20+.
Run motebit doctor to diagnose issues after install.
Documentation
See docs.motebit.com for full documentation.
How it ships
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.
The public promise of [email protected] 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.
For the wire-format contract third parties build against, see the Apache-2.0 packages: @motebit/protocol, @motebit/crypto, @motebit/sdk, and the 34 open specs. Those promise stability independently and are gated by check-api-surface.
Related
@motebit/protocol— wire-format types (Apache-2.0, zero deps)@motebit/sdk— developer contract for building Motebit-powered agents@motebit/crypto— signing and verification primitives (Apache-2.0, zero deps)@motebit/verify— themotebit-verifyCLI a human installs to check any signed artifact (Apache-2.0)@motebit/verifier— offline third-party verifier library (Apache-2.0)create-motebit— scaffold a signed agent identity
License
Business Source License 1.1 (BUSL-1.1) — see LICENSE.
"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.
