agentplane
v0.6.23
Published
CLI-first operational workflows and traces for AI agents.
Maintainers
Readme
AgentPlane CLI
Git-native infrastructure for traceable AI work.
agentplane is a local-first CLI that turns Claude Code, Codex, Cursor, Aider, and similar
coding-agent changes into reviewable Git evidence: task intent, approved plan, verification, finish
state, and Agent Change Record.
Use any coding agent. Keep the review trail in your repository.
Install in 30 seconds
npm i -g agentplane
agentplane init
agentplane quickstartPrefer no global install:
npx agentplane init
npx agentplane quickstartRequirements: Node.js 24+, Git, and a local terminal.
Experimental agent shorthand:
ap next
ap show <task-id>
ap vshow <task-id>ap is an agent-optimized entrypoint for compact, non-interactive command use. Keep public docs and
human-facing setup on agentplane; use ap only when the installed package exposes it.
What you get after agentplane init
AGENTS.md or CLAUDE.md Policy gateway for the repository
.agentplane/ Repo-local workflow workspace
.agentplane/WORKFLOW.md Current workflow/config contract
.agentplane/agents/ Installed agent profiles
.agentplane/tasks/ Per-task records and evidence
.agentplane/workflows/ Last-known-good workflow snapshotAgentPlane records the task trail inside the repository you already review.
One task loop
agentplane task new --title "Fix parser edge case" --description "Reject empty labels." --owner <agent-id> --tag code
agentplane task plan set <task-id> --text "Add a fixture, tighten validation, and run focused tests." --updated-by <agent-id>
agentplane task plan approve <task-id> --by <reviewer-id>
agentplane task start-ready <task-id> --author <agent-id> --body "Start: implementing parser validation with focused tests."
# Run Claude Code, Codex, Cursor, Aider, or edit manually.
agentplane task verify-show <task-id>
agentplane verify <task-id> --ok --by <agent-id> --note "Focused tests passed."
agentplane finish <task-id> --author <agent-id> --result "Parser rejects empty labels." --commit <git-rev>The visible output is the point: a reviewer can inspect task intent, plan, verification, closure, and ACR from Git-visible files.
Agent IDs are configurable profiles. See Agents.
Agent Change Record
Every task can produce an Agent Change Record (ACR), a commit-safe JSON evidence projection of intent, accepted plan, Git commits, policy decisions, verification result, and merge readiness.
agentplane acr generate <task-id> --work-commit HEAD --write
agentplane acr validate <task-id> --mode local
agentplane acr check <task-id> --mode ci
agentplane acr explain <task-id>Schema: https://agentplane.org/schemas/acr-v0.1.schema.json
Workflow modes
directkeeps work in the current checkout for fast local loops.branch_prcreates per-task branches, worktrees, PR artifacts, and integration handoff.
Not another agent
AgentPlane does not replace your coding agent, editor, terminal, Git, CI, or PR review. It records the evidence around the tools you already use.
Compatible with
Claude Code, Codex CLI, Cursor agent, Aider, GitHub Actions agent runners, and MCP-driven workflows. AgentPlane does not replace them; it records what they did and whether your gates passed.
Recipes
Recipes are optional signed behavior modules. Start with the task -> plan -> verify -> ACR flow first; add recipes only when you need reusable profiles, prompt modules, skills, or repository mapping:
agentplane recipes list-remote
agentplane recipes install code-map --refresh --yesStart with Code Map.
Docs
Repository
https://github.com/basilisk-labs/agentplane
License
MIT
