CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
beardfaceguy avatar

Daimonos

beardfaceguy/daimonos
STDIOregistry active
Summary

If you're running AI coding agents and watching them burn tokens on verbose terminal output, this is the fix. Daimonos sits between your agent and the shell, intercepting commands like cargo test or git status and returning compact JSON instead of raw text dumps. It auto-detects tools like cargo, git, gh, and docker, then exposes them as native MCP operations with structured responses. The benchmarks show 20-45% token savings on typical coding tasks. Works as a standard MCP server over stdio, so it drops into Cursor, Zed, or Claude Code with a two-line config change.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →

Daimonos

CI Latest Release License: MIT MCP Registry

An agent-optimized OS layer that makes AI coding agents faster and cheaper.

Daimonos replaces the built-in file, search, exec, and git tools in your AI coding agent with structured equivalents that return compact JSON instead of raw terminal output. The result: fewer tokens consumed, fewer round-trips, and lower API costs — with zero changes to your workflow.

Platforms: Linux (x86_64, aarch64) and macOS (Apple Silicon, Intel). Windows support is planned.

For repository agent/operator conventions, see AGENTS.md (especially Daimonos tool usage policy).

The name comes from Greek daimon (agent/spirit), the etymological root of "daemon."

The problem

When an AI agent runs cargo test, it gets back hundreds of lines of terminal output — progress bars, compile messages, passing test names — when all it needs is "47 passed, 0 failed." The agent pays for every token of that noise: reading it, reasoning about it, and carrying it in context for the rest of the session.

The same waste happens with git status, docker ps, ls -la, and every other shell command. Agents spend 30-50% of their token budget on verbose, unstructured tool output.

How it works

Daimonos runs as an MCP server that your IDE or CLI spawns automatically. It provides the same operations agents already use — read files, write files, search, execute commands, git operations — but returns compact, structured JSON instead of raw text.

The single binary also provides ACP, one-shot agent, interactive chat, and socket-daemon runtimes — a full coding-agent harness in its own right; see Agent harness features below and Runtime modes for the explicit subcommands and compatibility aliases.

Agent: exec("cargo test")

Without Daimonos (raw terminal output):
   Compiling inventory v0.1.0 (/workspace)
    Finished `test` profile [unoptimized + debuginfo] target(s) in 2.31s
     Running unittests src/main.rs (target/debug/deps/inventory-abc123)
running 47 tests
test config::tests::test_default ... ok
test config::tests::test_load ... ok
... (200+ more lines)
test result: ok. 47 passed; 0 failed; 0 ignored

With Daimonos (structured JSON):
{"ok":true,"tests":47,"passed":47,"failed":0,"failures":[]}

Four layers of optimization

  1. Native tool plugins — git, cargo, gh, and docker are exposed as first-class MCP tools with structured JSON output. When agents call exec("cargo test"), Daimonos intercepts it and routes through the native plugin instead.

  2. Semantic output filters — For commands without native plugins (pytest, make, pip install, eslint, etc.), Daimonos applies semantic compression: test runners return summary + failures only, build commands return "ok" or just the errors, install commands return success/failure.

  3. Protocol-level efficiency — Read deduplication (re-reading an unchanged file returns {"unchanged":true} instead of the full content), compact field names, lazy tool exposure, batch operations, and a terse output directive that cuts LLM prose by ~30%.

  4. Managed subprocess execution — Command output is bounded while it is read instead of after full buffering. Daimonos owns Unix process groups, retires descendants on cancellation or session shutdown, isolates child environments through an explicit allowlist, and stores background output in private bounded artifacts.

Benchmark results

Tested with Claude Opus 4.6 on identical coding tasks (read files, search code, edit, run tests, git operations):

MetricBaselineDaimonosSavings
Output tokens5,8423,198-45.3%
Total tokens41,23933,847-17.9%
Tool calls17 avg14 avg-17.6%
Wall time42.1s avg35.2s avg-16.4%

Remote benchmarks on AWS (same hardware, same model, same tasks) showed 20.3% cost reduction and 14.0% faster task completion.

60-second demo

Use this script for README readers, release notes, and social posts:

# 1) Install daimonos
cargo build --release
sudo cp target/release/daimonos /usr/local/bin/

# 2) Configure your MCP client (example: Cursor)
# .cursor/mcp.json -> command: daimonos, args: ["--mcp", "-w", "/path/to/project"]

# 3) Ask your agent to run:
# "Run cargo test and summarize failures only."
# "Show git status as structured output."

What to highlight in the demo:

  • same workflows, less tool-output noise
  • structured responses instead of raw terminal spam
  • fewer tokens and fewer round-trips for common coding tasks

Quick start

Install

Pre-built binaries (Linux and macOS):

# Linux x86_64
curl -L https://github.com/beardfaceguy/daimonos/releases/latest/download/daimonos-x86_64-linux.tar.gz | tar xz
sudo mv daimonos /usr/local/bin/

# macOS Apple Silicon
curl -L https://github.com/beardfaceguy/daimonos/releases/latest/download/daimonos-aarch64-macos.tar.gz | tar xz
sudo mv daimonos /usr/local/bin/

From source:

git clone https://github.com/beardfaceguy/daimonos.git
cd daimonos
cargo build --release
sudo cp target/release/daimonos /usr/local/bin/

See docs/install.md for all platforms (ARM Linux, Intel Mac, musl static builds).

Configure your IDE

For most users, start with one of these:

  • Cursor: Cursor IDE setup
  • Zed: Zed setup
  • Claude Code: Claude Code setup

Add Daimonos as an MCP server. For Cursor, add to your project's .cursor/mcp.json:

{
  "mcpServers": {
    "daimonos": {
      "command": "daimonos",
      "args": ["--mcp", "-w", "/path/to/your/project"]
    }
  }
}

That's it. Daimonos starts when your IDE opens the project and exits when you close it. No daemon to manage, no background service.

Setup guides for other tools

  • Cursor IDE
  • GitHub Copilot (VS Code, Visual Studio, JetBrains, Xcode, Eclipse)
  • Claude Code (CLI + macOS Desktop app)
  • Windsurf
  • Cline (VS Code extension)
  • Gemini CLI
  • Zed Editor
  • Discord integration (bot token, allowlists, read-only tools)
  • Other tools (Claude Desktop, ChatGPT, Continue.dev, BoltAI, etc.)

What's included

Core tools (always available)

ToolWhat it does
read_fileRead with optional offset/limit, content-hash deduplication
write_fileWrite with auto-mkdir
edit_fileString replacement with diff confirmation
searchRegex search (content mode) or file discovery (file mode)
execRun commands with semantic filtering, bounded capture, and owned teardown
batchMultiple operations in a single round-trip
workspace_infoProject type, git status, directory listing, analytics

Native tool plugins (auto-detected)

These appear automatically when the corresponding CLI tool is found on PATH:

PluginCommandsDetected by
gitstatus, log, diff, branch, add, commit, push, pull, checkout.git directory
cargotest, build, check, clippy, fmt, addCargo.toml
ghpr_view, pr_list, pr_create, pr_diff, pr_checks, apigh on PATH
dockerps, logs, exec, images, inspect, stop, compose_up/down/psdocker on PATH

Additional capabilities

  • Workspace snapshots — Checkpoint before risky edits, rollback on failure
  • Starlark scripting — Bundle multiple tool calls into a single script
  • Token analytics — Per-tool-call tracking with cross-session history (daimonos --stats)
  • Background processes — Start, poll, and stop long-running commands with admission limits, private bounded logs, and descendant cleanup
  • Configurable — All tunables in a single TOML config file

Managed process lifecycle

Raw exec, background jobs, and CLI plugins (cargo, git, gh, docker, npm, pytest, curl, and shellcheck) share one managed execution layer:

  • Streaming-time bounds — stdout and stderr retain UTF-8-safe head/tail previews without first allocating the complete output
  • Process-group ownership on Unix — cancellation and shutdown send TERM, wait a configurable grace period, then escalate to KILL and reap descendants
  • Secure background artifacts — random exclusive 0600 files under a private 0700 directory, with configurable byte and job-count limits
  • Environment isolation — children inherit only configured parent variables plus explicit session, tool, and per-call overrides; provider and MCP credentials are not ambiently leaked
  • Structured-output integrity — plugins reject truncated JSON rather than reporting an incomplete result as valid

Agent harness features

Beyond the MCP server, the same binary is a complete coding-agent harness: an interactive terminal UI (daimonos agent), an ACP backend for Zed, a one-shot CLI, and a session daemon with attach/detach and remote control.

Many of its recent features come from a systematic study of 60+ open-source agent harnesses (Aider, OpenHands, SWE-agent, Goose, OpenCode, Forge, Pi, the Cline family, and others) — mining the ecosystem for proven techniques and adapting the best ones.

Provider resilience — a hiccup never kills the turn

  • Bounded provider retries with backoff for transient failures (429/5xx/ network), classified at the provider boundary — fatal auth/validation errors surface immediately
  • Automatic model failover — on a sustained overload the turn continues on the next model in the chain, then returns to your preferred model on the next turn
  • Turn-level error resume — when retries and failover are spent, the agent pauses, repairs the conversation (keeping partial streamed output), and continues where it left off; recovery actions surface in the UI
  • Retry-storm detection — fingerprints repeated identical tool calls and steers the model out of loops
  • Orphan tool-call repair — max-token truncation mid-tool-call is repaired instead of poisoning the session

Multi-provider sessions

  • Several providers, one session — configure Anthropic, OpenAI, and OpenRouter side by side (DAIMONOS_AGENT_<NAME>_API_KEY); every call is routed to the right provider by model, with an explicit provider:slug override
  • Live model discovery — at startup the configured provider(s) are queried for their full model catalogs; the model picker and failover chain always reflect what is actually served, newest first
  • Cross-provider failover — with more than one provider configured, an outage at one can fail over to models at another, mid-turn
  • Provider-reported context windows — compaction thresholds derive from the live model metadata instead of hardcoded numbers

Context economy at the harness level

  • Conversation compaction — summarize-and-continue with high/low water-mark thresholds and provider-honest token accounting
  • Bounded tool results — oversized tool output is capped at the dispatch boundary and offloaded to files the agent can re-read selectively
  • Reverse-budget pruning — old tool results shrink before new ones, so a long turn keeps its recent working set sharp
  • Distilled working memory — durable facts/snippets/notes that survive compaction, separate from the transcript
  • Resilient edit matching (mined from Aider) — whitespace-tolerant search/replace cuts failed-edit retry costs
  • Batched scripting — the agent is steered to bundle multi-step tool work into single Starlark scripts (~2.2x cost lever, benchmarked)

Session durability and control

  • Per-turn workspace checkpoints — automatic snapshots with diff/compare and code-only restore
  • Daemon-owned sessions — detach from a running agent, reattach later (or from another terminal), with a reconnect event ring and canonical snapshot recovery
  • Persistent terminal UI — streaming output, tool-lifecycle cards, approval modal, model/usage status bar, and vim-style scrollback
  • Remote control — paired Android controller over an authenticated WSS gateway
  • Subagent delegation — drive external ACP agents (cursor-agent, codex-acp, …) as delegated workers
  • Thought capture — opt-in local persistence of streamed model reasoning for later inspection

Agent-mode configuration lives in a dotenv-style agent.env (~/.config/daimonos/agent.env); see Runtime modes.

Architecture

Daimonos is a single Rust binary with two planes that share one tool implementation, one opcode protocol, one config, and one analytics store:

  1. Tool server — speaks MCP over stdio (or a Unix socket) to an external agent. Your IDE spawns it as a subprocess — no network, no containers, no setup beyond a JSON config entry.
  2. Agent harness — runs the agent loop itself, dispatching those same tools in-process (no MCP hop) and talking to LLM providers directly.

Tool-server plane

┌──────────────┐     MCP (JSON-RPC over stdio)     ┌─────────────────┐
│  AI Agent    │ ◄──────────────────────────────► │   Daimonos      │
│  (Cursor,    │                                    │                 │
│   Copilot,   │     Structured JSON responses      │  ┌───────────┐ │
│   Claude,    │ ◄──────────────────────────────── │  │ File ops  │ │
│   etc.)      │                                    │  │ Search    │ │
│              │                                    │  │ Exec      │ │
│              │                                    │  │ Git       │ │
│              │                                    │  │ Cargo     │ │
│              │                                    │  │ Docker    │ │
│              │                                    │  │ GitHub    │ │
│              │                                    │  │ Snapshots │ │
│              │                                    │  │ Analytics │ │
└──────────────┘                                    │  └───────────┘ │
                                                    └─────────────────┘

Under the hood, Daimonos uses an opcode-based protocol where each operation has a numeric identifier and compact field names (c, p, s, n) to minimize token overhead. The MCP layer translates between standard JSON-RPC and the internal opcode format.

Agent-harness plane

┌────────────────────────────────────────────────────────┐
│  Frontends: TUI · ACP (Zed) · one-shot CLI · chat REPL │
│             session daemon (attach/detach, Android)    │
├────────────────────────────────────────────────────────┤
│  Shared session core: agent loop · canonical events    │
│  compaction · tool-result bounding · working memory    │
│  checkpoints · approvals/safety policy                 │
├────────────────────────────────────────────────────────┤
│  Provider layer: retries · model failover · resume     │
│  multi-provider router (routes each call by model)     │
│     ├─ Anthropic adapter                               │
│     ├─ OpenAI adapter                                  │
│     └─ OpenRouter adapter                              │
└────────────────────────────────────────────────────────┘

Every frontend drives the same transport-independent session core, so a conversation started in the TUI can detach to the daemon and be reattached from another terminal or a paired phone. Provider adapters own all provider-specific wire format and error classification; everything above them sees one LlmProvider interface and plain model strings — which is what makes failover, live model discovery, and multi-provider routing composable rather than special-cased.

Project vision

Daimonos is being built in three phases:

Phase 1: User-space MCP server + agent harness (current)

A Rust binary that runs on any Linux or macOS machine, in two roles that prove out the same protocol design and structured I/O patterns:

  • Tool server for third-party agents (Cursor, Copilot, Claude Code, Zed, …) via MCP — the original phase-1 deliverable.
  • Agent harness in its own right: interactive TUI, ACP backend for Zed, one-shot CLI, and daemon-owned sessions with remote attach — with multi-provider routing, model failover, compaction, and per-turn checkpoints built in (see Agent harness features).

Status: Production-ready. Both roles are used daily for real development work — including developing Daimonos itself. Pre-built binaries available for Linux (x86_64, aarch64, musl) and macOS (Apple Silicon, Intel).

Phase 2: Minimal Linux distro

A purpose-built Buildroot Linux image with Daimonos as the primary user-space application. Designed for cloud deployment where AI agents need a clean, minimal environment. The distro boots in seconds, has no shell or human-facing UI, and runs the Daimonos daemon as PID 1's direct child. The session daemon and remote-control gateway from phase 1 are the intended tenants: headless agent sessions in the cloud, attached to from a terminal or phone.

Status: Working prototype. Boots in QEMU, deployable to AWS EC2. Used for remote benchmarking.

Phase 3: Custom microkernel

The long-term vision: a microkernel where Daimonos opcodes become native syscalls. StructFS (a filesystem that stores and returns structured data natively), capability-based security, and a process model designed for agent workloads from the ground up.

Status: Design phase.

Development

Prerequisites

DependencyRequiredInstall
Rust (stable 1.75+)Buildrustup.rs
Python 3 + pytestTestspip install -r tests/requirements.txt

Running tests

# Rust unit tests (350+ tests, parallel-safe)
cargo test

# End-to-end MCP protocol tests (150+ pytest cases)
python3 -m pytest tests/ -v

Running benchmarks

cd benchmarks
./setup-mcp.sh
./run-benchmark.sh baseline   # IDE built-in tools
./run-benchmark.sh daimonos   # routed through daimonos MCP
python3 analyze-results.py results/

See benchmarks/README.md for details.

Configuration

All behavior is tunable via a TOML config file. See docs/configuration.md for the full reference, or daimonos.default.toml for annotated defaults.

Key sections:

  • [index] — Trigram indexer tuning (max depth, file size limits)
  • [search] — Search result limits
  • [process] — Process timeouts, in-memory/artifact bounds, background admission, termination grace, inherited environment, semantic filters, and max concurrent Starlark script threads
  • [pipeline_cache] — Subprocess result cache size, inotify watch cap, extra ignored directories
  • [analytics] — Token tracking (SQLite storage, retention)
  • [tools.*] — Per-tool plugin configuration

Contributing

Daimonos is in active development. If you're interested in contributing, start with the AGENTS.md file for coding conventions, architecture decisions, and the review checklist.

See also:

  • CONTRIBUTING.md
  • SECURITY.md
  • CHANGELOG.md
  • LICENSE

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Categories
AI & LLM ToolsData & Analytics
Registryactive
Packagehttps://github.com/beardfaceguy/daimonos/releases/download/v0.1.4/daimonos-x86_64-linux.mcpb
TransportSTDIO
UpdatedMay 12, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
benmebrouk avatar
Wauldo

benmebrouk/wauldo

Stateless agentic tools over MCP: concept extraction, long-context, knowledge graph, planning.
benzatkulak-collab avatar
Social Perks

benzatkulak-collab/socialperks

Agent-native marketing platform: create campaigns, submit proofs, review submissions.
blackboxfoundry avatar
livedatalink

blackboxfoundry/livedatalink-64679add

LiveDataLink is a hosted MCP server giving AI agents 182 real-time data tools across 36 domains through a single Streamable HTTP endpoint. Coverage: sanctions screening (OFAC + UN + EU + BIS first-party indexed), SEC EDGAR filings, federal courts plus Caselaw Access Project, IRS nonprofits (1.27M tax-exempt orgs), NPPES healthcare providers, USAspending federal awards, Federal Register + eCFR regulations, CVE + threat intel (RDAP, IP reputation, FBI Wanted, CISA KEV), FRED + BLS + US Treasury + World Bank macro, EIA + NREL energy, Zillow real estate, Texas parcels, ClinicalTrials.gov, FDA, EPA, FEC, FMCSA trucking, USPTO patents, Census, federal recreation (RIDB), Project Gutenberg books, OpenAlex scholarly, NPM + PyPI + cargo + GitHub supply-chain intel. One bearer token, one endpoint, one bill. Free tier (100 queries/month, no credit card) at livedatalink.ai/signup/free. Paid plans from $10/month. Built for compliance, due diligence, and agentic research workflows. Operated by Blackbox Foundry LLC.
blathrop07 avatar
Voyager Commerce

blathrop07/voyager-commerce

AI ticket commerce for theme parks, zoos, museums, and aquariums via any AI agent
bleedmode avatar
Dear User

bleedmode/dearuser

Tells you how you and your Claude agent actually work together. Local-only, no API keys.
bobbyrgoldsmith avatar
Quarterback

bobbyrgoldsmith/quarterback

Strategic task prioritization and agent orchestration for multi-project operators