>_allthecodes
LoginGitHub下载 Beta

Agent acceleration layer

Stop paying fork/exec tax for every tool call.

allthecodes-eco-boost 是给 Codex、Claude Code 和 IDE agent 使用的常驻 sidecar daemon + MCP bridge。高频 fs、git、grep 调用走 UDS 和进程内工具,而不是每次都 shell out。

MCP bridgeUDS JSON-RPCmmap VFSlibgit2grep-searcherwarm cache
-44%Codex wall-clock in benchmark
-66%execve calls
-64%input tokens

Measured 2026-04-21 on openai/codex@rust-v0.122.0. Treat as workload-specific evidence, not a universal guarantee.

Benchmark

Measured on real CLI agent workloads

页面展示时必须保留测量日期和目标 workload,避免把结果泛化到所有仓库。

TargetWall-clockexecveTokens
Codex

openai/codex@rust-v0.122.0

209s -> 117s64 -> 221.9M -> 0.7M input
Claude Code

cold run still reduced process churn

-5%85 -> 15-14% output
Warm cache

tree-sitter parse and grep result cache

resident daemonno shell loop650k-950k saved
Architecture

Small stdio bridge, hot resident daemon

Agent 仍通过 MCP 调用工具;重活交给 daemon,bridge 只负责协议转换。

AgentsCodex / Claude Code / IDE
stdio MCP
Bridgemcp-cli-bridge
UDS JSON-RPC
Daemonmcp-cli-daemon
mmap VFSlibgit2 statusgrep-searchertree-sitter cachefuture LSP
Daemon tools

High-frequency project tools stay in-process

fs.read

mmap-backed file reads keep hot project files in-process instead of spawning cat for every lookup.

fs.snapshot / fs.changes

gitignore-aware incremental sync with version cursors, coalesced changes, and overflow fallback.

git.status

libgit2 status avoids per-call git fork/exec while preserving repository state awareness.

search.grep

grep-searcher runs inside the daemon over the project tree, keeping repeated searches warm.