Claude Code Best (CCB) is a high-performance, terminal-native agentic coding assistant. It is a reverse-engineered and significantly enhanced version of the official Anthropic Claude Code CLI, designed to provide an open-source alternative with enterprise-grade features, multi-provider support, and advanced orchestration capabilities package.json2-4 README.md1-13
Unlike traditional chat-based AI assistants, CCB operates within an Agentic Loop, granting it autonomous shell access to read code, execute terminal commands, edit files, and debug programs directly in your local environment package.json15-22 CLAUDE.md107-112 It leverages the Bun runtime for maximum performance and provides deep integration with modern agentic protocols like MCP (Model Context Protocol) and ACP (Agent Client Protocol) package.json25-26 README.md22-23
CCB bridges the gap between natural language intent and complex code operations through several core systems:
/login flow README_EN.md128-160FORK_SUBAGENT, COORDINATOR_MODE, and LAN_PIPES allow the assistant to manage complex multi-step workflows across instances DEV-LOG.md13-21 DEV-LOG.md128The following diagrams illustrate the mapping between high-level conceptual spaces and the specific code entities that implement them.
This diagram shows how a user's natural language request flows through the core orchestration layer to interact with the local environment.
Sources: CLAUDE.md109-112 README.md159 DEV-LOG.md65-78
This diagram bridges internal system management (telemetry, config, and gating) to the responsible code modules.
Sources: package.json101-123 CLAUDE.md78-82 README_EN.md32-34 README_EN.md144-158
| Feature | Official Claude Code | Claude Code Best (CCB) |
|---|---|---|
| Source | Closed Source | Reverse-Engineered / Open README.md13 |
| Runtime | Node.js | Bun (>= 1.3.11) package.json25 |
| Providers | Anthropic Only | Multi-Provider (Bedrock, Vertex, OpenAI) README_EN.md160 |
| Monitoring | Internal | Langfuse & Sentry Integration README.md25-33 |
| Networking | Local | Pipe IPC & LAN Pipes README.md22 |
| Special Modes | Standard | Poor Mode, Buddy Pet, Ultraplan README.md27-35 |
| Customization | Low | 88+ Feature Flags CLAUDE.md86 |
The wiki is organized into the following major sections:
npm i -g claude-code-best, initial setup with /login, and supported API providers README.md41-56FEATURE_* environment variables and the compile-time feature() gate mechanism used in build.ts and dev.ts build.ts12-26 CLAUDE.md78-82MACRO globals, and handles fast-path execution for versioning or MCP servers CLAUDE.md91-106query() generator, covering tool execution and the conversation state machine CLAUDE.md109-112MonitorTool CLAUDE.md123-130 DEV-LOG.md97-104For a full list of definitions, see the Glossary.