AXME Code

Persistent project memory + architectural decisions + pre-execution safety hooks for Claude Code. Local-only storage, multi-repo workspace, automatic knowledge extraction via background auditor.

AXME Code

Claude Code forgets your project every session. We fixed it.

AXME Code is a Claude Code plugin that gives your AI coding agent persistent memory across sessions, pre-execution safety hooks, architectural decision enforcement, and structured session handoff โ€” via an MCP server, automatically, across every session.

Stop re-explaining your architecture on session 47. Stop losing memory between session handoffs. Stop hoping the agent won't run git push --force to main. AXME Code remembers what happened, enforces your architectural decisions, continues where the last session stopped, and blocks dangerous commands before they execute โ€” so you can focus on building.

You keep using Claude Code exactly as before. AXME Code works transparently in the background.

Alpha GitHub Release License: MIT Tests

โญ Star this repo if it saves you time ยท ๐Ÿ”” Watch releases for new features ยท ๐Ÿ’ฌ Discussions

Quick Start ยท Before & After ยท How It Works ยท Architecture ยท Website


AXME Code demo

Before & After

Without AXME CodeWith AXME Code

Session 1: "We use FastAPI, not Flask. Deploy only via GitHub Actions. Never push to main directly."

Session 2: "Like I said yesterday, we use FastAPI..."

Session 7: "For the third time this week, we use FastAPI..."

Session 47: gives up, mass-pastes 200 lines into CLAUDE.md

Session 1: Agent learns your stack, saves decisions.

Session 2: Agent calls axme_context โ†’ already knows FastAPI, deploy rules, what happened yesterday.

Session 47: Agent has your full project history: 30 decisions, 15 memories, safety rules, and a handoff from session 46.

Agent runs git push --force to main. Your Friday is ruined.

Hook intercepts the command before execution and blocks it. Not a prompt โ€” hard enforcement at the harness level.

Agent says "Done!" โ€” but tests don't pass, half the code is stubbed, and the deploy is broken.

Decisions enforce verification requirements: agent must run tests and show proof before reporting completion.


Quick Start

Requires Claude Code (CLI or VS Code extension).

Option 1: Claude Code plugin (recommended)

In Claude Code, run:

/plugin marketplace add anthropics/claude-plugins-community
/plugin install axme-code@claude-community

Or from the terminal:

claude plugin marketplace add anthropics/claude-plugins-community
claude plugin install axme-code@claude-community

The plugin ships with the MCP server, safety hooks, and CLI bundled together; no separate binary to install. On first use in a project, just ask the agent to call axme_context โ€” the plugin auto-initializes the knowledge base on that session.

Option 2: Standalone binary

Install the CLI system-wide (useful if you want to run axme-code outside Claude Code, e.g. for scripting).

Linux / macOS:

curl -fsSL https://raw.githubusercontent.com/AxmeAI/axme-code/main/install.sh | bash

Installs to ~/.local/bin/axme-code. Supports x64 and ARM64.

Windows (native):

irm https://raw.githubusercontent.com/AxmeAI/axme-code/main/install.ps1 | iex

Installs to %LOCALAPPDATA%\Programs\axme-code and adds it to your User PATH. Requires Node.js 20+ on PATH. Supports x64 and ARM64.

Windows via WSL2: if you already live in WSL2, use the Linux install one-liner inside your distro. Install Claude Code and axme-code inside the WSL distro, not on the Windows host.

Then in each project:

cd your-project          # or workspace root for multi-repo
axme-code setup
claude                   # that's it โ€” use Claude Code as usual

axme-code setup does three things:

  1. Scans your project and builds the knowledge base โ€” oracle (stack, structure, patterns, glossary), extracts decisions, memories, and safety rules from your code, configs, CLAUDE.md, and session history
  2. Installs safety hooks that intercept dangerous commands before execution
  3. Configures the MCP server in Claude Code settings (.mcp.json)

After setup, every Claude Code session automatically loads the full knowledge base. No config, no manual steps.


What You Get

Persistent Knowledge Base

Your agent starts every session with full context: stack, decisions, patterns, glossary, and a handoff from the previous session. No more re-explaining your architecture on session 47.

CategoryWhat it storesExample
OracleProject structure, tech stack, coding patterns, glossary"TypeScript 5.9, Node 20, ESM, esbuild"
DecisionsArchitectural decisions with enforcement levels"All deploys via CI/CD only" [required]
MemoryFeedback from mistakes, validated patterns"Never use sync HTTP in async handlers"
SafetyProtected branches, denied commands, filesystem restrictionsgit push --force โ†’ BLOCKED
BacklogPersistent cross-session task tracking"B-003: migrate auth to OAuth2 [in-progress]"
HandoffWhere work stopped, blockers, next steps"PR #17 open, waiting on review. Next: fix flaky test."
WorklogSession history and eventsTimeline of all sessions and what was done

Safety Guardrails (100% Reliable)

Hooks intercept tool calls before execution โ€” not prompts. Even if the agent hallucinates a reason to run rm -rf /, the hook blocks it. This is hard enforcement at the Claude Code harness level, not a suggestion in a system prompt.

Blocked by default:

  • git push --force, git reset --hard, direct push to main/master
  • rm -rf /, chmod 777, curl | sh
  • npm publish, git tag, gh release create
  • Writing to .env, .pem, .key files

You can add your own custom rules via axme_update_safety or by editing .axme-code/safety/rules.yaml directly.

Automatic Knowledge Extraction

The agent saves discoveries during work via MCP tools. At session close, a structured checklist ensures nothing is missed. If you just close the window โ€” a background auditor extracts memories, decisions, and safety rules from the full session transcript.

Multi-Repo Workspaces

Each repo gets its own knowledge base (.axme-code/). Workspace-level rules apply to all repos. Repo-specific rules stay scoped. The agent sees merged context โ€” workspace safety floor + repo-specific decisions.

Supports 14 workspace formats: VS Code multi-root, pnpm/npm/yarn workspaces, Nx, Gradle, Maven, Rush, git submodules, and more.

Why Not Just CLAUDE.md?

CLAUDE.md is great for simple projects with a few rules. But it doesn't scale:

CLAUDE.mdAXME Code
MemoryStatic, manualAutomatic, accumulates across sessions
DecisionsFlat text, no enforcementStructured, required/advisory levels
SafetyPrompt-based (~80% compliance)Hook-based (100% enforcement)
Session continuityNoneHandoff + background auditor
Scales to~50 linesHundreds of decisions, memories, rules

AXME Code complements CLAUDE.md โ€” it reads your existing CLAUDE.md during setup and extracts decisions and rules from it.


Works With Any MCP Client

AXME Code is a stdio MCP server โ€” every MCP-compatible AI coding assistant gets the full set of axme_* tools (knowledge base read/write, safety queries, status, worklog).

ClientMCP ToolsSafety HooksAuto Auditor
Claude Code (CLI / VS Code)โœ… Fullโœ… Fullโœ… Yes
Cursorโœ… FullโŒโŒ
Windsurfโœ… FullโŒโŒ
Cline (VS Code)โœ… FullโŒโŒ
Claude Desktopโœ… FullโŒโŒ
Any other MCP clientโœ… FullโŒโŒ

The MCP server entry is identical in every client:

{
  "mcpServers": {
    "axme": {
      "command": "axme-code",
      "args": ["serve"]
    }
  }
}

Just place it in your client's MCP config file:

  • Cursor: ~/.cursor/mcp.json or .cursor/mcp.json (per-project)
  • Windsurf: ~/.codeium/windsurf/mcp_config.json
  • Cline: VS Code Settings โ†’ Cline MCP โ†’ cline_mcp_settings.json
  • Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or equivalent

Pre-execution safety hooks, the post-tool-use file tracker, and the background session auditor are Claude Code-specific (they require Claude Code's hook system). In other clients, the agent must call AXME tools explicitly โ€” same knowledge base, same .axme-code/ storage, just no automatic enforcement layer.

See docs/MULTI_CLIENT.md for full per-client setup, hook workarounds, and concurrent-client semantics.


Comparison

AXME CodeMemPalaceMastraZepMem0Supermemory
Capabilities
Structured decisions w/ enforce levelsโœ…โŒโŒโŒโŒโŒ
Pre-execution safety hooksโœ…โŒโš ๏ธโŒโŒโŒ
Structured session handoffโœ…โŒโŒโŒโš ๏ธโŒ
Automatic knowledge extractionโœ…โŒโœ…โœ…โœ…โœ…
Project oracle (codebase map)โœ…โŒโŒโŒโŒโŒ
Multi-repo workspaceโœ…โŒโŒโŒโŒโŒ
Local-only storageโœ…โœ…โœ…โŒโŒโŒ
Semantic memory searchโœ…โœ…โœ…โœ…โœ…โœ…
Multi-client supportโœ…โœ…โœ…โœ…โœ…โœ…
Capabilities total9/93/94/93/93/93/9
Benchmarks
ToolEmu safety (accuracy)100.00%โ€”โ€”โ€”โ€”โ€”
ToolEmu safety (FPR)0.00%โ€”โ€”โ€”โ€”โ€”
LongMemEval E2E89.20%โ€”84.23% / 94.87%71.20%49.00%85.40%
LongMemEval R@597.80%96.60%โ€”โ€”โ€”โ€”
LongMemEval tokens/correct~10K โœ“โ€”~105Kโ€“119K~70K~31K~29K

Token efficiency

Token efficiency on LongMemEval

AXME uses ~10ร— fewer tokens per correct answer than Mastra at competitive accuracy. The memory system runs only 2 LLM calls per question (reader + judge) โ€” competitors run dozens (Observer per turn, Reflector periodically, graph construction, fact extraction).

See benchmarks/README.md for full methodology, per-category breakdowns, footnotes, and reproduction instructions.


How It Works

AXME Code Architecture

Session Flow

  1. Session starts โ†’ agent calls axme_context, loads full knowledge base
  2. During work โ†’ agent saves discoveries via axme_save_memory, axme_save_decision. Hooks enforce safety on every tool call.
  3. Session close โ†’ ask your agent to close the session โ†’ agent calls axme_begin_close, gets a checklist. Reviews the session for missed memories, decisions, safety rules. Calls axme_finalize_close โ€” MCP writes handoff, worklog, and extractions atomically.
  4. Fallback โ†’ if you just close the window, the background auditor extracts everything from the transcript.
  5. Next session โ†’ axme_context returns everything accumulated. Handoff says exactly where to continue.

Tip: You can save at any time โ€” just tell the agent "remember this" or "save this as a decision". You don't have to wait for session close.


Storage

All data lives in .axme-code/ in your project root (gitignored automatically):

.axme-code/
  oracle/           # stack.md, structure.md, patterns.md, glossary.md
  decisions/        # D-001-slug.md ... D-NNN-slug.md (with enforce levels)
  memory/
    feedback/       # Learned mistakes and corrections
    patterns/       # Validated successful approaches
  safety/
    rules.yaml      # git + bash + filesystem guardrails
  backlog/          # B-001-slug.md ... persistent cross-session tasks
  sessions/         # Per-session meta.json (tracking, agentClosed flag)
  plans/
    handoff-<id>.md # Per-session handoff (last 5 kept)
  worklog.jsonl     # Structured event log
  worklog.md        # Narrative session summaries
  config.yaml       # Model settings, presets

Human-readable markdown and YAML. No database, no external dependencies.


AXME Platform

AXME Code is the developer tools layer of the AXME platform โ€” durable execution infrastructure for AI agents.


Components

AXME Code has three components:

1. MCP Server (persistent, runs while VS Code is open)

Provides tools for the agent to read and write the knowledge base. All writes go through MCP server code (atomicWrite, correct append) โ€” the agent never writes storage files directly.

2. Hooks (fire on every tool call)

pre-tool-use: Checks every Bash command, git operation, and file access against safety rules. Blocks violations before execution. Also creates/recovers session tracking.

post-tool-use: Records which files the agent changed (for audit trail).

3. Background Auditor (runs after session close)

A detached process that reads the session transcript and catches anything the agent forgot to save. Two modes:

  • Full extraction โ€” when the agent crashed or user closed without formal close
  • Verify-only โ€” when the agent completed the close checklist (lighter, cheaper)
Available MCP Tools (19 tools)
ToolDescription
axme_contextLoad full knowledge base (oracle + decisions + safety + memory + handoff)
axme_oracleShow oracle data (stack, structure, patterns, glossary)
axme_decisionsList active decisions with enforce levels
axme_memoriesShow all memories (feedback + patterns)
axme_save_decisionSave a new architectural decision
axme_save_memorySave feedback or pattern memory
axme_safetyShow current safety rules
axme_update_safetyAdd a new safety rule
axme_backlogList or read backlog items
axme_backlog_addAdd a new backlog item
axme_backlog_updateUpdate backlog item status, priority, or notes
axme_statusProject status (sessions, decisions count, last activity)
axme_worklogRecent worklog events
axme_workspaceList all repos in workspace
axme_begin_closeStart session close โ€” returns extraction checklist
axme_finalize_closeFinalize close โ€” writes handoff, worklog, extractions atomically
axme_ask_questionRecord a question for the user
axme_list_open_questionsList open questions from previous sessions
axme_answer_questionRecord the user's answer
CLI Commands
axme-code setup [path]       # Initialize project/workspace with LLM scan
axme-code serve              # Start MCP server (called by Claude Code automatically)
axme-code status [path]      # Show project status
axme-code stats [path]       # Worklog statistics (sessions, costs, safety blocks)
axme-code audit-kb [path]    # KB audit: dedup, conflicts, compaction
axme-code hook pre-tool-use  # PreToolUse hook handler (called by Claude Code)
axme-code hook post-tool-use # PostToolUse hook handler
axme-code hook session-end   # SessionEnd hook handler
axme-code audit-session      # Run LLM audit on a session transcript
Preset Bundles

During axme-code setup, preset bundles provide curated best-practice rules:

PresetWhat it adds
essential-safetyProtected branches, no secrets in git, no force push, fail loudly
ai-agent-guardrailsVerification requirements, no autonomous deploys, proof before done

Additional presets available: production-ready, team-collaboration.


Telemetry

axme-code sends anonymous usage telemetry to help us improve the product. We collect:

  • Lifecycle events: install, startup, version update
  • Product health events: setup completion, audit completion (counts of memories/decisions/safety extracted, duration, cost, error class)
  • Errors: category and bounded error class for failures in audit, setup, hooks, and auto-update

What we never send:

  • Hostnames, usernames, file paths, working directories
  • Source code, transcripts, decisions, memories, or any project content
  • IP addresses (stripped at the server)
  • Raw exception messages (we map to a small set of error classes)

Each install gets a random 64-character machine ID stored in ~/.local/share/axme-code/machine-id. The ID is not derived from hardware and cannot be linked back to you.

To disable telemetry, set either of these environment variables:

export AXME_TELEMETRY_DISABLED=1
# or the industry-standard:
export DO_NOT_TRACK=1

When disabled, no network requests are made and no machine ID is generated.


Contributing

See CONTRIBUTING.md for guidelines.

License

MIT


Website ยท Issues ยท Architecture ยท [email protected]

Related Servers

NotebookLM Web Importer

Import web pages and YouTube videos to NotebookLM with one click. Trusted by 200,000+ users.

Install Chrome Extension