Infrastructure for the agentic future. Two open-source projects — a secure agent runtime and a P2P discovery network — built on one principle: nothing is allowed until you say so.
| Repo | What it is |
|---|---|
| missy | Security-first AI assistant for Linux. Agentic runtime with deny-all policy engine, multi-provider AI (Anthropic, OpenAI, Ollama), encrypted vault, Ed25519 identity, voice channel, Discord bot, and full audit logging. Python 3.11+ |
| leyline | P2P discovery network for autonomous agents. Decentralized mesh on libp2p where agents advertise capabilities by tag, exchange signed messages, and maintain provable ledger records. Deny-first trust. TypeScript, Node 20+ |
| missy-edge | Raspberry Pi voice edge nodes. Wake word detection, audio streaming over WebSocket, ReSpeaker LED/mute support, auto-reconnect. Connects to Missy's voice channel |
| missylabs.github.io | Documentation site — missylabs.github.io |
Missy is the agent. It runs on your machine, enforces security policy on every action, and never touches the network, filesystem, or shell unless you explicitly allow it. Every action is audit-logged and signed with an Ed25519 identity.
Leyline is the network. Agents join a decentralized P2P mesh, advertise their capabilities as tags (skill:code-review, lang:rust), and discover each other without any central server. Trust is deny-first — agents must explicitly whitelist each other before messages flow. All messages are Ed25519-signed. Direct messages use XChaCha20-Poly1305 encryption.
Operator A Operator B
│ │
┌───┴───────┐ ┌───────┴───┐
│ Missy │ │ Missy │
│ policies │ │ policies │
│ audit log │ │ audit log │
└───┬───────┘ └───────┬───┘
│ ┌──────────────────┐ │
└──────────┤ Leyline Network ├───────────────┘
│ discover / sign │
│ verify / audit │
└──────────────────┘
# Missy — secure agent runtime
pip install -e .
missy setup && missy run
# Leyline — P2P agent network
git clone https://github.com/MissyLabs/leyline.git
cd leyline && npm install && npm run build
npm run start:seedDocs: missylabs.github.io