Skip to main content

Your AI Engineering Lead
in the Terminal

Code faster with 10 AI models, persistent memory, and Agent Cloud integration. The AI coding assistant that actually remembers your stack.

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 coding and reasoning models. Switch models mid-session with a single flag.

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.

What makes Cody different

Cody is built on AINative infrastructure — not a thin wrapper on top of a third-party API.

ZeroDB Persistent Memory

Exclusive

Cody 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

Enterprise

Promote 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

~/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 · Stored pattern in ZeroDB memory
$

10 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.

ModelSizeCategorySpeed
qwen-coder-32b(default)32BCodeDefault
qwen-coder-7b7BCodeFast
qwen-coder-3b3BCodeFastest
nouscoder-14b14BCodeMedium
gemma-9b9BGeneralMedium
gemma-2b2BGeneralFastest
deepseek-r1-distill-qwen-7b7BReasoningMedium
deepseek-r1-distill-qwen-14b14BReasoningMedium
deepseek-r1-distill-llama-8b8BReasoningMedium
deepseek-r1-distill-llama-70b70BReasoningPowerful

All models available on Business and Enterprise plans. Model configuration docs →

Built for engineering teams

Cody is available on Business and Enterprise plans. Both include full ZeroDB memory, all 10 models, and MCP support.

Business

Cody AI agent included

$149/mo

For teams that ship fast with AI-assisted engineering.

  • Full Cody CLI access
  • ZeroDB persistent memory
  • 10 AI coding models
  • Team-shared memory context
  • MCP server integrations
  • Priority support
Get Business

Enterprise

Cody + Agent Swarm

$699/mo

For engineering organizations running AI-native at scale.

  • Everything in Business
  • Agent Swarm orchestration
  • Agent Cloud integration
  • A2A networking
  • Custom model deployment
  • Dedicated SLA + support
Contact Sales

See full plan comparison on our pricing page

Start building with Cody

One command to install. Your code context remembered forever.

npx @ainative/cody-cli