Your AI Engineering Lead
in the Terminal
Code faster with 10 AI models, built-in tools, and MCP support.
Get started in seconds
npm
npx @ainative/cody-cliHomebrew
brew install ainative/tap/codycurl
curl -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 fast 2B to powerful 32B, including reasoning models. Switch models mid-session.
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.
Multi-Platform
macOS, Linux, native binaries, or via npm. Works wherever you have a terminal.
See it in action
~/my-project
$ cody -p "Write a Python function to check if a number is prime"
Cody > I'll create a prime checker for you.
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 TrueWrote to prime.py using Write tool
$ █
10 models, zero config
Switch between code, text, and reasoning models with a single flag.
| Model | Size | Category | Speed |
|---|---|---|---|
| qwen-coder-32b(default) | 32B | Code | Default |
| qwen-coder-7b | 7B | Code | Fast |
| nouscoder-14b | 14B | Code | Medium |
| gemma-9b | 9B | Text | Medium |
| gemma-2b | 2B | Text | Fastest |
| deepseek-r1-distill-qwen-7b | 7B | Reasoning | Medium |
| deepseek-r1-distill-llama-8b | 8B | Reasoning | Medium |
Built by AINative Studio