English | 简体中文
A terminal-based AI coding assistant, written in Rust as a 1:1 reimplementation of Anthropic's Claude Code.
Unofficial project, not affiliated with Anthropic. This is an independent reimplementation built by reading the published Claude Code CLI. "Claude" and "Claude Code" are trademarks of Anthropic, PBC. Nothing here is endorsed by or supported by Anthropic.
Claude Code's terminal UI is TypeScript on React + Ink. CometixCode reproduces it in Rust on iocraft, a React-style retained-mode TUI framework that is the structural counterpart of Ink — components, hooks, declarative elements. The port follows the original file by file rather than reinventing the architecture: a TypeScript component maps to a Rust component, a hook to a hook, and deliberate deviations are recorded in the source where they happen.
It builds against CometixTUI, a fork of iocraft carrying the primitives this port needs (row-level diffing, event propagation, SIGCONT self-healing, IME cursor, bracketed paste, grid layout).
It is a work in progress. Large parts of the interactive loop, tool execution, permissions, MCP and slash commands are implemented; other areas are partial.
Rust 1.88+ (edition 2024). Nothing else — no system libraries, no
pkg-config. Unicode segmentation and collation come from ICU4X, whose data
is compiled into the binary.
cargo build --release
cargo run --releaseThe binary is cometix.
rustup target add x86_64-pc-windows-gnu
cargo build --release --target x86_64-pc-windows-gnuA mingw-w64 toolchain has to be on PATH: four dependencies compile C or
assembly (onig_sys, ring, tree-sitter, tree-sitter-bash). They link
statically, so the resulting .exe needs no DLLs alongside it.
File search shells out to rg. Claude Code ships a packaged ripgrep inside its
npm package and executes that path; CometixCode keeps the same shape — the
binary is an external asset, never compiled into the executable.
Resolution order:
vendor/ripgrep/<arch>-<os>/rgnext to the executable (release archives)vendor/ripgrep/<arch>-<os>/rgin the source tree (development)- the host's
rgonPATH
So either drop a pinned ripgrep under vendor/ripgrep/, or just have rg
installed. /doctor reports which one is in use. Setting
USE_BUILTIN_RIPGREP=0 forces the host binary.
just test # full suite through cargo-nextest — the gate
just t <pattern> # substring filter
just check # type/borrow check only, links nothingcargo test is not a valid gate for this crate. It runs the whole suite as
threads in one process, and this codebase has process-wide state (env vars,
OnceLock caches) that leaks between tests as a result. just test runs under
cargo-nextest, which gives each test its own process, and pins the host state
a test would otherwise inherit. The justfile header explains the measurements
behind that.
- ClaudeCodeRev — the analysis work this port reads from. Every behaviour here was derived from studying Claude Code through it.
- CometixTUI — the TUI framework this is built on, an iocraft fork carrying the Ink parity primitives the port needs.
- marked-rs — Rust port of
marked, which CC uses to parse Markdown. - anthropic-sdk-rs — Rust port of
@anthropic-ai/sdk, the API client. - nucleo by the Helix editor project — the fuzzy matcher behind file, command and agent completion.