Free AI Coding Assistant
for the Terminal
10 Models. Zero Config. Persistent Memory.
Code faster with 10 AI models, persistent memory, and Agent Cloud integration. The AI coding assistant that actually remembers your stack.
Used by developers from leading tech companies and universities
Get started in seconds
npx @ainative/cody-clibrew tap AINative-Studio/tap && brew install AINative-Studio/tap/codycurl -fsSL https://ainative.studio/install-cody.sh | shEverything you need, nothing you don't
A complete AI engineering environment that runs where you already work.
10 AI Models
From DeepSeek V4-Flash (79% SWE-Bench) to Kimi K2.6 (80.2% — best open-source). Switch models mid-session with /config model=.
Built-in Tools
Read, Write, Edit, Bash, Glob, Grep — no plugins needed. Full filesystem access out of the box.
MCP Support
Connect to any MCP server for extended capabilities. Database, memory, APIs — all composable.
TDD Enforced
Built-in skills for test-driven development. Write tests first, then implement — enforced by default.
Multi-Platform
macOS, Linux, native binaries, or via npm. Works wherever you have a terminal.
Secure by Design
Sandboxed execution, permission-based tool access, and full audit logs for every action taken.
Latest Features
Autonomous goals, background agents, security scanning, and more.
Smart Permissions
/auto onSafe actions run without prompts — dangerous ones still ask.
Autonomous Goal Mode
/goal <condition>Cody works autonomously until your condition is met.
Agent Monitor
/agent-viewSee all running, completed, and failed agents in one view.
YAML Pipelines
/workflow runDefine multi-step agent pipelines in declarative YAML.
PR Review & Auto-Fix
/pr-review + /pr-fixAutomated pull request review with one-click fixes.
Security Scanning
/security-reviewOWASP Top 10 vulnerability scanning built into your workflow.
Background Agents
/bg <task>Kick off tasks in the background — keep coding while they run.
Code Review
/code-reviewReview staged changes for bugs with precise line citations.
What makes Cody different
Cody is built on AINative infrastructure — not a thin wrapper on top of a third-party API.
ZeroDB Persistent Memory
ExclusiveCody remembers across sessions. Every decision, every pattern, every codebase convention — stored in ZeroDB and recalled automatically. No more re-explaining your stack every session.
ZeroMemory docs- Multi-tier cognitive memory: working, episodic, semantic
- Automatic memory consolidation and decay scoring
- GraphRAG hybrid search across your entire history
- Shared memory across team members on Business/Enterprise
Agent Cloud Integration
EnterprisePromote Cody tasks to cloud-scale. Kick off long-running jobs from your terminal, monitor them from anywhere, and let Agent Cloud handle parallelization and retry logic.
Agent Cloud docs- Deploy terminal tasks to managed agent infrastructure
- A2A networking: coordinate Cody with other agents
- Auto-scaling — run 100 tasks in parallel
- Full observability: traces, logs, and cost breakdowns
See it in action
def is_prime(n: int) -> bool:
if n <= 1:
return False
if n <= 3:
return True
if n % 2 == 0 or n % 3 == 0:
return False
i = 5
while i * i <= n:
if n % i == 0 or n % (i + 2) == 0:
return False
i += 6
return True10 models, zero config
Switch between code, general, and reasoning models with a single flag. All hosted on AINative infrastructure — no third-party API keys needed.
| Model | Size | Category | Speed |
|---|---|---|---|
| deepseek-4-flash(default) | 284B MoE | Code | Default (Free) |
| kimi-k2.6 | 1T MoE | Code | Premium (Paid) |
| qwen3-coder-flash | 480B MoE | Code | Fast |
| glm-5.1 | 754B MoE | Code | Powerful |
| gpt-oss-120b | 120B MoE | General | Fast |
| llama-4-maverick | 400B MoE | General | Free |
| deepseek-v4-pro | 1.6T MoE | Reasoning | Powerful |
| qwen3.5-397b | 397B MoE | Reasoning | Medium |
| glm-5.2 | 754B MoE | Reasoning | Medium |
| deepseek-3.2 | 671B MoE | Reasoning | Medium |
All models available on Business and Enterprise plans. Model configuration docs
Frequently Asked Questions
Everything you need to know about Cody, AI IDEs, and how we compare to Cursor, Copilot, and more.
What is an AI IDE?
Is Cody a Cursor alternative?
What is the best free AI coding assistant?
How does Cody compare to GitHub Copilot?
Can I use Cody offline?
What programming languages does Cody support?
Start building with Cody
One command to install. Your code context remembered forever.
npx @ainative/cody-cli