Engineering capabilities, amplified

Documentation

Kodelet Documentation

Kodelet is a lightweight agentic SWE agent that runs in your terminal. It handles software engineering work, production operations tasks, and repository automation from a local CLI.

Installation

Homebrew

# Install via Homebrew on macOS or Linux
brew tap jingkaihe/kodelet
brew install kodelet

Install script

# Install using the default package-based installer
curl -sSL https://raw.githubusercontent.com/jingkaihe/kodelet/main/install.sh | bash

The default install path is package-based: Homebrew on macOS and .deb or .rpm packages on Linux.

Quick Start

Use one-shot mode for fast automation, kodelet serve for a chat-based web UI, and ACP for longer interactive sessions:

# Ask Kodelet to plan a custom tool implementation
kodelet run "comes up a plan of implementing the custom tool"

# Follow up on the previous conversation and have it implement the plan
kodelet run --follow "now implement it"

# Launch the local chat-based web UI
kodelet serve

# Connect an ACP client for interactive chat mode
toad acp 'kodelet acp'

Usage Modes

Common Commands

# Analyze a repository from the CLI
kodelet run "analyze this codebase"

# Launch the local chat-based web UI
kodelet serve

# Emit structured JSON for automation and integrations
kodelet run --headless "produce structured output"

# Generate a commit message from staged changes
kodelet commit

Providers and Authentication

Kodelet supports Anthropic Claude, OpenAI-compatible models, and Google Gemini. The current docs also cover OpenAI Codex authentication and Anthropic multi-account login flows.

Example environment-based configuration:

export KODELET_PROVIDER="openai"
export KODELET_MODEL="gpt-5.4"
export OPENAI_API_KEY="your-api-key"

You can also configure Anthropic or Google credentials, or use layered config files in ~/.kodelet/config.yaml and ./kodelet-config.yaml.

Configuration Model

Extensibility

Upstream Docs

Examples

Architecture and repository analysis

kodelet "analyze the architecture of this codebase"

Images and diagrams

kodelet run --image ./architecture.png "review this system architecture and suggest improvements"

GitHub automation

kodelet pr

Contributing

Contributions are welcome. Start with the GitHub repository and the development guide.

License

This project is licensed under the MIT License.