Skip to main content

Minimal AI Coding Agent - A lightweight alternative to Claude Code

Project description

nanoagent

中文 | English

Native minimalist Claude Code alternative. ~700 lines of Python, near-zero dependencies.

Features

  • Full agentic loop with tool use
  • Tools: read, write, edit, glob, grep, bash, websearch
  • Ralph Loop: Automated task execution system
  • Colored terminal output

Model Compatibility

Tested with MiniMax M2: Tool calling success rate 100%

We welcome testing with:

  • OpenAI (GPT-4, GPT-4-turbo, GPT-3.5-turbo)
  • Anthropic (Claude 3.5 Sonnet, Claude 3 Opus)
  • Google (Gemini Pro, Gemini 1.5 Pro)

All models are accessed via OpenRouter API for unified integration.

Quick Start

Installation

Method 1: Install from PyPI (Recommended)

# Using pipx (isolated environment, recommended)
pipx install nanoagent-cli

# Using uv (fastest)
uv tool install nanoagent-cli

# Using pip
pip install nanoagent-cli

Method 2: Install from Source

# Clone repository
git clone https://github.com/not-yes/nanoagent.git
cd nanoagent

# Install dependencies
pip install python-dotenv

# Install as global command (editable mode)
pip install -e .

Configuration

# Create .env file
MODEL=anthropic/claude-sonnet-4-20250514
OPENROUTER_API_KEY=your-key

Usage

# Interactive mode
nanoagent

# Ralph Loop mode
nanoagent /r "Build a calculator"

Usage Modes

1. Direct Chat Mode

Ask questions or give instructions directly, AI executes immediately.

 Analyze performance bottlenecks in app.py
❯ Modify database config in config.json
❯ Search Python best practices on DuckDuckGo

Features:

  • ✅ Instant response
  • ✅ Suitable for simple tasks (single file edits, code analysis, searches)
  • ⚠️ Not ideal for multi-step complex projects

2. Ralph Loop Mode /r

Long tasks auto-decomposition + interactive review + step-by-step execution.

 /r Build a blog project

# Process:
# 1. AI generates TODO.md (staged task list)
# 2. Shows plan overview (6 stages, 30 tasks)
# 3. Interactive options:
#    [y] Start execution
#    [v] View full plan
#    [e] Edit plan in editor
#    [n] Cancel
# 4. Auto-execute after confirmation
# 5. Auto-archive to archives/ when done

Features:

  • ✅ Auto-decompose complex tasks
  • ✅ Preview full plan
  • ✅ Edit tasks in your editor
  • ✅ Suitable for all long-term projects

Quick Tips:

  • Simple tasks: Press y to execute (2s confirmation)
  • Complex projects: Press v to view or e to edit

Mode Selection Guide

Task Type Recommended Mode Example
Single file edit Direct chat "Change port to 8080 in app.py"
Code analysis Direct chat "Analyze performance issues"
Information search Direct chat "Search Flask deployment best practices"
Small project /r "Build a calculator"
Medium project /r "Build a blog system"
Large project /r "Build an e-commerce platform"
Architecture refactor /r "Refactor entire project architecture"

Command Reference

Command Description
Direct input Chat mode, instant response
/r <task> Ralph Loop mode (auto-review)
/c Clear chat history
/q Quit

Tools

Tool Description
read Read file with line numbers
write Write content to file
edit Replace string in file
glob Find files by pattern
grep Search files for regex
bash Run shell command (with safety blacklist)
websearch Web search via DuckDuckGo

bash Safety Restrictions

To prevent accidental damage, bash tool blocks dangerous commands:

  • rm -rf - Recursive delete
  • mkfs - Format filesystem
  • dd if= - Disk-level operations
  • > /dev - Write to device files
  • curl/wget | sh - Remote script execution

Whitelist Exceptions (auto-allowed safe operations):

  • rm -rf node_modules / dist / build / .next / out - Build artifacts
  • rm -rf __pycache__ / .pytest_cache / .coverage - Python cache
  • rm -rf temp / tmp / *.log / .DS_Store - Temp files
  • rm -rf .git/index.lock - Git lock files

Safety Policy:

  • Interactive mode: Prompts user confirmation on dangerous commands
  • Ralph mode: Auto-blocks dangerous commands (prevents unattended damage)
  • Force allow: Set ALLOW_DANGEROUS_BASH=1 to bypass checks

Note: This is basic protection. Use bash tool with caution.

Design Philosophy

"Less is more"

Core Insights

  1. Agentic Loop Essence: while tool_results: call_api()
  2. Task Scheduling Essence: while "[ ]" in progress: run_once()
  3. Tool System Essence: {name: (desc, schema, fn)}

Architecture

nanocode.py      (324 lines) - Core execution engine, single-round agentic loop
ralph_runner.py  (176 lines) - Outer task scheduler, multi-round iteration control
spinner.py       (34 lines)  - Terminal animation
websearch.py     (107 lines) - Search tool
────────────────────────────
Total: 641 lines

Key Decisions

  • Zero framework dependencies: No LangChain, AutoGPT, just stdlib + dotenv
  • Separation of concerns: nanocode = executor, ralph_runner = scheduler
  • Defensive design: File protection, SSL retry, timeout control
  • Auto schema generation: Derive JSON Schema from tool definitions

Inspired By

Core design philosophy inspired by nanocode:

  • Minimalist philosophy: Single-file Python script, no complex dependencies
  • Ralph task-driven mode: Staged execution, automatic verification per step
  • Terminal-first experience: Focus on CLI interaction, rapid iteration

License

Apache License 2.0

When using this project code (including commercial use), you must:

See LICENSE and NOTICE files for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nanoagent_cli-0.1.11.tar.gz (22.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nanoagent_cli-0.1.11-py3-none-any.whl (22.3 kB view details)

Uploaded Python 3

File details

Details for the file nanoagent_cli-0.1.11.tar.gz.

File metadata

  • Download URL: nanoagent_cli-0.1.11.tar.gz
  • Upload date:
  • Size: 22.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.0

File hashes

Hashes for nanoagent_cli-0.1.11.tar.gz
Algorithm Hash digest
SHA256 088ff8bdb60d0cf02555d930662d4d381368d88d45a8f412804359ba7a9e3ba4
MD5 0768c2bd3cee55584d3ae912bb9ff068
BLAKE2b-256 dd4da025b26b865374f466a0464dec12dc867e4872fd22f659e5f86aad715963

See more details on using hashes here.

File details

Details for the file nanoagent_cli-0.1.11-py3-none-any.whl.

File metadata

  • Download URL: nanoagent_cli-0.1.11-py3-none-any.whl
  • Upload date:
  • Size: 22.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.0

File hashes

Hashes for nanoagent_cli-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 0d47de8f6486057d4272377ef55ef46da15a76cacf7a001c7b6438c4d376e08d
MD5 c560895d5147b90d22cb58c7611af9c5
BLAKE2b-256 084d86bb48ad4f4186407a176d84778e3d027a74e5af25c5e0ab6e3957088a66

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page