Portable task continuity for AI coding agents.
Coding agents forget. Agentpack gives them the task state they need to continue.
Agentpack helps coding agents continue long-running repo work without rediscovering context, re-reading unchanged sources, or repeating dead ends.
Agentpack is a local-first continuity layer for repo-scoped coding work. Execution engines run the work. Git stores code state. Agentpack stores reviewed task state so the next agent can continue safely.
Agentpack is not a general AI memory, a knowledge graph, an automatic activity logger, or a chat archive. Instead, it keeps a compact task ledger in .agentpack/ and exposes that state through simple surfaces:
- a local MCP server
- project instructions such as
AGENTS.md,CLAUDE.md, and Cursor rules - CLI commands for setup, inspection, debugging, and fallback
- files in
.agentpack/
.agentpack/ is local task state and is ignored by git by default. Agentpack is designed first for coding agents such as Codex, Claude Code, Cursor, and other MCP clients. Markdown export exists as a fallback for manual handoff, not as the primary workflow.
The normal workflow is hybrid: generated client instructions tell MCP-connected agents when to load context, record durable decisions, attach evidence, cache reviewed source conclusions, and checkpoint meaningful progress. Humans can still use the CLI directly when they want to inspect state, debug MCP, run demos, or fall back to a web chat.
Agentpack stores the reviewed task state a future agent needs:
- goal, current status, and next actions
- decisions and failed approaches
- evidence and test outputs
- relevant files and source conclusions
- repo name, branch, commit hash, and git diff
- compact resume context under a rough token budget
The source cache is deliberately lightweight. Agentpack stores metadata, hashes, summaries, and optional snippets, not a full copy of the repository.
Agentpack is for durable task continuity. It helps when:
- Claude compacts context and the next agent needs the useful state back
- you start a new chat or coding-agent session
- you move or copy a project folder and want the repo's task state to move with it
- you switch between Claude Code, Cursor, Codex, or another MCP client
- you return to a refactor or bugfix later
- another agent needs to continue from your checkpoint
The cost benefit is a side effect: agents spend less time re-reading unchanged files and re-explaining decisions because the repo keeps the task state locally.
The first version is intentionally small:
- initialize a local
.agentpack/ - record decisions, dead ends, evidence, and inspected sources
- store file hashes so agents can avoid re-reading unchanged files
- check whether recorded sources are unchanged, changed, or missing
- create checkpoints with git status, git diff, and generated resume context
- run a minimal local MCP server for coding-agent clients
- export a budgeted markdown handoff for manual fallback workflows
Agentpack requires Node.js >= 20.
npm install -g agentpack-cli
agentpack --versionIf you don't have Node yet, install it through fnm:
brew install fnm
fnm install 22
fnm default 22
echo 'eval "$(fnm env --use-on-cd --shell zsh)"' >> ~/.zshrc
exec zshcd path/to/your/repo
agentpack init
agentpack install codex --write
# or: agentpack install claude --write
# or: agentpack install cursor --write
# or: agentpack install claude-desktop --write (writes a snippet to merge manually)Run agentpack init once per repo. Then run agentpack install <client> --write for each coding-agent client you want to use in that repo.
Restart or reconnect the coding-agent client. The generated project instructions tell the agent to load Agentpack context at the start, record durable decisions/sources/evidence while working, and checkpoint meaningful progress.
Use agentpack doctor to verify the local setup. Use agentpack resume --preset agent --query "<topic>" when you want to inspect the task state yourself.
See docs/INTEGRATIONS.md for safe Codex, Claude Code, Cursor, and Claude Desktop setup. See docs/agentpack-flow.md for a visual execution flow. See docs/CLI.md for manual CLI and web-chat fallback commands. See docs/DEMOS.md for compact continuity demo outlines.
Versions published by the GitHub Actions release workflow ship with npm provenance. To verify that tarball was built from a known commit of this repo:
npm audit signaturesFor those versions, you can also inspect the attestation manually at https://www.npmjs.com/package/agentpack-cli under the Provenance tab — it links back to the exact commit, workflow run, and build environment that produced the package.
Clone the repo and use Node 22:
fnm use 22
npm ci --ignore-scripts
npm test
npm run mcp:smoke
node dist/src/agentpack.js --helpThis repo uses Agentpack itself through MCP — see docs/DOGFOOD.md for the working protocol and docs/SETUP.md for the full setup guide. Release process is documented in docs/RELEASING.md.
To verify the local MCP server without configuring an agent client yet:
npm run mcp:smokeThe smoke runner creates a temporary Agentpack workspace, starts agentpack mcp, sends initialize, tools/list, and a short resume flow, then deletes the temporary workspace.
Agentpack's default loop is MCP-connected and agent-led:
- The agent starts a session by loading compact Agentpack context for the repo.
- Before relying on prior source conclusions, it checks whether recorded files are unchanged, changed, or missing.
- While working, it records durable decisions, failed approaches, useful evidence, and reviewed source conclusions.
- At a coherent boundary, it creates a checkpoint with status, next actions, git state, and a compact resume.
- The next Codex, Claude Code, Cursor, or MCP-capable agent continues from that task state instead of rebuilding it from chat history.
The CLI mirrors this loop for humans, demos, debugging, and web-chat fallback. See docs/CLI.md for manual commands.
Agentpack keeps the v0 supply chain deliberately small:
- zero runtime dependencies
- exact dev dependency versions
- committed
package-lock.json ignore-scripts=true- no telemetry
- no network calls during normal CLI or MCP operation
- best-effort redaction for common secret-looking values in stored context and handoff outputs
- release workflow publishing through GitHub Actions with npm provenance and Trusted Publisher OIDC (no long-lived npm tokens)
Agentpack compresses task state under rough context budgets so agents can resume with the useful state, not a pile of history. load_context, resume, and export can focus Source Cache with a local --query filter: matched sources keep full summaries/snippets, changed or missing records are always shown in full, and unrelated unchanged sources stay visible as compact stubs.
See docs/CLI.md for manual budget and export commands.
agentpack mcp is the primary runtime surface for connected coding agents. It starts a local stdio MCP server with tools for reading and writing task state:
load_contextrecord_decisionrecord_dead_endattach_evidencerecord_sourcesource_statuscheckpointresumediffreplay
See docs/MCP.md for the current MCP contract and smoke-test flow.
v0: CLI + local source cache + markdown fallback export
v1: local MCP server + coding-agent installers
v2: stronger repo/file hashes, richer retrieval, and smarter budget packing
v3: shareable .agentpack bundle
v4: optional hosted sync/share