Metadata-Version: 2.4
Name: nano-code
Version: 0.1.5
Summary: A Python Implementation of Gemini Code
Requires-Python: >=3.11
Requires-Dist: gitignore-parser>=0.1.12
Requires-Dist: openai>=1.92.2
Requires-Dist: rich>=14.0.0
Requires-Dist: tiktoken>=0.9.0
Description-Content-Type: text/markdown

<div align="center">
  <picture>
    <img alt="Shows the nano-code logo" src="./assets/logo.png">
  </picture>
  <h1>nano-code</h1>
	<p>
    <strong>
      A tiny agent in your terminal
    </strong>
  </p>
  <p>
    <code>uvx nano-code@latest</code>
  </p>
  <p>
    <a href="https://pypi.org/project/nano-code/">
      <img src="https://img.shields.io/pypi/v/nano-code.svg">
    </a>
  </p>
</div>







`nano-code` is a **tiny, batteries-included code-assistant** written in Python.  Inspired by Google’s *Gemini Code*, it lets you spin up an interactive CLI agent powered by OpenAI (or any compatible) LLM and a growing toolbox of actions such as reading files, listing directories, searching text and more.

The project aims to be **small enough to grok in one sitting** yet **powerful enough to be genuinely useful** when navigating or refactoring real-world codebases.



## ✨ Features

| Feature | Description |
|---------|-------------|
| ⚡ **Instant CLI** | Run `nano-code` and start chatting immediately |
| 🛠 **Rich Toolset** | Built-in tools for filesystem operations and more |
| 🧠 **Smart Memory** | Persistent session context with cost tracking |
| 🔌 **Pluggable LLMs** | OpenAI-compatible with easy provider switching |
| 📦 **Zero Config** | Works out of the box with sensible defaults |


### Built-in Tools
- **File Operations**: `list_dir`, `find_files`, `read_file`, `write_file`, `edit_file`, `mv_file_or_dir`
- **Search & Analysis**: `search_text` with regex support
- **Task Management**: `add_tasks` for quick TODO capture
- **Easy Extensibility**: Simple plugin system for custom tools

## 🚀 Installation

### Quick Start (Recommended)
```bash
# Install and run with uv (fastest)
uvx nano-code@latest
```

### Development Setup
```bash
# Clone the repo
git clone https://github.com/gusye1234/nano-code.git
cd nano-code

# Install with uv (recommended)
uv sync

# Or install in development mode
uv pip install -e '.[dev]'

# Or use pip
pip install -e '.[dev]'
```

### Requirements
- Python ≥ 3.11
- OpenAI-compatible API key

### Environment Setup
```bash
# Required: Set your OpenAI API key
export OPENAI_API_KEY="sk-..."

# Optional: Custom endpoint (for OpenAI-compatible APIs)
export LLM_BASE_URL="https://api.openai.com/v1"

# Optional: Default model override
export LLM_MAIN_MODEL="gpt-4.1"
```

## ⚙️ Configuration

Configure nano-code using either environment variables or a config file. Environment variables take precedence over config files.

### Method 1: Environment Variables (Recommended)
```bash
export OPENAI_API_KEY="sk-..."           # Required
export LLM_BASE_URL="https://api.openai.com/v1"  # Optional
export LLM_MAIN_MODEL="gpt-4.1"         # Optional
```

### Method 2: Config File
Create `~/.nano_code/config.json`:

```json
{
  "llm_api_key": "sk-...",
  "llm_base_url": "https://api.openai.com/v1",
  "llm_main_model": "gpt-4.1"
}
```

**Config file locations:**
- **Linux/macOS**: `~/.nano_code/config.json`
- **Windows**: `%USERPROFILE%\.nano_code\config.json`

See `nano_code/env.py` for all supported configuration options.

## 🏃‍♀️ Quickstart

### One-liner (Recommended)
```bash
uvx nano-code
```

### From source
```bash
# After installing from source
python -m nano_code
# OR
nano-code
```

### First Run
1. Run `nano-code` in your project directory
2. The agent will start with your current directory as the working context
3. Start chatting! Try:
   - "List all Python files in this project"
   - "Find TODO comments in the codebase"
   - "Read the main README file"

## 🗂 Project Structure

```
nano-code/
├── nano_code/                 # Core library package
│   ├── agent/                 # Agent implementations
│   ├── agent_tool/            # Tool system
│   │   ├── os_tool/           # Filesystem operations
│   │   └── util_tool/         # Utility functions
│   ├── core/                  # Session & memory management
│   ├── llm/                   # LLM integrations
│   ├── utils/                 # Shared utilities
│   ├── constants.py           # Configuration constants
│   ├── env.py                 # Environment configuration
│   └── __main__.py            # CLI entry point
├── tests/                     # Comprehensive test suite
├── pyproject.toml             # Project configuration
└── README.md                  # Documentation
```

### Key Components
- **Session System**: Maintains context across interactions
- **Tool Registry**: Pluggable architecture for custom tools
- **LLM Abstraction**: Provider-agnostic LLM interface
- **Cost Tracking**: Real-time usage and cost monitoring

## 🤝 Contributing

We welcome contributions! The codebase is intentionally small and designed for easy extension.

### Getting Started
```bash
# Clone and setup
git clone https://github.com/gusye1234/nano-code.git
cd nano-code
uv sync

# Run tests
pytest -q

# Run tests with coverage
pytest --cov=nano_code tests/
```

### Contribution Guidelines
- **Add new tools**: Easy plugin system for custom functionality
- **Improve documentation**: Help make the project more accessible
- **Extend test coverage**: Ensure reliability for all features
- **Report bugs**: Create issues for any problems you encounter

For significant changes, please open an issue first to discuss your approach.

## 📜 License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## 🏷️ Disclaimer

Any git commit that starts with `nc:` is written by nano-code itself.

---

<div align="center">
  <p>
    Built with ❤️ by the nano-code community
  </p>
  <p>
    <a href="https://github.com/gusye1234/nano-code">⭐ Star this project on GitHub</a>
  </p>
</div>