A small, terminal-first coding harness. Bring your own model, your own key, or your own MCP server.
Install · Run it · First session · Backends · Tools & commands · Cost & credentials · Going further · Configuration · Troubleshooting
A coding agent that lives in your terminal. Bring your own API key (OpenAI or OpenRouter) or point it at a local model (Ollama, LM Studio, MLX, llama.cpp) — same tools, same commands, same session log either way. It ships with the usual tool kit — read, edit, grep, shell, run tests — plus a few that aren't usual:
- Local or cloud, one TUI. Switch providers mid-session with
/backend <name>— the tools, commands, and session log don't change. - Per-turn cost on the status line.
$0.003 this turn · $0.41 sessionwhen pricing is known or reported by the provider. Local turns just show tokens. - OpenRouter Fusion, one command away.
/fusion onswitches to theopenrouter/fusionalias for deliberative work;/fusion toolattaches Fusion to a chosen OpenRouter coding model for hard reviews, architecture tradeoffs, and high-stakes debugging. - Transparent multi-model routing.
/route select <task>scores every configured coder candidate, estimates cost, applies explicit policy limits, and shows the chosen model, effort, confidence, alternatives, and reasons. - Routed plans.
/plan route <goal>asks a configured planner model to break work into a low/medium/high task graph, saves it to.albatross/plan.json, and/plan executeruns ready tasks through the configured coder tiers. - Real undo.
/undoreverts the last agent turn's file mutations, including files the agent created or files that weren't tracked when the turn started. - Session paths.
/path forkbranches the conversation and workspace so you can try two fixes, diff them, and/path pickthe winner — no worktree required. - Plan, then grade the work.
/planexpands a one-line intent into a spec;/iterateruns a generate→evaluate loop where a separate critic agent scores each pass against a rubric and feeds back until it clears the bar — the generator never grades itself. - Reset over compaction.
/resetwrites a handoff artifact and starts a clean session seeded with it — better coherence on long tasks than summarizing in place. - MCP-native. Drop servers into
mcpServersin your config; their tools show up asmcp__<server>__<tool>to the model on next launch. /authinstead of.env. Paste API keys once into a0600file under~/.config/albatross/. Env vars still win when set.- Approval gates you can live with. Every mutating call shows you the
diff first, with
allow once / allow session / always allowcaching.
Homebrew (macOS):
brew install morganlinton/tap/albatrossCargo (any platform with Rust 1.86+):
cargo install albatross-cli # installs the `albatross` binaryFrom source (Rust 1.86+):
git clone https://github.com/morganlinton/Albatross.git
cd Albatross
cargo build --release # binary at target/release/albatrossLaunch the interactive session:
albatrossFrom a source checkout without installing, use
cargo run --releaseinstead.
The first launch runs a short setup wizard (it writes agent.config.json —
backend, model, approval policy). Skip it with ALBATROSS_NO_WIZARD=true.
Every launch after that opens straight into a session.
Albatross talks to one backend at a time — pick the path that fits.
Fastest to start, frontier-model quality, nothing to install locally.
-
Set your key — Anthropic, OpenAI, or OpenRouter:
export ANTHROPIC_API_KEY=sk-ant-... # or export OPENAI_API_KEY=sk-... # or export OPENROUTER_API_KEY=sk-or-...
-
Launch, then select the provider in the first-run wizard (or any time with
/backend anthropic):albatross
Prefer not to put the key in your environment? Launch first, then run
/auth set anthropic inside the app and paste it once — it's stored in a 0600
file under ~/.config/albatross/. Cost per turn and per session shows
live on the status line.
The Anthropic backend uses the documented Claude API and your
ANTHROPIC_API_KEY. It does not offer Claude.ai OAuth or use a Pro, Max,
Team, or Enterprise subscription allowance; Anthropic's
Agent SDK guidance requires
prior approval before third-party products can offer subscription login or rate
limits.
If you want to use a ChatGPT/Codex subscription instead of OpenAI API billing, log in with OAuth inside the TUI:
/login openai-codex
/backend openai-codex
This is intentionally separate from /auth set openai: openai uses an
OPENAI_API_KEY and the public OpenAI API, while openai-codex stores a
refreshable ChatGPT OAuth token in auth.json and talks to the Codex Responses
backend.
Use a SuperGrok or X Premium+ subscription through browser or headless
device-code OAuth, with no XAI_API_KEY:
/login grok
/backend grok
Pick 1) Browser login (opens the system browser + local callback) or
2) Device-code login for SSH/headless. Tokens land in auth.json under
grok and refresh automatically. Default model is grok-4.5. /model exposes
the static agent-ready catalog (grok-4.5, grok-4.3, grok-build-0.1), same
as pi — it does not scrape xAI's full /models list.
Private, free, offline — runs entirely on your machine.
-
Install Ollama, start it, and pull a coding model:
brew install ollama brew services start ollama ollama pull qwen2.5-coder:7b
-
Launch — Ollama is the default backend, so there's nothing else to set:
albatross
LM Studio, MLX, and llama.cpp work the same way — see Backends for their ports and start commands.
Tip: switch backends mid-session with
/backend <name>, and run/doctorif a backend won't connect.
> what files are in src/?
Listed src/ (24 files)
src/ has 24 Rust files: main.rs is the entry point (input loop, banner,
warmup); agent.rs runs the chat-completions loop; backends.rs handles the
providers; tools/ contains the tool implementations…
1.2k in · 87 out · $0.0003 this turn · $0.0003 session
> add a function in src/util.rs that lowercases a string and trims it
Read src/util.rs
Edited src/util.rs
--- src/util.rs
+++ src/util.rs
@@ ...
+pub fn normalize(input: &str) -> String {
+ input.trim().to_lowercase()
+}
Apply? [y/n/a]: y
checkpoint saved (1 file) — /undo to revert
3.4k in · 412 out · $0.001 this turn · $0.0013 session
A handful of moves worth knowing right away:
/mode explore | edit | ship | reviewtoggles tool + approval + step-budget presets./undoreverts the last turn's file mutations./path forkbranches the session to try an alternate approach;/path switch,/path diff, and/path pickcompare and merge paths./shipchecksummarizes git state;/handoffdrafts a commit message, changelog bullets, and a release post from local context./shipturns that into a last-mile preflight, local commit, and push path: readiness verdict, blockers, commit-message draft, guardedgit commit, and guardedgit push;/ship propens a draft pull request through GitHub CLI when available, and/ship statussummarizes open PR checks/review state./scorecardshows global quality PRs shipped;/ship prcloses a PR unit with readiness/test evidence./scorecard close <label>scores manual closes from shipcheck (not the separate/play scorefixture report)./plan <intent>drafts a spec;/iterate <goal>runs a generate→evaluate loop where a separate critic grades each pass against a rubric./play fix-failing-testruns a bundled demo in an isolated sandbox so you can try a real agent loop without touching your repo.Ctrl-Jfor newline;Entersubmits.albatross --continueresumes the most recent session in the cwd.
| Backend | Default URL | Notes |
|---|---|---|
ollama |
http://localhost:11434/v1 |
Easiest setup; mature tool-call templates |
lm-studio |
http://localhost:1234/v1 |
GUI model browser; explicit load / unload |
mlx |
http://localhost:8080/v1 |
Fastest inference on Apple Silicon (via mlx_lm.server) |
llamacpp |
http://localhost:8080/v1 |
Direct GGUF serving (via llama-server) |
openrouter |
https://openrouter.ai/api/v1 |
Cloud A/B with /compare; access to frontier models and Fusion |
openai |
https://api.openai.com/v1 |
Direct provider access with your own key |
anthropic |
https://api.anthropic.com/v1 |
Native Messages API with your own Anthropic API key |
openai-codex |
https://chatgpt.com/backend-api/codex/responses |
ChatGPT/Codex subscription OAuth via /login openai-codex |
grok |
https://cli-chat-proxy.grok.com/v1 |
SuperGrok / X Premium+ OAuth via /login grok (browser or device-code) |
Switch at runtime with /backend <name>. Endpoint overrides:
OLLAMA_BASE_URL, LM_STUDIO_BASE_URL, MLX_BASE_URL, LLAMACPP_BASE_URL,
OPENAI_BASE_URL, ANTHROPIC_BASE_URL, OPENAI_CODEX_BASE_URL. The Grok OAuth proxy is fixed to
xAI's first-party host so subscription tokens cannot be redirected elsewhere.
API backends require an API key (set via /auth or
env var); openai-codex requires /login openai-codex; grok requires
/login grok.
Each backend has one sensible default; local backends default to a 7B coder
that runs on modest hardware. Override any time with /model, AGENT_MODEL,
or modelOverride in your config. Append --default to /model or /backend
to write the choice into agent.config.json (surgical merge: only backend and
modelOverride). /model --default pins the active model; /backend --default
pins the active backend and clears modelOverride so the next launch uses that
backend's built-in default model. In the interactive pickers you can also append
answer the y/N save prompt after choosing; each entry is tagged (selected)
for the live session choice and (default) for what's persisted on disk.
| Backend | Default model |
|---|---|
ollama |
qwen2.5-coder:7b |
lm-studio |
qwen2.5-coder-7b-instruct |
mlx |
mlx-community/Qwen2.5-Coder-7B-Instruct-4bit |
llamacpp |
gpt-3.5-turbo |
openrouter |
qwen/qwen-2.5-coder-32b-instruct |
openai |
gpt-4o-mini |
anthropic |
claude-sonnet-5 |
openai-codex |
gpt-5.5 |
grok |
grok-4.5 |
All model-tuning lives under /doctor:
/doctor recommend rank installed + default + cached models for your hardware
/doctor autotune apply switch to the top-scoring cached local model
/doctor --deep probe streaming, usage chunks, tool calls, fallbacks
/doctor bench measure warmup, first-token, and total latency
/doctor models show cached per-model capability + benchmark records
| Class | Tools |
|---|---|
| Read | file_read, grep, list_dir, glob, repo_search |
| Mutate (approval-gated) | file_write, file_edit, apply_patch, batch_edit, shell |
| Workflow | run_tests, ship_status, web_fetch, update_plan, task, critique |
| MCP | anything an MCP server exposes, surfaced as mcp__<server>__<tool> |
The default toolSelection: "auto" keeps the full working pool available for
any real request (so "build me a site" writes files instead of dumping code
into the chat) and sends no tools only for plain greetings. fixed always
sends the pool. Set the pool with /tools file_read,grep,list_dir, or
persistently in agent.config.json.
| Policy | Behavior |
|---|---|
always (default) |
Every mutating call prompts you, with a diff preview |
dangerous-only |
File mutations and shell commands not clearly recognized as non-destructive prompt. Shell also strips hydrated API-key env vars from the child process. |
never |
No prompts — use only when you trust the model |
At each prompt: [y]es, [n]o, [a]lways for this tool, or [s]ession-allow this exact call. The session cache resets on /new.
Session and config
/help list commands
/new start a fresh conversation
/setup rerun the setup wizard
/config show resolved configuration
/session [title <…>] show / rename the current session
/sessions list saved sessions
/resume latest|<id> resume a saved session
/export current|<id> export transcript to markdown or json
/undo revert the last agent turn's file mutations
/path fork, switch, diff, pick, or drop parallel session paths
/paths list saved session paths
Operator modes and workflow
/mode explore|edit|ship|review switch operator preset
/plan <intent> expand a short intent into a spec (.albatross/spec.md)
/plan route <intent> create a low/medium/high routed execution plan
/plan status show .albatross/plan.json task status
/plan execute [--yolo] [--max N] run ready routed-plan tasks
/plan validate check the spec's Done Criteria against the working diff
/shipcheck summarize git + test readiness
/ship [--tests] preview last-mile ship readiness and commit message
/ship commit --all|--staged-only guarded local git commit with ship record
/ship push guarded git push, setting upstream when needed
/ship pr [--base main] create a draft GitHub PR via gh, or print the command
/ship status summarize open PR checks and review state
/scorecard show global quality PRs shipped
/scorecard current show tracked tokens on the current repo/branch
/scorecard prs [limit] list recent closed PRs (numbered)
/scorecard pr <n> drill into PR quality, sessions, and trace audit
/scorecard verify <n>|--all append GitHub PR checks/review/merge verification
/scorecard close <label> [--url <url>] [--tests] close branch with shipcheck quality score
/scorecard doctor inspect the local scorecard ledger for malformed JSONL
/scorecard export [path] copy the raw scorecard ledger before repair or sharing
/fable show Claude Fable weekly usage and cap headroom
/handoff draft commit, changelog, release copy
/test discover|run|smart discover or run tests
/fix fix-until-green loop
/iterate <goal> generate→evaluate→improve loop (rubric-scored)
/auto <goal> | --spec autonomous overnight run (iterate + auto-reset, budget/deadline)
/batch / /refactor coordinated multi-file edits
/play fix-failing-test bundled demo in an isolated sandbox
Backend, model, tools
/backend <name> [--default] switch backend; --default writes agent.config.json
/model [id] [--default] list / pick a model; --default pins backend+model
/tools auto|fixed|<…> show or set the active tool pool
/auth manage API keys and OAuth credentials
/login [provider] sign in (defaults to active OAuth backend)
/logout [provider] clear stored OAuth login (defaults to active OAuth backend)
/login openai-codex sign in with ChatGPT/Codex subscription OAuth
/logout openai-codex clear the stored ChatGPT/Codex login
/login grok sign in with SuperGrok / X Premium+ OAuth
/logout grok clear the stored Grok login
/image <path> attach an image to the next user turn
/reasoning on|off toggle the streaming reasoning panel
/verbose on|off show every tool call with its full args + result
/trace on|off show nested subagent/critic tool calls (indented)
/hooks list, trust, enable, or disable configured hooks
/mcp list or trust project MCP servers
/compare [model] re-send the last prompt against OpenRouter for A/B
/fusion on|tool|off use OpenRouter Fusion alias or attach Fusion to a model
/route select|apply select or apply a configured multi-model stack route
/route explain explain the latest (or named) route and every linked call
/route history [N] show recent durable route decisions
/route spend aggregate routed spend by role and resolved model
/route report summarize routing decisions, confidence, outcomes, and cost
/route simulate <task> preview selection without switching the active model
/route why-not [model] show candidate eligibility, cost estimate, and exclusions
/route label pass|fail record an outcome for the latest route
Memory, capabilities, context
/index build / refresh project memory
/map [query] print a repo map or focused hits
/remember <text> save a durable project note
/forget <id|all> remove notes
/context show prompt budget, model limit, auto-guard status
/compact summarize older turns (auto-runs at threshold)
/reset write a continuation handoff and start a fresh session
/doctor [--deep] probe backend, tools, streaming, capabilities
/doctor models show cached per-model capability + benchmark records
/doctor autotune pick the best cached local model (add `apply` to switch)
/doctor recommend rank models for your hardware
/doctor bench measure warmup + first-token + total latency
/checkpoints toggle per-turn snapshots
Run /help in the harness for the full list with descriptions.
API-key cloud backends authenticate with API keys. Paste them once and
Albatross stores them at ~/.config/albatross/auth.json (mode 0600).
Environment variables always win at lookup time, so CI and scripted users see
no change in behavior.
/auth show what's configured (keys are masked)
/auth set openai paste your OpenAI key, save to file + this session
/auth set anthropic paste your Anthropic API key
/auth set openrouter paste your OpenRouter key
/auth clear openai remove from the file (env stays for this session)
/login browser/device-code login for the active OAuth backend
/logout clear stored login for the active OAuth backend
/login openai-codex browser/device-code login with ChatGPT/Codex
/logout openai-codex remove the stored OAuth credential
/login grok browser/device-code login with SuperGrok / X Premium+
/logout grok remove the stored Grok OAuth credential
Bare /login and /logout use the active OAuth backend (grok or
openai-codex). On a non-OAuth backend (or via /auth login with no
provider), pass the provider explicitly.
openai-codex is not an OPENAI_API_KEY replacement. It uses browser/device
OAuth, stores {access, refresh, expires, accountId} in the same auth.json,
refreshes the access token before use, and sends model traffic to the Codex
Responses backend.
grok is not an XAI_API_KEY replacement either. It uses the same OAuth
shape as the official Grok CLI (browser PKCE on localhost, or RFC 8628
device-code for SSH/headless), stores tokens under the grok key in
auth.json, refreshes automatically, and calls xAI's Grok CLI inference proxy
with its required OAuth headers. If ~/.grok/auth.json already has a Grok CLI
login, /login grok can import and refresh those credentials.
When you're on a cloud backend with known pricing or provider-reported usage cost, every turn prints its own cost plus the running session total:
2.1k in · 845 out · $0.013 this turn · $0.094 session
Switch to Ollama mid-session and the line shows $0.00 this turn but keeps
the running total honest. OpenRouter returns usage.cost for many requests,
including dynamic routers like Fusion; Albatross uses that reported value
when present. If a cloud model does not expose cost, the turn shows $? and
prefixes the session total with ≥ to signal it is a lower bound, not a
fiction.
Anthropic receipts preserve the requested and provider-resolved Claude model, requested and effective effort, regular input, cache reads, cache writes, output tokens, and catalog-estimated cost. Cache reads use Anthropic's 0.1x input rate and five-minute cache writes use 1.25x. Claude Sonnet 5's published introductory price is applied through August 31, 2026, then the catalog automatically uses the standard rate.
The /model picker first accepts an optional text filter, then shows the same
data in an arrow-key menu. It tags the live session choice (selected) and the
value persisted in agent.config.json (default):
▸ 1) gpt-4o-mini (selected) (default) 128k ctx · $0.15/$0.60 per Mtoken
2) gpt-4o 128k ctx · $2.50/$10.00 per Mtoken
3) o1-mini 128k ctx · $3.00/$12.00 per Mtoken
4) type a model id…
↑/↓ move · Enter select · 1-9 jump · q cancel
After an interactive /model or /backend choice, answer the y/N prompt to
save it as the project default. Direct forms such as /model gpt-4o --default
and /backend ollama --default still switch and persist in one command.
/fable rolls up the local turn ledger into a weekly Claude Fable tracker:
Fable tokens, Fable turns, Fable's share of tracked Claude-family usage, and
remaining allowance when you configure a weekly plan budget. Fable turns also
append a compact weekly tracker to the status footer.
By default, Fable models are detected by model IDs containing fable, and the
cap share is 0.5 (50%). Add this to agent.config.json when you know the
weekly Claude-plan token budget you want Albatross to monitor:
{
"fable": {
"weeklyTokenBudget": 200000,
"capShare": 0.5,
"weekStartsOn": "monday"
}
}The tracker only sees Albatross turns recorded in the local ledger. It cannot see usage from the Claude app or other clients.
/scorecard tracks whether Albatross-assisted PRs are shipping with good
local quality evidence at close time — not post-merge CI on GitHub. Each
successful interactive turn still records input + output tokens under the current
repo and branch, but tokens are context rather than the score. /ship pr closes
that branch as a PR unit automatically and attaches a quality snapshot from local
ship readiness: blockers, warnings, whether tests passed, and whether the GitHub
PR command succeeded.
If you open a PR outside the built-in flow, run /scorecard close <label> to
close it with the same shipcheck-based score. Add --url <github-pr-url> when
you have a PR link and --tests to run tests before scoring.
The default view shows quality PR count, quality rate, average quality score,
clean ships, PRs needing follow-up, tokens per quality PR, the open branch
total, and a GitHub-style daily grid. /scorecard prs lists numbered recent
closes with session and ship-record hints; /scorecard pr <n> shows the full
audit captured at close time — quality rubric, per-session turn-trace summaries
(turns, steps, tool calls, timing), paths to session event logs, and explicit
reasons when a scored PR did not count as quality-shipped.
For PRs with GitHub URLs, /scorecard verify <n> refreshes the remote outcome
through gh pr view: PR state, review decision, mergeability, and check-rollup
status. /scorecard verify --all appends verification events for all recent
verifiable PRs. This does not rewrite the local close-time score; it adds later
remote evidence that /scorecard pr <n> renders next to the original audit.
After enough turns on a feature branch, the turn footer nudges you to close via
/ship pr. Audit snapshots come from local event logs at close time; export raw
traces with /export <session> events.
A PR counts as quality-shipped when its local score meets scorecard.qualityThreshold
(default 80), tests passed, readiness was not blocked, and either the PR
creation command succeeded or a PR URL was captured with --url. Configure via
scorecard in agent.config.json or disable with scorecard.enabled: false.
Data is stored locally under the Albatross data directory; /scorecard path
prints the exact JSONL file. Use /scorecard doctor if the ledger looks wrong;
malformed JSONL lines are skipped rather than allowed to break the scorecard, and
/scorecard export [path] copies the raw ledger before manual repair. /scorecard reset --yes now saves a timestamped backup before removing the active store.
Note: /play score shows playground fixture results — unrelated to this
global quality PR scorecard.
/plan <intent> expands a one- or two-sentence intent into an ambitious spec
— goal, user outcomes, scope, done criteria, open questions — and writes it to
.albatross/spec.md. It deliberately stays at the level of what and
why, not implementation, so an early spec doesn't lock in the wrong details.
/plan show prints the saved spec; --export <path> writes elsewhere.
/plan route <intent> is the complexity-aware execution-layer path. It uses
modelSystem.planner when configured (falling back to selector, high/medium/low
orchestrator, then the active model), asks for a JSON task graph, assigns each
node to modelSystem.coders.low|medium|high, and writes
.albatross/plan.json. Use --planner high, --planner selector, or
--planner backend:model-id to override the planner for one route:
/plan route --planner high add OAuth login with refresh and tests
/plan status
/plan execute --max 2
/plan execute runs ready tasks sequentially, switching the active backend/model
per task and saving status after each node. --yolo auto-approves tools for
unattended local execution.
To mix subscription and API usage, put subscription-backed models on tiers where
Albatross has a real login backend, such as openai-codex after
/login openai-codex or grok after /login grok, and keep usage-billed
automation on openai, openrouter, or local backends. For Claude/Fable subscriptions, track usage
with /fable; direct unattended execution should stay on an API-compatible
backend unless you add an explicit Claude CLI adapter.
/plan validate closes the loop: it reads the spec's Done Criteria and
checks each one against the current working-tree diff (the same done-check
/auto runs each round), printing a met/unmet checklist so you can ask "am I
actually done?" by hand. Like /iterate, it sends the diff to the model, so it
runs on a local backend unless you set rubric.allowCloud.
/iterate <goal> runs a generate→evaluate→improve loop. After each attempt a
separate, read-only critic agent (critique) scores the work 0–10 against
a weighted rubric and hands back actionable feedback; the loop repeats —
refining or pivoting — until the score clears the threshold or it runs out of
rounds (--max N, default 6, capped at 15; --threshold X). The harness, not
the model, computes the weighted total and pass/fail, so a critic that
over-rates can't wave weak work through.
The rubric defaults to quality / originality / craft / functionality and
penalizes generic "AI slop"; override it with a .albatross/rubric.md
using ## Name (weight: N) sections. Set iterate.evaluatorModel to grade
with a different model than the generator — the cleanest version of the
generator/evaluator split. Turn on rubric.liveVerify and the critic runs your
test suite (via a fixed-surface verify tool — no arbitrary shell) before
scoring functionality. The critique tool is also available on its own for a
one-off, independent grade.
Workspace context is never sent to a cloud backend for grading unless you set
rubric.allowCloud.
On a long task, /reset writes a structured handoff artifact — done, in
progress, key decisions, next steps, key files — to
.albatross/continue.md, then starts a fresh session seeded with only
that artifact. Unlike /compact, which summarizes in place, this is a clean
context window carrying just what's needed to continue, which holds coherence
better over long runs. /reset --dry-run writes the artifact without clearing;
cloud backends require --cloud, since drafting the note sends the
conversation to the model.
/auto is the unattended version of the loop above: it runs /iterate's
generate→evaluate round repeatedly and, when the context window fills, fires
/reset automatically — drafting a handoff and continuing in a fresh session
— so a run can go for hours without blowing its budget. The goal and the latest
feedback carry across each reset.
/auto "add retry logic to web_fetch" --budget 2.00 --deadline 6h
/auto --spec --max 20 --yolo # drive the spec.md from /plan to done
Give it an inline goal, or --spec to read the goal and Done Criteria from
.albatross/spec.md (written by /plan). With criteria present, each round
also checks them against the working-tree diff, and "done" means the rubric
threshold and every criterion is met — a lightweight spec-validator folded in.
| Flag | Meaning |
|---|---|
--spec |
Read goal + Done Criteria from .albatross/spec.md |
--max N |
Round ceiling (default 12, hard cap 40) |
--threshold X |
Per-round rubric pass bar (default rubric.passThreshold) |
--budget $ |
Stop after this much generator spend |
--deadline 6h |
Wall-clock cap (h/m/s) |
--reset-at 0.75 |
Context-fill ratio that triggers an auto-reset (0.50–0.95) |
--yolo |
Auto-approve mutations for the whole run |
--cloud |
Allow sending workspace context to a cloud backend |
The run is always finitely bounded (a --max ceiling applies even with no
other flag) and stops early on a stall — no score gain and no diff change for
three rounds. However it ends — goal met, budget/deadline/rounds exhausted,
stall, error, or Ctrl-C — it leaves a morning report at
.albatross/auto-report.md with the verdict, per-round scores, the Done
Criteria checklist, cost, elapsed time, and reset count. Same guards as
/iterate: it runs on a local backend unless you pass --cloud, needs
rubric.enabled, and won't run inside a /play session. Defaults live in the
auto config block. /undo reaches back only to the last reset boundary, so
keep checkpoints.enabled on for an unattended run.
Drop a markdown file at .albatross/prompt.md in your repo and Albatross
prepends it to the system prompt every turn. Use it for project
conventions ("snake_case everywhere", "ship via make release", "never
edit vendor/"). Auto-truncated at 8 KB.
Add an mcpServers block to agent.config.json:
{
"mcpServers": {
"fs": {
"command": "/usr/local/bin/some-mcp-server",
"args": ["--root", "/tmp"],
"env": { "TOKEN": "abc" }
}
}
}Because this file is project-local and MCP servers are executable programs, Albatross does not spawn a new or changed server automatically. Review the command and explicit environment first, then trust its current configuration:
/mcp list
/mcp trust fs
Trust is stored per canonical workspace and configuration hash under
~/.config/albatross/; editing the command, arguments, or environment revokes
it. Trusted servers start automatically on later launches. Their processes
receive only a small system environment allowlist plus the explicit env block,
and their tools remain approval-gated with names like mcp__fs__read_file.
JSON-RPC over stdio; no extra dependencies.
Hooks let trusted local commands observe or influence harness events. They are useful for terminal integrations, status tracking, policy checks, and progress bridges for launchers, terminal orchestrators, and agent status dashboards.
Project hooks live in agent.config.json:
{
"hooks": {
"PlanUpdated": [
{
"hooks": [
{ "type": "command", "command": "$HOME/bin/agent-plan-hook" }
]
}
],
"PreToolUse": [
{
"matcher": "shell|file_write",
"hooks": [
{
"type": "command",
"command": "$HOME/bin/check-tool-policy",
"timeoutSec": 5
}
]
}
]
}
}Command hooks receive a JSON payload on stdin and may print JSON on stdout:
{ "decision": "block", "reason": "shell command not allowed" }Supported decisions are allow, deny, block, and stop. Hooks can also
return additionalContext, updatedInput, or feedback. For PreToolUse,
updatedInput is honored only with {"decision":"allow"} and is discarded if
any hook blocks, denies, or stops. Exit code 2 maps to a blocking decision using
stderr as the reason. For PreToolUse and PermissionRequest, hook runner
failures such as timeouts, spawn/pipe failures, and shell infrastructure exits
126/127 fail closed and block gated execution; ordinary nonzero exits still
warn unless the hook explicitly blocks. A pre-execution stop prevents other
pending tool calls in the same assistant step from running; a PostToolUse stop
applies after that tool has already run and stops the next model step.
Hook events include SessionStart, UserPromptSubmit, PreToolUse,
PermissionRequest, PostToolUse, PreCompact, PostCompact,
PlanUpdated, SubagentStart, SubagentStop, Stop, and SessionEnd.
Payloads include common fields such as hook_event_name, session_id,
turn_id, cwd, workspace_root, transcript_path, events_path, backend,
model, approval_policy, and source, plus event-specific fields like
tool_name, tool_input, tool_response, and progress. source is
interactive, one-shot, auto, fix, iterate, or play depending on
what started the turn.
Hook payload stdin is raw and unredacted so trusted hooks can make decisions on
the actual prompt/tool data; do not log it unless your hook performs its own
redaction. Hook child processes start with a cleared environment and receive the
minimal inherited shell environment (PATH, HOME or Windows home/system vars),
explicit parent process variables listed in envVars, literal values from
env, plus ALBATROSS_HOOK_EVENT, ALBATROSS_SESSION_ID,
ALBATROSS_TURN_ID, ALBATROSS_TRANSCRIPT_PATH, and
ALBATROSS_EVENTS_PATH. Parent LLM provider credentials are not passed
through unless a hook explicitly names them in envVars.
Matchers are Codex-style: absent, empty, or * matches all; exact |
alternation matches tool/event names; other matchers are treated as full-match
regexes. Use .* when partial regex matching is intended. Invalid matcher
regexes are shown by /hooks and skipped. UserPromptSubmit, PlanUpdated,
Stop, and SessionEnd ignore matchers. The default hook timeout is 600
seconds for Codex parity; status/progress hooks should set a shorter
timeoutSec if a slow hook would make the turn feel stuck.
The task tool uses SubagentStart and SubagentStop; it does not also run
generic PostToolUse hooks. Stop hook additionalContext and feedback are
bounded, redacted, and added as context for the next turn.
PermissionRequest runs only when the harness would otherwise ask for approval.
Use PreToolUse for blanket policy gates that must also cover auto-approved or
read-only tools.
Project hooks are skipped until their current hash is trusted in user-owned
state. Project-controlled hooks.state entries are ignored for execution
safety. Manage trust with:
/hooks list hooks and trust state
/hooks trust <key> trust one hook hash in user state
/hooks trust-all trust all new/modified hooks
/hooks disable <key> disable one hook
/hooks enable <key> enable one hook
Trust is stored in $XDG_CONFIG_HOME/albatross/hooks-state.json, falling
back to ~/.config/albatross/hooks-state.json. Trusted hook successes are
quiet in the normal TUI; warnings, blocks, denies, stops, and feedback are
shown. The event log records hook start/end/decision records with redacted,
bounded stdout/stderr previews.
Launchers can inject ephemeral managed launch hooks without changing user config:
ALBATROSS_MANAGED_HOOKS_FILE="$TMPDIR/agent-status-hooks.json" albatrossALBATROSS_MANAGED_HOOKS_JSON accepts the same document inline for small
launchers. Managed launch hooks are not cryptographic signatures or Codex
enterprise-managed hooks; they are process-local launcher-trusted commands for
wrappers that own the process invocation. Albatross intentionally reads
these only from the real process environment, not repo .env files. This lets
integrations observe status without mutating the user's config.
Use envVars when a managed hook command needs launcher state:
{
"source": "terminal-orchestrator",
"hooks": {
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "zentty ipc agent-event",
"envVars": [
"ZENTTY_INSTANCE_SOCKET",
"ZENTTY_WORKLANE_ID",
"ZENTTY_PANE_ID",
"ZENTTY_PANE_TOKEN"
]
}
]
}
]
}
}/image <path> attaches an image to your next prompt. Albatross encodes
it as a data:image/...;base64,... URL and sends it as a multi-part user
message. The catalog tracks which models accept images; you get a warning
if your current model isn't vision-capable.
web_fetch (off by default, approval-gated) lets the agent pull a URL,
strip HTML to text, and read the result. Useful for docs and RFCs the model
needs to consult mid-task. Enable per session with
/tools auto file_read,grep,list_dir,web_fetch or persistently in your
config.
/index builds a safe local repo map at .sessions/project-memory/. It
stores metadata only — paths, language, symbols, headings, capped keyword
terms — never file bodies. It honors .gitignore and skips .git,
.sessions, target, node_modules, binaries, oversized files, and
common secret/env files. /map prints a compact view; /remember <text>
saves a durable project note.
/compare re-sends your last prompt against any OpenRouter model so you can
A/B a local response against a frontier one without leaving the session.
Requires OPENROUTER_API_KEY.
Fusion is useful when a normal coding model is not enough: design reviews, multi-file architecture tradeoffs, incident debugging, dependency choices, or questions where a bad answer is more expensive than a few extra completions.
/fusion on
Switches the active backend to OpenRouter and the model to openrouter/fusion.
Use it for deliberative turns, then run /fusion off to return to the normal
OpenRouter default model.
/fusion tool anthropic/claude-sonnet-4.5
/fusion tool anthropic/claude-sonnet-4.5 panel=~openai/gpt-latest,deepseek/deepseek-v3.2 judge=~anthropic/claude-opus-latest max-tools=4
Tool mode keeps a chosen OpenRouter coding model as the outer agent and adds OpenRouter's Fusion plugin so the model can invoke multi-model deliberation when the turn warrants it. The same Albatross tools, approvals, session log, token counts, and reported OpenRouter costs stay visible.
/route lets you describe a model stack that blends local and frontier models:
separate orchestrators for low/medium/high planning, coders for
low/medium/high implementation, play and production review models, a security
review model, a compaction model that summarizes the transcript when context is
compacted, and one selector model that chooses the route for a task. /route status shows the configured stack (including the compaction model) and /route template prints the JSON shape to paste into agent.config.json.
/route template
/route status
/route select add OAuth login with token refresh and tests
/route simulate redesign the settings page
/route why-not gpt-4o
/route apply coder high
/route apply review production
/route apply security
/route explain
/route history 20
/route spend
/route report
/route label pass tests and review passed
/route select sends the task plus the configured stack to
modelSystem.selector, expects a JSON decision, and prints a candidate
scoreboard before switching the live session to the chosen coding model. Each
candidate row exposes eligibility, estimated turn cost, selector score,
warnings, and policy exclusions. The selected route also shows selector
confidence, rationale, and any deterministic policy fallback. /route simulate
does the same analysis without changing the active model, while /route why-not [model-or-tier] inspects policy eligibility without calling the selector.
The selector can return coderEffort, reviewEffort, and securityEffort
(none, minimal, low, medium, high, xhigh, or max). The chosen coder
effort becomes the active session effort, appears in /session and the turn
footer, and is sent to compatible providers. The receipt distinguishes the
requested effort from the effective provider value; unsupported effort is
reported instead of silently appearing to have been applied.
Routing policy lives at modelSystem.policy:
{
"objective": "balanced",
"maxTurnUsd": 0.10,
"unknownCost": "warn",
"localOnly": false,
"minConfidence": 70,
"requireEffortSupport": false,
"estimatedOutputTokens": 2000
}objective controls deterministic fallback behavior (quality, cost, or
balanced). maxTurnUsd, localOnly, and unknownCost can exclude candidates;
localOnly also requires the selector itself to use a local backend so route
analysis does not send the task to a hosted model. minConfidence invokes the
objective fallback when selector confidence is too low. Cost estimates use the
local catalog and the configured input/output token assumptions. Models without
catalog pricing display $? and follow unknownCost; estimates are a routing
guardrail, not a provider quote.
Every selection and routed model call is appended to
.albatross/routes.jsonl. Receipts include the candidate-stack snapshot,
policy hash, per-candidate scores and exclusions, selector confidence and
rationale, requested backend/model, provider-resolved model and provider when
reported, requested versus effective effort, tokens, cache usage, latency,
cost, and whether cost came from the provider, the local catalog, or is unknown.
The ledger is project-local and gitignored because task previews may be
sensitive.
/route explain [route-id] renders one complete receipt, /route history [N]
shows recent decisions, and /route spend aggregates all recorded calls by
role and resolved model. /route label pass|fail [note] records an outcome for
the latest decision, and successful or failed automatic test runs add an outcome
when a route is active. /route report summarizes route volume, complexity,
confidence, outcomes, resolved models, and cost. Selector and routed-planner
costs are included in the live session total instead of being displayed as
disconnected side costs.
For whole-goal decomposition, /plan route <goal> uses modelSystem.planner
or a planner override to create .albatross/plan.json; /plan execute
then runs each ready node with the configured low/medium/high coder model.
Context compaction (summarizing the conversation when the prompt budget fills,
both automatically and via /compact) uses the main conversation model by
default. Set modelSystem.compaction to a ModelRef object (a { "backend": "...", "model": "..." } pair, the same shape as planner/selector) to
summarize with a different model, for example a cheaper or longer-context one:
{
"modelSystem": {
"compaction": { "backend": "openrouter", "model": "anthropic/claude-3.5-haiku" }
}
}Prompt-budget sizing still tracks the main model (that is the context being fit); only the summary call uses the compaction model. If the compaction backend is not ready (for example a missing API key), compaction falls back to the main model and prints a warning.
Resolution order (later overrides earlier):
- Built-in defaults
agent.config.jsonin the working directory.env, then.env.local- Process environment variables
- Slash command overrides at runtime
BACKEND=ollama # ollama|lm-studio|mlx|llamacpp|openrouter|openai|anthropic|openai-codex|grok
AGENT_MODEL=qwen2.5-coder:14b # overrides the backend default model
OPENAI_API_KEY=sk-... # required for openai
ANTHROPIC_API_KEY=sk-ant-... # required for anthropic
OPENROUTER_API_KEY=sk-or-... # required for openrouter / /compare
OPENAI_BASE_URL=https://api.openai.com/v1 # point at a compatible proxy if needed
ANTHROPIC_BASE_URL=https://api.anthropic.com/v1 # optional Anthropic-compatible endpoint
OPENAI_CODEX_BASE_URL=https://chatgpt.com/backend-api # override Codex backend base if needed
APPROVAL_POLICY=always # always | dangerous-only | never
AGENT_TOOLS=file_read,grep,list_dir,file_edit,file_write,shell,update_plan,task
AGENT_TOOL_SELECTION=auto # auto | fixed
WARMUP=true # pre-warm prompt cache at startup
ALBATROSS_NO_WIZARD=false # skip first-run setup
ALBATROSS_NO_UPDATE_CHECK=false # skip the GitHub release check
ALBATROSS_MANAGED_HOOKS_JSON='{"source":"terminal-orchestrator","hooks":{...}}'
ALBATROSS_MANAGED_HOOKS_FILE=/tmp/agent-status-hooks.jsonFull list with comments in .env.example.
For project-level defaults, run /setup, use /backend --default /
/model --default, or drop a JSON file at the repo root. Common shape:
{
"backend": "ollama",
"modelOverride": "qwen2.5-coder:14b",
"approvalPolicy": "dangerous-only",
"tools": ["file_read", "grep", "list_dir", "file_edit", "file_write", "shell", "update_plan", "task"],
"toolSelection": "auto",
"maxSteps": 20,
"display": {
"toolDisplay": "grouped",
"eventLog": { "enabled": true }
},
"scorecard": {
"enabled": true,
"qualityThreshold": 80,
"nudgeMinTurns": 3
},
"fable": {
"enabled": true,
"weeklyTokenBudget": null,
"capShare": 0.5,
"weekStartsOn": "monday"
},
"workspaceRoot": "/path/to/project",
"outsideWorkspace": "prompt",
"context": {
"maxMessages": 40,
"modelContextTokens": 8192,
"autoCompact": true,
"compactThreshold": 0.85,
"reserveRatio": 0.25
},
"projectMemory": {
"enabled": true,
"autoInject": true,
"allowCloudContext": false
},
"checkpoints": { "enabled": true, "maxTurns": 10 },
"rubric": { "enabled": true, "passThreshold": 7.0, "allowCloud": false, "liveVerify": false },
"iterate": { "maxIters": 6, "evaluatorModel": null },
"auto": { "maxRounds": 12, "budgetUsd": null, "resetRatio": 0.75, "deadline": null },
"paths": {
"enabled": true,
"maxPaths": 5,
"maxSnapshotBytes": 52428800,
"maxFileBytes": 1048576
},
"openrouter": {
"fusion": {
"enabled": false,
"analysisModels": [],
"judgeModel": null,
"maxToolCalls": null
}
},
"modelSystem": {
"enabled": true,
"policy": {
"objective": "balanced",
"maxTurnUsd": null,
"unknownCost": "warn",
"localOnly": false,
"minConfidence": 70,
"requireEffortSupport": false,
"estimatedOutputTokens": 2000
},
"planner": {
"backend": "openrouter",
"model": "anthropic/claude-opus-4.8",
"effort": "high",
"thinkingDepth": "deep"
},
"selector": {
"backend": "openrouter",
"model": "openrouter/fusion",
"effort": "high",
"thinkingDepth": "deep"
},
"orchestrators": {
"low": { "backend": "ollama", "model": "qwen2.5-coder:7b" },
"medium": { "backend": "openrouter", "model": "qwen/qwen-2.5-coder-32b-instruct" },
"high": { "backend": "openrouter", "model": "anthropic/claude-sonnet-4.5" }
},
"coders": {
"low": { "backend": "ollama", "model": "qwen2.5-coder:7b" },
"medium": {
"backend": "openrouter",
"model": "qwen/qwen-2.5-coder-32b-instruct",
"effort": "medium"
},
"high": {
"backend": "openrouter",
"model": "anthropic/claude-sonnet-4.5",
"effort": "high"
}
},
"reviewers": {
"play": { "backend": "ollama", "model": "qwen2.5-coder:7b" },
"production": { "backend": "openrouter", "model": "openrouter/fusion" }
},
"securityReviewer": { "backend": "openrouter", "model": "openrouter/fusion" }
},
"mcpServers": {
"fs": { "command": "/usr/local/bin/some-mcp-server", "args": [] }
},
"hooks": {
"PlanUpdated": [
{ "hooks": [{ "type": "command", "command": "$HOME/bin/plan-hook" }] }
]
}
}Anything in the config can be overridden by env or slash commands at runtime.
albatross --continueresumes the most recent session in cwd without picking from a list.albatross completions bash|zsh|fishprints a completion script you can source./reasoning on|offtoggles the streaming reasoning panel — adds a dim "thinking…" block above the answer for o-series and similar models./verbose on|offswitches to a debug tool view: every tool call is printed with its full arguments and a large result preview, so you can see exactly what the agent is doing./verbose offrestores the normal view./trace on|offshows nested subagent and critic tool activity as indented lines in the TUI (without flooding the parent context). Every turn is also logged to a sidecar at.sessions/<session-id>.events.jsonlwith tool calls, approvals, compaction, warmup, and timing — enabled by default viadisplay.eventLog.enabledinagent.config.json.- Turn footer timing. After each turn the status line includes step count
and a breakdown when available:
TTFT,model,tools,approval, andtotalseconds alongside the existing token and cost stats. - Slash-command completion. Type
/and a menu of matching commands (with descriptions) appears beneath the prompt; the best match also shows as dim ghost text. ↑/↓ select, Tab accepts (with a trailing space), → accepts inline, Esc dismisses. It narrows live as you type. - Update check. Once a day, Albatross checks GitHub for a newer
release and shows a one-line notice in the banner if there is one.
Background, cached, opt-out with
ALBATROSS_NO_UPDATE_CHECK=true. - Crash log. If the harness panics, it writes a redacted log (API keys
scrubbed) to
.sessions/crashes/<timestamp>.logand prints the path so you have something to attach to an issue. - One-shot mode —
albatross --print "summarize this repo"orprintf '…\n' | albatrossfor scripts and CI. Approval-gated tools are denied by default; pass--allow-toolsto allow them. - Agent eval —
albatross --eval fix-failing-test [--model M] [--json]runs a bundled eval fixture and exits 0/1 (for CI scripts).--evalcan also point at a data-only fixture JSON file; its workspace is resolved relative to that file and rejected if it escapes the fixture root. In the interactive TUI,/eval agent <fixture.json>accepts the same external fixture path. - Warmup. Albatross sends a 1-token request with the full system
prompt + tools at startup so llama.cpp-derived engines have a hot
prompt-eval cache before your first prompt. Disable with
WARMUP=false.
- Ollama —
brew services start ollamaor runollama serve. Default port 11434. - LM Studio — open the app, go to Local Server, click Start. Default port 1234.
- MLX — start
mlx_lm.server --port 8080against an MLX-format model. - llama.cpp —
llama-server -m /path/to/model.gguf --host 127.0.0.1 --port 8080 --jinja(the--jinjaflag enables native tool calls). - OpenRouter — set
OPENROUTER_API_KEY(or use/auth set openrouter). - OpenAI — set
OPENAI_API_KEY(or use/auth set openai). UseOPENAI_BASE_URLfor a compatible proxy. - Anthropic — set
ANTHROPIC_API_KEY(or use/auth set anthropic). UseANTHROPIC_BASE_URLfor a compatible proxy. - OpenAI Codex — run
/login openai-codex, then/backend openai-codex. - Grok — run
/login grok(browser or device-code), then/backend grok.
Run /doctor --deep for a fuller capability probe (streaming, usage chunks,
native tool calls, inline JSON fallback). Reports land under .sessions/doctor/.
The cache becomes stale when you change /backend, /model, or /tools.
The next prompt re-evaluates the new system prompt and tools. One-time per
change.
Some small-model templates emit tool calls as plain content
({"name": "shell", "arguments": {…}}) instead of populating the
tool_calls field. Albatross detects and synthesizes a real tool call.
If a particular model still misbehaves, llama3.1:8b has well-tested
tool-call templates.
Some bilingual models (notably qwen) drift into Chinese on short greetings.
The system prompt has an explicit language directive; if it's still
happening, strengthen it by editing SYSTEM_PROMPT in src/config.rs.
Install Rust via rustup:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh.
+-------------------------+
| main.rs |
| banner / input loop / |
| warmup / approval |
+------------+------------+
|
v
+-----------+ +-------------------------+ +-------------------+
| config.rs |--->| agent.rs |<-->| tools/*.rs |
| + auth/ | | chat/completions loop | | + mcp__ adapters |
+-----------+ +-------------+-----------+ +-------------------+
|
v
+-------------------------+
| backends.rs |
| Ollama / LM Studio / |
| MLX / llama.cpp / |
| OpenRouter / OpenAI |
+-------------------------+
Source layout in src/ — agent.rs runs the loop, backends.rs
holds the backend providers, tools/ holds tool implementations, mcp.rs is
the stdio MCP client, catalog.rs has the per-model context + pricing
table, auth.rs manages the credential file, session.rs writes the JSONL
log. cargo doc --open for module-level docs.
cargo check # type-check without producing a binary
cargo run --release # optimized build + run
cargo build --release # target/release/albatross
cargo fmt --check
cargo clippy --all-targets -- -D warnings
cargo testGuidelines:
- Mutating tools implement
require_approvalon theTooltrait (returntrue, or compute from args — seeshell.rs). - New backends usually need an OpenAI-compatible
/v1/chat/completionsendpoint and a default model inbackends.rs; non-compatible transports should add an adapter likecodex_responses.rs. - Before opening a PR, run the full check suite:
cargo fmt --check,cargo clippy --all-targets -- -D warnings, andcargo test.
Release tags use a leading v (v0.4.0). The release workflow at
.github/workflows/release.yml builds
notarized macOS binaries when Apple Developer secrets are present.
MIT.