Home

Awesome

Claude Engineer v3 šŸ¤–

A powerful self-improving AI Assistant designed for creating and managing AI tools with Claude 3.5. This framework enables Claude to generate and manage its own tools, continuously expanding its capabilities through conversation. Available both as a CLI and a modern web interface!

History and Evolution

This project represents the third major iteration of Claude Engineer, building upon the success of Claude Engineer v2. Key improvements from previous versions include:

Description

Claude Engineer v3 is a sophisticated framework that allows Claude to expand its own capabilities through dynamic tool creation. During conversations, Claude can identify needs for new tools, design them, and implement them automatically. This self-improving architecture means the framework becomes more powerful the more you use it.

Installation

For the best possible experience install uv

macOS and Linux

# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
# Or using wget if curl is not available:
# wget -qO- https://astral.sh/uv/install.sh | sh

# Clone and setup
git clone https://github.com/Doriandarko/claude-engineer.git
cd claude-engineer
uv venv
source .venv/bin/activate

# Run web interface
uv run app.py

# Or run CLI
uv run ce3.py

Windows

# Install uv
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

# Clone and setup
git clone https://github.com/Doriandarko/claude-engineer.git
cd claude-engineer
uv venv
.venv\Scripts\activate


# Run web interface
uv run app.py

# Or run CLI
uv run ce3.py

Interface Options

1. Web Interface šŸŒ

A sleek, modern web UI with features like:

Claude Engineer v3 Web Interface

To run the web interface:

# Using uv (recommended)
uv run app.py

# Or using traditional Python
python app.py

# Then open your browser to:
http://localhost:5000

2. Command Line Interface (CLI) šŸ’»

A powerful terminal-based interface with:

To run the CLI:

# Using uv (recommended)
uv run ce3.py

# Or using traditional Python
python ce3.py

Choose the interface that best suits your workflow:

Self-Improvement Features

Core Features

Project Structure

claude-engineer/
ā”œā”€ā”€ app.py             # Web interface server
ā”œā”€ā”€ ce3.py            # CLI interface
ā”œā”€ā”€ config.py         # Configuration settings
ā”œā”€ā”€ static/           # Web assets
ā”‚   ā”œā”€ā”€ css/         # Stylesheets
ā”‚   ā””ā”€ā”€ js/          # JavaScript files
ā”œā”€ā”€ templates/        # HTML templates
ā”œā”€ā”€ tools/           # Tool implementations
ā”‚   ā”œā”€ā”€ base.py      # Base tool class
ā”‚   ā””ā”€ā”€ ...         # Generated and custom tools
ā””ā”€ā”€ prompts/         # System prompts
    ā””ā”€ā”€ system_prompts.py

Features by Interface

Web Interface Features

CLI Features

Choose the interface that best matches your workflow and preferences. Both interfaces provide access to the same powerful Claude Engineer capabilities, just presented in different ways.

Key Components

Assistant Class

The core Assistant class provides:

Configuration Options

The assistant supports various configuration options through the Config class:

Requirements

Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

Acknowledgments

This project builds upon the foundations of Claude Engineer v2, enhancing its capabilities with self-improving tool generation and advanced token management.

Built-in Tools

Claude Engineer v3 comes with a comprehensive set of pre-built tools:

Core Tools

Development Tools

File System Tools

Web Tools

Utility Tools

Each tool is designed to be:

The tools are dynamically loaded and can be extended during runtime through the Tool Creator, allowing the assistant to continuously expand its capabilities based on user needs.

API Keys Required

  1. Anthropic API Key: Required for Claude 3.5 access
  2. E2B API Key: Required for Python code execution capabilities. Get your key at e2b.dev

Add these to your .env file:

ANTHROPIC_API_KEY=your_anthropic_key
E2B_API_KEY=your_e2b_key

Star History

Star History Chart