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 the model's exact perspective.
Works with LiteLLM-compatible model providers and local OpenAI-compatible servers.
Highlights
- Browser GUI - Chat plus LLM Perspective, the model's exact view of the conversation.
--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
A terminal-based chat interface. Type a prompt and press Enter; Alan will stream its reply, request permission before running tools, and persist the session so you can --resume later.
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 project settings. Edit .alan/settings.json to change |
/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 exact conversation and system prompt sent to the model.
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 the model's exact view of the 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 (ask each), edit (ask edits), yolo (no checks) |
--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-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 -
--backendselectsauto,anthropic-native, orscripted, and is inferred from--modelwhen omitted. Bare Claude names use the native Anthropic SDK; everything else uses LiteLLM. - 2026-05-07 — Programmatic mode —
AlanCodeAgent(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/, projectALAN.md) and the network/git/ask-user tools. Newtools=anddisabled_tools=constructor params for fine-grained tool control. - 2026-04-28 — Prompt caching — Alan now places
cache_controlbreakpoints 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
- Slash commands reference
- CLI flags reference
- Local models guide
- Cost & token tracking
- Examples — CLI agent, auto-fix loop, streaming
- LICENSE — Apache 2.0
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.
- We are not responsible for any damage caused by the agent in
yolopermission mode, although models are instructed to be cautious about destructive actions. - The name "Alan" comes from Alan Turing, a father of computer science along Claude Shannon.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file alancode-1.3.0.tar.gz.
File metadata
- Download URL: alancode-1.3.0.tar.gz
- Upload date:
- Size: 486.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c25eb67ba927d9d6a7a0e74b85c2b73bc437841aa74859b6c513666a435ce277
|
|
| MD5 |
f419631f8c6377bb3fd16bcfc0b7125e
|
|
| BLAKE2b-256 |
95c5669c708b3b20e56b7b02d2f512d4aaf6583a6969976b2035d90980c730d5
|
File details
Details for the file alancode-1.3.0-py3-none-any.whl.
File metadata
- Download URL: alancode-1.3.0-py3-none-any.whl
- Upload date:
- Size: 231.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89b91a9f2c04f19586289a476d011e9a582338e78b8d7be274bc024a6e2f9268
|
|
| MD5 |
19d217a0e39b47ce380a35d11e905629
|
|
| BLAKE2b-256 |
cbc3c60ac1fb09e8e009a0145fd0bbef3af3780299b0b2147ad359b54b8c368a
|