Turned Claude Code architecture into a high level coding agent framework to build embeddable agents for any rust projects, delivers ~7× higher throughput than Claude Code, ~2× faster than Codex
⚓ Rust 📅 2026-04-02 👤 surdeus 👁️ 6Turned Claude Code architecture into a high level coding agent framework to build embeddable agents for any rust projects, delivers ~7× higher throughput than Claude Code, ~2× faster than Codex, and achieves ultra-fast 0.098 ms recall. Skills, MCP, sessions all batteries included.
Get started with
use cersei::prelude::*;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
let output = Agent::builder()
.provider(Anthropic::from_env()?)
.tools(cersei::tools::coding())
.permission_policy(AllowAll)
.run_with("Fix the failing tests in src/")
.await?;
println!("{}", output.text());
Ok(())
}
1 post - 1 participant
🏷️ Rust_feed