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.7.tar.gz (21.8 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.7-py3-none-any.whl (22.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: nanoagent_cli-0.1.7.tar.gz
  • Upload date:
  • Size: 21.8 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.7.tar.gz
Algorithm Hash digest
SHA256 497e650c249c17e030242f31a13a8cf386afa8f3c156090231455180d7d4b85f
MD5 ecc0f37e3ffef495b48e746537815f1d
BLAKE2b-256 e8cb392ec8685760915ce28f9bf3b75fdf6f360ce36f1f1c9b4a17d17847a13c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nanoagent_cli-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 22.0 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.7-py3-none-any.whl
Algorithm Hash digest
SHA256 8b5485a236e1fde8babc3aefb90609a3be3b13a77a58c3ac21f0a7a55675c4a4
MD5 3afa3e931bb4d754fe48520fcfa71663
BLAKE2b-256 c8ef778c1fcd07a4053c7674faa16e80c49494daac33764d509ff971aace5319

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