Skip to content

Latest commit

 

History

72 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Alan Code

An open-source python coding agent, inspired by Claude Code. Usable in CLI, GUI, or as a Python library to build upon.

Alan Code implements many features of modern CLI agents, such as tool use, hooks, skills, context compaction and more, and adds cross-session memory, live cost tracking, and a GUI with Chat and an LLM perspective.

Works with LiteLLM-compatible model providers and local OpenAI-compatible servers.

Alan Code CLI

Highlights

  • Browser GUI - Chat plus LLM Perspective, showing the normalized system prompt and conversation before backend-specific shaping. --gui
  • Cross-session memory — per-project and global memory the agent reads/writes between sessions, with three modes (off / on / intensive).
  • Live cost + token tracking — estimated $ and token usage per API call, visible in-session.
  • Broad model support - Anthropic direct, any LiteLLM backend (OpenAI, OpenRouter, Gemini, ...), or local models via vLLM / SGLang / Ollama, with a text-based tool-call fallback for models without native tool use.
  • Python library — drive the agent from your own code with sync, async, or streaming APIs. Build auto-fix loops, orchestrators, or custom UIs in a few lines.

Installation

Clone the repo and install in editable mode. Requires Python 3.11+.

git clone git@github.com:tboulet/Alan-Code-agent.git
cd Alan-Code-agent
pip install -e .

Linux and macOS are supported. On Windows, use WSL; native Windows is not currently supported because session locking relies on a Unix API.

Quickstart

Set your model provider's API key in the environment (ANTHROPIC_API_KEY, OPENAI_API_KEY, OPENROUTER_API_KEY, GEMINI_API_KEY, …).

alancode                                              # default: claude-sonnet-4-6
alancode --model openrouter/google/gemini-2.5-pro     # provider/model routing
alancode --model ollama/llama3.1                      # local Ollama
alancode --model openai/my-model --base-url http://localhost:8000/v1   # vLLM / SGLang
alancode --gui                                        # browser GUI
alancode --resume                                     # last session

For LiteLLM routes, the model provider goes inside the model string (ollama/..., openrouter/..., gemini/...). A bare Claude name (claude-sonnet-4-6) automatically uses the native Anthropic SDK; everything else routes through LiteLLM. See CLI flags for the full list.

Usage

CLI mode

Alan Code CLI

A terminal-based chat interface. Type a prompt and press Enter; Alan will stream its reply, apply the configured permission policy before tools, and persist the session so you can --resume later. In default edit mode, reads and writes run automatically while exec tools ask.

Commands

Command Purpose
/help List all available commands
/clear Clear the conversation and start fresh
/compact Manually trigger context compaction
/status Show session info (model, tokens, cost)
/model Show or switch the current model
/backend Show or switch the transport backend (auto / anthropic-native / scripted)
/save Ask the agent to persist key info to memory
/commit Stage + commit changes with an AI-generated message
/diff Show git diff of uncommitted changes
/skill Run a skill — /skill list, /skill <name>, /skill create
/settings Show or update session settings
/settings-project Show or update project defaults in .alan/settings.json
/exit Quit the session

Other commands in docs/reference/slash-commands.md.

Parameters

alancode \
    --model [model_name] \              # bare (gpt-4o, claude-sonnet-4-6) or
                                        # provider/model (ollama/llama3.1, ...)
    --backend [auto/anthropic-native/scripted] \  # advanced; inferred from --model
    --api-key [key] \                   # or set environment variable
    --base-url [url] \                  # for local servers (http://localhost:8000/v1)
    --request-timeout [seconds] \       # custom endpoints default to 3600
    --cw [context_tokens] \             # explicit context-window override
    --permission-mode [safe/edit/yolo] \
    [--gui] \                           # to launch in GUI mode
    [--resume]                          # to resume last session

Other parameters in docs/reference/cli.md.

Parameters can also be set in .alan/settings.json (auto-generated on first run) or modified at runtime with the /settings <key> <value> command.

GUI mode

Argument --gui launches a local GUI interface, with a Chat panel.

It can also show an LLM Perspective panel containing the normalized conversation and system prompt immediately before the backend call.

As a python library

Alan Code can also be used as a Python library using the AlanCodeAgent class, allowing you to build agents or orchestrator systems on top of it.

Example 1 : Build a minimal CLI agent:

import asyncio
from alancode import AlanCodeAgent

agent = AlanCodeAgent()

while True:
    try:
        message = input("> ")
    except (EOFError, KeyboardInterrupt):
        break
    if message.strip():
        print(agent.query(message))

asyncio.run(agent.close())

Full example: examples/example_1_cli_agent.py. Run with python examples/example_1_cli_agent.py after installing the package.

Example 2 : Auto-fix loop — let the agent iterate until tests pass

Run your tests, feed the failures back to the agent, repeat until green. This is the kind of agentic orchestration you can't get from the plain CLI.

import subprocess
from alancode import AlanCodeAgent

agent = AlanCodeAgent(permission_mode="yolo")
agent.query("Read code_bugged.py and write a fixed version to code_fixed.py.")

for attempt in range(5):
    result = subprocess.run(
        ["pytest", "-q", "test_inventory.py"], capture_output=True, text=True,
    )
    if result.returncode == 0:
        print(f"All green after {attempt + 1} attempt(s).")
        break
    agent.query(f"Tests still fail:\n{result.stdout}\nFix the remaining bugs.")

Full example (with a buggy module and a test suite): examples/example_2_auto_fix_loop/run_alan.py.

Example 3 : Stream assistant text and tool calls live

For embedding in a web app, TUI, or WebSocket bridge — receive events as the agent produces them.

import asyncio
from alancode import AlanCodeAgent
from alancode.messages.types import AssistantMessage, TextBlock, ToolUseBlock

async def main():
    agent = AlanCodeAgent(permission_mode="yolo")
    try:
        async for event in agent.query_events_async("List files, then summarize."):
            if not isinstance(event, AssistantMessage):
                continue
            for block in event.content:
                if event.hide_in_api and isinstance(block, TextBlock):
                    print(block.text, end="", flush=True)
                elif not event.hide_in_api and isinstance(block, ToolUseBlock):
                    print(f"\n[tool: {block.name}({block.input})]")
    finally:
        await agent.close()

asyncio.run(main())

Full example: examples/example_3_streaming_agent.py.

Programmatic mode — Alan as an embedded library

When Alan runs inside another program (a benchmark harness, a parent agent, an unattended pipeline) rather than as a developer assistant, pass programmatic=True:

agent = AlanCodeAgent(
    model="claude-sonnet-4-6",
    cwd="/path/to/experiment",
    permission_mode="yolo",
    programmatic=True,
    extra_tools=[MyDomainTool()],   # optional
)

This detaches Alan from project- and host-level state that would otherwise contaminate a controlled run: ~/.alan/ALAN.md, project ALAN.md, ~/.alan/memory/MEMORY.md, and the network/git/ask-user tools (WebFetch, GitCommit, AskUserQuestion, Skill). Refine the tool set further with tools=[...] (full replacement) or disabled_tools=[...] (subtractive).

See docs/reference/python-api.md#programmatic-mode for details.

Features

Core

Feature What it does How to use
Async agentic loop Streaming responses, thinking blocks, concurrent tool use default
Built-in tools Bash, File I/O, Grep/Glob, WebFetch, AskUserQuestion, SkillTool, GitCommit default
Context compaction Summarizes conversation when context fills up auto, or /compact
Universal backend (auto) LiteLLM transport for OpenAI, OpenRouter, Gemini, Ollama, vLLM, and many other model providers default for non-Claude models
Native Anthropic backend Direct Anthropic SDK with cache_control, native thinking, native tool_use default for bare claude-* names; force with --backend anthropic-native
Local models vLLM / SGLang / Ollama, with text-based tool-call fallback for models without native tool use docs
Hooks Pre/post-tool shell hooks for guardrails or logging .alan/settings.json
Skills User-defined prompt + tool filter, discoverable at runtime /skill list, /skill create

Original to Alan Code

Feature What it does How to use
Browser GUI Chat + LLM Perspective panels on localhost --gui
LLM Perspective panel See Alan's normalized system prompt and conversation - debug prompts, tool calls, compaction --gui, then toggle panel
Cross-session memory Per-project + global memory the agent reads/writes between sessions. Modes: off (default), on (read at start, write on /save), intensive (read at start, write after every significant response) Set memory with /memory [on/intensive] or /save
Live cost tracking Estimated $ and token usage per API call default (docs)

Other

Feature What it does How to use
Session persistence Sessions saved to disk; resume any time --resume, --continue <id>
Permission modes Per-tool gating with project-scoped rules - safe (auto-read; ask write/exec), edit (auto-read/write; ask exec), yolo (auto-all) --permission-mode <mode>
Git integration AI-written commit messages, diffs /commit, /diff
Project + global instructions Auto-loaded into the system prompt ALAN.md, ~/.alan/ALAN.md
Python library API Sync query(), async query_async(), streaming query_events_async() — build loops, orchestrators, or custom UIs on top from alancode import AlanCodeAgent

Not (yet) implemented

Features of modern CLI coding agents that Alan Code does not ship with yet. Contributions welcome.

Feature Status Notes
Subagents / Task tool planned Spawn isolated sub-conversations with their own context for parallel exploration or delegation.
MCP (Model Context Protocol) planned Connect external tool servers (databases, APIs, IDEs) through the MCP standard.
Plan mode planned Force the agent to write and get approval for a plan before touching code.
Image input planned Paste or attach images to the conversation; Gives Alan tools for image inference.
Stop / PreCompact / PostCompact hooks partial Only Pre/PostToolUse hooks are implemented today.
WebSearch tool planned The WebFetch tool can fetch and summarize pages, but doesn't do active searching yet.

What's new

See CHANGELOG.md for the full history.

  • 2026-08-24 - Alan Code 1.3.12 - Added two optional controls for local reasoning models: no_verbalize_warning (remind a model that acts without narrating) and disable_thinking (ask a server-side chat template to stop emitting reasoning). Also a documentation and code cleanup pass, including a CLI that no longer lags settings on tool-call formats.
  • 2026-08-19 - Alan Code 1.3.11 - Added optional cross-turn reasoning re-injection (persist_thinking) and bounded recovery for reasoning-only/empty replies. The 1.3.2-1.3.11 series also hardened max-output recovery and added bash_block, kimi, kimi_k3, deepseek, minimax, and auto-detected text tool-call formats for local models.
  • 2026-08-10 - Alan Code 1.3.1 - Fixed multi-turn tool use with Ollama and other strict OpenAI-compatible servers by serializing tool-only assistant messages with empty-string content instead of JSON null. Programmatic mode no longer injects the automatic date/time reminder.
  • 2026-08-08 - Alan Code 1.3 - Hardened slow/offline local-model operation, tool calls embedded in reasoning streams, timeout and context-window controls, backend lifecycle cleanup, concurrent shared-state writes, and error reporting. Internal transport terminology is now consistently backend, with obsolete GUI, REPL, and session complexity removed.
  • 2026-07-25 - Alan Code 1.2 - Context budgets now adapt to the model and reserve legal output space on every call. Long sessions recover from aggregate tool-output growth, prompt-too-long responses, and failed summarization through context-scaled truncation, retrying compaction, and a deterministic last-resort fallback. Local-model context windows can be resolved from server metadata or a cached probe, and interrupted turns retain valid tool-call history.
  • 2026-05-11 - Backend / model UX redesign - --backend selects auto, anthropic-native, or scripted, and is inferred from --model when omitted. Bare Claude names use the native Anthropic SDK; everything else uses LiteLLM.
  • 2026-05-07 — Programmatic modeAlanCodeAgent(programmatic=True, ...) runs Alan as a library component for benchmark harnesses, parent agents, and unattended pipelines. Skips host-level state (~/.alan/ALAN.md, ~/.alan/memory/, project ALAN.md) and the network/git/ask-user tools. New tools= and disabled_tools= constructor params for fine-grained tool control.
  • 2026-04-28 — Prompt caching — Alan now places cache_control breakpoints on tool definitions, system prompt, and conversation history, for both backends. System prompt was optimized to avoid cache-killing dynamic content. Reduce the cost of Alan Code.

Further reading

Notes

  • This project is inspired by the Claude Code npm package, but is built from the ground up in python with our own architecture, and include additional features.
  • Tools can modify your machine: default edit mode auto-allows write tools and yolo auto-allows everything. Use safe for per-mutation approval, review the working tree, and run autonomous agents only in environments you trust.
  • The name "Alan" comes from Alan Turing, a father of computer science along Claude Shannon.

About

Open-source Python implementation of a Claude-Code-like agent (Gemini CLI, Codex, Copilot...). Usable in CLI, GUI, or as a python library to build upon. Works with any LiteLLM compatible API key, and several local model providers (vLLM, SGLang, Ollama).

Resources

Stars

25 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages