by Blushyes
Open-source CLI coding agent, a free alternative to Claude Code. Generate, debug, and manage code seamlessly.
# Add to your Claude Code skills
git clone https://github.com/Blushyes/coro-codeA high-performance AI coding agent written in Rust with a rich terminal UI

Coro Code is a high-performance AI coding agent written in Rust with a rich terminal UI. Formerly known as Trae Agent Rust, it remains compatible with the original tool spec while focusing on speed, reliability, and great UX.
cargo install --git https://github.com/Blushyes/coro-code --bin coro
# Interactive mode (recommended)
coro
# Single task
coro "Fix the bug in main.rs"
Option A: Environment variables
# OpenAI
export OPENAI_API_KEY="your_openai_api_key"
export OPENAI_MODEL="gpt-4o"
# Optional: Custom base URL and model for OpenAI-compatible APIs
export OPENAI_BASE_URL="https://api.deepseek.com"
export OPENAI_MODEL="deepseek-chat"
# Or use generic overrides for any protocol
export CORO_BASE_URL="https://api.custom.com"
export CORO_MODEL="custom-model"
Option B: Configuration file
Create a coro.json file:
{
"protocol": "openai",
"base_url": "https://api.deepseek.com",
"api_key": "your-api-key",
"model": "deepseek-chat",
"params": {
"max_tokens": 131072,
"temperature": 0.7,
"top_p": 0.9
}
}
# Interactive mode
coro
# Direct command
coro "Help me refactor this function"
# With specific config
coro --config custom.json "Analyze this codebase"
| Provider | Models | Status |
| ---------------- | ----------------------- | --------- |
| π’ OpenAI | gpt-4o, gpt-4o-mini | β
Ready |
| π‘ Anthropic | claude-3.5 family | π§ Coming |
| π΅ Google | gemini-1.5 family | π§ Coming |
| Variable | Description | Example | | ----------------------- | ------------------------------------------ | ------------------------------------------- | | `OPENAI_A...