Make your agent learn. Reflects. Experiments. Improves. Across every session.
Every sub-agent you spawn finishes its work and disappears. Whatever it figured out - which command failed three times before the right one, which file actually mattered, which approach to skip - dies with it. The next sub-agent rediscovers it from scratch. Your own next session does too.
ax is the loop that closes before the session ends. A Stop hook fires
at session-end (main or sub-agent), asks the agent for a structured retro
(tried · worked · failed · next), and indexes the result as a typed
experiment in a local graph. Friction patterns become proposals you
triage. Accepted proposals become experiments with t+7 / t+30 / t+90
verdicts. The next session reads what worked.
What did this sub-agent learn? Which experiments are still open? Which skills earned their keep? Which hooks blocked anything useful?
axanswers these by reading what already happened.
AX (agent experience) is what the agent perceives across sessions,
reflects on at the end of each, and turns into the next experiment. It
is to AI coding agents what retros and post-mortems are to engineering
teams - a structured reflection step that compounds.
ax (lowercase) is the reference implementation. Local typed graph,
Stop-hook-driven retros, agent-readable queries, React dashboard, AGPL-3.0.
A longer take: docs/manifesto.md. Vocabulary:
docs/language.md.
flowchart LR
cc["~/.claude/projects/<br/>Claude transcripts"]
cx["~/.codex/sessions/<br/>Codex transcripts"]
pi["~/.pi/agent/sessions/<br/>Pi transcripts"]
oc["OpenCode + Cursor<br/>SQLite stores"]
sk["installed skills<br/>(.claude, .agents, plugins)"]
g[("local git history")]
cc --> ingest
cx --> ingest
pi --> ingest
oc --> ingest
sk --> ingest
g --> ingest
ingest["axctl ingest<br/>(Effect pipelines)"] --> db
db[("the ax graph<br/>session · turn · tool_call · skill · plan<br/>repository · checkout · commit · file<br/>friction · diagnostic · compaction · insight")]
db --> cli["axctl CLI<br/>recall · skills · insights · evidence"]
db --> dash["axctl serve<br/>live dashboard"]
db --> agent["agent skill + ax mcp<br/>project context · verify · harness"]
Everything runs on 127.0.0.1. The agent and the CLI both read the same
graph; the dashboard is a thin React view over the same queries.
Which skills earned their keep, by composite score over the last 30 days:
$ axctl skills taste --limit=8
skill scope score 7d 30d total
codex:exec_command codex-tool 40902.5 1,124 30,500 40,389
codex:write_stdin codex-tool 6,957 166 4,932 6,451
codex:rescue command 781 0 389 605
codex:update_plan codex-tool 766.5 14 338 391
simplify user 718.5 5 89 101
codex:wait_agent codex-tool 713 3 497 507
codex:spawn_agent codex-tool 647 2 439 442
superpowers:systematic-debugging plugin 26.5 0 6 6
(8 / 288 skills shown)
Recall past work across every session, in milliseconds:
$ axctl recall "auth middleware"
4 matches
2026-05-23T15:19 codex user acme-app alright lets commit auth related work for now
2026-05-23T14:51 codex assistant acme-app Added the HealthOS just setup. You can now run from repo root: just health dev …
2026-05-23T14:41 codex assistant acme-app Findings: apple-auth.service.ts accepts extra Apple audiences from ambient env …
2026-05-19T11:08 claude user ax the auth middleware retry loop - we still see exit-code 1 from bun check after …
Which tools fail most often, so you know what to skill-up around:
$ axctl insights tools --limit=5
name failure_count exit_code last_seen
write_stdin 647 1 2026-05-23T14:34
Edit 483 - 2026-05-23T05:14
Skill 475 - 2026-05-05T13:34
exec_command 421 1 2026-05-22T18:50
Bash 318 1 2026-05-21T22:12
LLM agents are good at tasks. They're bad at remembering what happened. Memory tooling today is either a giant rolling context window (expensive, slow, lossy) or vague vector retrieval (no structure, no grounding in real events).
ax takes a different shape: a typed graph of evidence built from the
agent's own logs. Sessions, turns, tool calls, plans, skills, commits, files,
friction, compaction events, and derived signals - all queryable, all local, no
network round-trip, no third party. Signals like compaction are normalized the
same way across every harness, so "context ran out and got summarized" is one
queryable event whether it came from Claude Code, Codex, Pi, OpenCode, or Cursor.
Three things fall out of that, and they're the three things "agent experience" actually means in practice:
- Skill triage - which of your installed skills get used, which never fire, which correlate with stuck sessions.
- Pre-flight grounding -
axctl project contexthands the next agent stack info, recent friction, and verification commands. - Retro signal - query the graph after a hard session: tool retries, plan churn, file edit pairings. Feed it back into the next run.
curl -fsSL https://raw.githubusercontent.com/Necmttn/ax/main/install.sh | bash
PATH="$HOME/.local/bin:$PATH" axctl ingest --since=7Skills are distributed via the skills.sh marketplace. After the CLI is installed, drop the agent skills into your Claude Code session with:
npx skills add Necmttn/ax # installs the ax agent skills (setup, retro, repo, …)Requires Bun ≥ 1.3 and SurrealDB ≥ 3.0. macOS-first; Linux works for ingest and CLI (no launchd reactivity).
For dev install, schema, queries, and benchmarks, see
docs/development.md.
axctl ingest --since=7 # backfill last 7 days of transcripts + skills + git
axctl serve # live dashboard at http://127.0.0.1:8520
axctl skills taste # CLI view: which skills earned their keep
axctl recall "auth bug" # full-text recall across past sessionsaxctl serve exposes POST /api/ingest (also wired to the dashboard's Live
tab): it triggers an in-process ingest run and streams progress to a per-run
Durable Stream named
ingest:<runId>. The live view replays history from the start and then
continues live, so a mid-run refresh or reconnect rehydrates finished stages
and resumes the tail (offset-resume, not raw SSE). An IngestStreamBus seam
keeps the local Durable-Streams-in-Bun backing swappable for a hosted backend
without touching producers or UI; the CLI axctl ingest and its terminal
animation are unchanged.
Live ingest requires running ax from source (the
bin/axctlshim already does). The compiled standalone binary serves the dashboard but disables live ingest, since native lmdb can't be bundled into the--compilebinary.
ax ships a set of installable skills so a Claude Code / Codex agent can drive
and query its own evidence graph mid-session - setup (install + verify),
retro and retro-meta (the experiment loop), ax-extract-workflow
(reconstruct what made a past result work), ax-repo (star / file issues / open
PRs), and release-announcement:
npx skills add Necmttn/ax -g -a claude-code -a codex -y # all ax agent skillsRecommended agent loop:
axctl project context --jsonbefore work - stack, recent friction, verification commands.- Do the work.
axctl project verify --jsonbefore reporting done - runs the checks the project actually expects.
ax mcp runs a Model Context Protocol
server over stdio that exposes ax's read-only graph queries as tools, so a
coding agent (Claude Code, Codex) can query the ax graph in-context instead of
shelling out. It complements the installable skills above. (ax and axctl
are the same binary.)
Register it with Claude Code:
claude mcp add ax -- ax mcp # add --scope user to make it globalRegister it with Codex by adding to ~/.codex/config.toml:
[mcp_servers.ax]
command = "ax"
args = ["mcp"]The 10 tools, each mirroring the matching CLI command:
- recall - full-text recall across turns / commits / skills (
ax recall). - sessions_around - sessions in a date window (
ax sessions around). - session_show - one session's detail, with optional subagent expansion
and skill-by-role grouping (
ax sessions show). - skills_weighted - usage x role-weight skill ranking (
ax skills weighted). - skills_by_role - skills tagged with a given role (
ax skills by-role). - skills_roles - roles for a given skill (
ax skills roles). - roles - the full role vocabulary (
ax roles). - improve_recommend - top improvement proposals, ranked (
ax improve recommend). - improve_show - one proposal's evidence trail (
ax improve show). - improve_list - proposals filtered by status / form (
ax improve list).
Read-only. Mutating ops (
improve accept/reject/verdict,skills tag/lint,ingest) stay on the CLI - they write task files / edges a human reviews - so v0 exposes no mutating tools.Run it from source (the
bin/axctlshim does this). Unlike live ingest, the MCP server pulls in no native deps (just the JS MCP SDK + the SurrealDB client), so the compiled standalone binary should serve it too - that path is just untested in v0.
sessions_here/sessions_nearare intentionally deferred - they need a git/cwd-resolved repository key, a documented follow-up.
axctl ingest [--since=N] [--reset] [--stages=<list>] # backfill the graph
axctl ingest here [--since=Nd] [--stages=<list>] # scope ingest to the git repo at $PWD
axctl derive <signals|intents> # re-run a derive pass standalone
axctl serve # live web dashboard
axctl mcp # MCP server (stdio) - read-only graph queries for agents
axctl report # one-shot static HTML
axctl tui # interactive terminal dashboard
axctl recall <query> [--sources=turn,commit,skill] [--scope=here|all]
# cross-session BM25 full-text search
axctl context [file] [<query>] # file/agent-context grounding
axctl skills <search|taste|unused|pairs|recovery|stats|recent|classify|tag|lint|weighted|by-role|roles|config|reconcile|scope|park|unpark|rm>
axctl agents <config|reconcile|scope|park|unpark|rm> # agent-file registry + overrides
axctl insights <view> # 31 read-only graph views
axctl classifiers <list|eval|explain|...> # classifier coverage, graph, lifecycle, label-mining
axctl costs <summary> # token/cost usage by provider/model quality
axctl sessions <here|around <date>|near <sha>|show <id>|compare>
# windowed session queries
axctl costs summary [--since=N] # estimated token cost by provider/model
axctl costs for --session <id> # cost for one session
axctl costs for --query <text> [--limit=N] # cost for sessions matching turn text
axctl costs for --terms <a,b,c> [--since=N] # cost for sessions matching any term
axctl costs for --commit <sha> # cost for sessions that produced a commit
axctl costs for --branch <name> # cost for sessions linked to a branch
axctl pricing [--query <model>] # inspect imported model pricing rows
axctl share <session-id> # publish a sanitized session share via GitHub Gist
axctl roles # list role labels with skill counts
axctl project <context|verify|harness>
axctl evidence <guidance-next|session-summary|weekly>
axctl improve <list|show|accept|reject|verdict|checkpoint|reset>
axctl retro <emit|list|pending|brief|reflect|meta|plan> # the retro-loop CLI
axctl hook <fire> # hook helper invoked from settings.json
axctl hooks <summary|invocations|backtest|session|config ...> # + hook-config CRUD
axctl daemon <status|start|stop|restart>
axctl doctor # local-install health check
axctl install # wire launchd + hooks + DB (then runs setup)
axctl setup [--agents=… --no-ingest --yes] # install agent skills + first ingest + doctor
axctl uninstall # remove launchd + bin symlink
axctl update [--check] # pull latest release
axctl version [--check|--banner]
axctl --helplists only the everyday commands (ingest,sessions,improve,retro,recall,skills,serve,mcp,tui,share,install,setup) to keep it lean. The rest (derive,agents,costs,report,roles,context,hook(s),project,evidence,classifiers,insights,daemon,doctor,uninstall,update,version) are hidden from--helpbut remain fully invokable by name. This block can drift - runaxctl <command> --helpfor the authoritative subcommand set.
Full reference: docs/insights-cli-reference.md.
axctl costs reads the local session_token_usage graph. Provider adapters
write actual token counters when they exist; otherwise ax falls back to a rough
transcript-byte estimate. session-health resolves model names through
agent_model pricing rows and stores prompt, output, cache-read, cache-write,
and total estimated USD.
Examples:
axctl costs summary --since=2
axctl costs for --query "live-traces" --limit=20
axctl costs for --terms "live trace,livetrace,live-traces" --since=2 --limit=50
axctl costs for --terms "live trace,livetrace,live-traces" --since=2 --project /Users/me/project
axctl costs for --query "checkout bug" --since=7 --here
axctl costs for --commit 464c80b
axctl costs for --branch main --limit=20
axctl sessions show <session-id>
axctl pricing --query gpt-5.5--query and --terms can be constrained with --since=N, --project <path>,
or --here. --here, --commit, and --branch use repository graph evidence
from the current git checkout. Direct --pr <number> is not wired yet; use the
PR branch or a commit SHA for now.
ax can recommend changes to your AGENTS.md / CLAUDE.md (and skill files)
and track which lines came from it.
End-to-end flow:
session ends axctl retro emit # structured note: tried · worked · failed · next
proposals derive axctl improve recommend # ranked by confidence × recency × frequency
pick one axctl improve accept <id>
# default: writes .ax/tasks/<id>.md - hand to your agent
# --auto-scaffold: skips the brief, writes SKILL.md directly
# --with-agent: scaffolds + dispatches `claude -p` subagent
# to enrich the stub with real triggers + steps
reconcile axctl improve lint # marker ↔ DB ↔ task files
verdict at +3/+10/+30 axctl improve verdict --set=adopted|ignored|regressed|partial
sessions # session-count windows, not calendar days (#83)
Commands:
axctl improve recommend [--limit=N] [--form=skill] [--apply]- print N ranked proposals as paste-ready blocks (already wrapped in<!--ax:id-->provenance markers).--applyenters an interactive accept loop.axctl improve accept <id> [--with-agent] [--auto-scaffold] [--force]- Default emits.ax/tasks/<id>.md, a brief your agent (Claude Code, Codex) executes.--auto-scaffoldwritesSKILL.mddirectly.--with-agentadds aclaude -psubagent pass that reads the stub + sibling skills and rewrites it with concrete triggers, steps, and anti-patterns. Optionally writes a siblingPLAN.md.axctl improve lint [--root=<dir>] [--stale-days=N]- scan grounded agent files, reconcile markers with the DB, remove consumed task files, warn on orphans or tasks older than--stale-days(default 7).axctl improve show <id>- full evidence trail for one proposal.axctl improve list [--status=open|accepted|rejected|all]- browse the proposal queue.axctl improve verdict <id> [--set=...]- inspect or lock the +30-session verdict.axctl improve reject <id> [--reason=...]- dedupes future re-proposals of the same trigger.
docs/manifesto.md- the missing layer in the agent stackdocs/origin.html- origin notes on the loop ax closesdocs/language.md- coined vocabulary, the AX glossarydocs/brand.md- design system + voice rulesdocs/development.md- local setup, schema, queries, benchmarksdocs/plans/ax-mcp-server.md- theax mcpserver planCONTRIBUTING.md- PR conventions, ground rulesCONTEXT.md- domain glossary (Repository vs. Checkout vs. …)docs/adr/- architecture decisions
Questions, feedback, or want to shape where ax goes next? Join the Discord: discord.gg/E4R88Cvr5R
AGPL-3.0-only © 2025 Necmettin Karakaya. A commercial license is available for use that the AGPL doesn't permit - reach out via the Discord above.
