Skip to main content

Your AI Engineering Lead
in the Terminal

Code faster with 10 AI models, built-in tools, and MCP support.

Get started in seconds

npmnpx @ainative/cody-cli
Homebrewbrew install ainative/tap/cody
curlcurl -fsSL https://ainative.studio/install-cody.sh | sh

Everything 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 True
Wrote to prime.py using Write tool
$

10 models, zero config

Switch between code, text, and reasoning models with a single flag.

ModelSizeCategorySpeed
qwen-coder-32b(default)32BCodeDefault
qwen-coder-7b7BCodeFast
nouscoder-14b14BCodeMedium
gemma-9b9BTextMedium
gemma-2b2BTextFastest
deepseek-r1-distill-qwen-7b7BReasoningMedium
deepseek-r1-distill-llama-8b8BReasoningMedium

Start building with Cody

One command to install.

npx @ainative/cody-cli