Agentpack

by ihorponom

233 downloads
Not rated
GitHub

About

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.

Details

Author
ihorponom
Downloads
233
Categories
AI

- Records durable task decisions and failed approaches
- Preserves reviewed source conclusions with file hashes
- Creates checkpoints and handoffs for repo-scoped work
- Supports switching between Codex, Claude Code, Cursor, and Claude Desktop
- Provides compact resume context to avoid chat‑history rebuilding

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Agentpack
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install the CLI tool globally via npm (npm install -g agentpack-cli), then run agentpack init inside your repository. Next, run agentpack install <client> --write (e.g., agentpack install codex --write or agentpack install claude --write) to configure the integration for your preferred coding agent.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "agentpack": {
            "agentpack": {
                "command": "npx",
                "args": [
                    "-y",
                    "agentpack-cli@latest",
                    "mcp",
                    "--root",
                    "/absolute/path/to/your/repo"
                ],
                "env": {
                    "AGENTPACK_ROOT": "/absolute/path/to/your/repo"
                }
            }
        }
    }
}

McpServers

{
    "agentpack": {
        "command": "npx",
        "args": [
            "-y",
            "agentpack-cli@latest",
            "mcp",
            "--root",
            "/absolute/path/to/your/repo"
        ],
        "env": {
            "AGENTPACK_ROOT": "/absolute/path/to/your/repo"
        }
    }
}

Agentpack

Repo-native task continuity for MCP-connected coding agents. Agentpack gives Codex, Claude Code, Cursor, Claude Desktop, and other MCP clients a local repo-scoped task ledger. Agents can record decisions, dead ends, evidence, source conclusions, task passports, checkpoints, and compact resume context so future sessions can continue without rebuilding context from chat history.

What it helps with

- Continuing after chat compaction or a fresh agent session - Switching between Codex, Claude Code, Cursor, and Claude Desktop - Recording durable task decisions and failed approaches - Preserving reviewed source conclusions with file hashes - Creating checkpoints and handoffs for repo-scoped coding work

Install

```bash npm install -g agentpack-cli agentpack init agentpack install codex --write
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.