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

Uploaded Python 3

File details

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

File metadata

  • Download URL: nanoagent_cli-0.1.12.tar.gz
  • Upload date:
  • Size: 22.2 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.12.tar.gz
Algorithm Hash digest
SHA256 32faa6bded4ac90596d594f82c7f2300a4fd97c7b1d3ec536272d944624c5555
MD5 c003d0c71d5ec2f500e8197070e515e4
BLAKE2b-256 fcad2019ea52c2bb8b86e64d8c7667ef589205c581f64e5622c3f0959b7ee451

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nanoagent_cli-0.1.12-py3-none-any.whl
  • Upload date:
  • Size: 22.5 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.12-py3-none-any.whl
Algorithm Hash digest
SHA256 1544a7160209438062c6ee05086f047395a0b10ccfb76136b9cf847dd5d77aad
MD5 84614bb5ced12c7bae1d543a44869849
BLAKE2b-256 43a3a4c1db05b9318e22df7cbe0b495796cbfc32ac82596bec95ac8260969ff8

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