-
Notifications
You must be signed in to change notification settings - Fork 0
api daemon protocol
Zachary BENSALEM edited this page Aug 17, 2026
·
2 revisions
Wire protocol versions: DAEMON_PROTOCOL_VERSION (incompatible changes bump this) and DAEMON_SCHEMA_REVISION. Classification rules: backward-compatible / capability-gated / incompatible. Capabilities (packages/agent/src/protocol.ts) must be negotiated; clients check before sending new commands or depending on events. New daemon commands must not be part of startup without a protocol/capability gate. Every wire change updates compatibility maps and both new-client/old-daemon and old-client/new-daemon tests.
Related: Agent package
- Agent package (
packages/agent) -
AI package (
packages/ai) -
Coding agent package (
packages/coding-agent)- Session runtime (
packages/coding-agent/src/core/session-manager.ts) - Coding agent tools (
packages/coding-agent/src/core/tools/) - CLI (
packages/coding-agent/src/cli/args.ts) - Daemon (
packages/coding-agent/src/modes/daemon/) - Interactive mode (
packages/coding-agent/src/modes/) - Skills (
packages/coding-agent/src/core/skills/) - Extensions (
packages/coding-agent/src/core/extensions/) - Refinement (
packages/coding-agent/src/core/refinement/) - RLM runtime (
packages/coding-agent/src/core/rlm-runtime/)
- Session runtime (
- Prime Agent runtime (
prime-agent-runtime/) - TUI (
packages/tui) - Web app (
web/app) - Web design (
web/design) - Web protocol (
web/protocol) - Web server (
web/server)
- Streaming chat
- Tool cards
- Providers and models (
packages/ai) - Sessions and branching
- Slash commands
- MCP
- OAuth