Agentpack is a local-first continuity layer for AI coding agents. It stores reviewed task state inside a repo-local .agentpack/ ledger so Codex, Claude Code, Cursor, Claude Desktop, and other MCP clients can resume work without rebuilding context from chat history.
Agents can record durable decisions, failed approaches, evidence, reviewed source conclusions, task passports, and checkpoints, then load compact resume context under a token budget. Git keeps the code history; Agentpack keeps the task state a future agent needs to continue safely.
Agentpack runs locally, exposes a stdio MCP server, has zero runtime dependencies, makes no network calls during normal operation, and is designed for repo-scoped coding workflows rather than general chat memory.
Server Config
{
"mcpServers": {
"agentpack": {
"command": "npx",
"args": [
"-y",
"agentpack-cli@latest",
"mcp",
"--root",
"/absolute/path/to/your/repo"
],
"env": {
"AGENTPACK_ROOT": "/absolute/path/to/your/repo"
}
}
}
}