Local-first evidence layer for AI-authored software changes
Git-native infrastructure for traceable AI work.
AgentPlane records what an AI agent was asked to do, which plan was approved, what changed, which checks ran, and why the work is safe to merge or revert - all as reviewable artifacts inside your Git repository.
AI agents can produce real code changes faster than teams can reconstruct why those changes happened. A pull request shows what changed. It rarely shows what the agent was asked to do, which plan was approved, which checks actually ran, or why the work is safe to merge.
What task was the agent executing?
Which plan constrained the change?
What verification evidence exists?
Can another human or agent safely review, merge, or revert it?
Demo / proof
One agent task. One reviewable evidence trail.
Quickstart shows the repo-visible artifact shape before you let an agent touch product code. Reviewers do not need to trust an agent transcript; they can inspect files, commits, checks, hashes, and the ACR.
First visible payofflocal
$agentplane task new --title "Demo task" --owner <agent-id> --tag docs$agentplane task plan set <task-id> --text "Inspect the artifact."$agentplane task start-ready <task-id> --author <agent-id> --body "Start: inspect artifacts."$agentplane task verify-show <task-id>$ls .agentplane/tasks/<task-id>/
Try it locally
npm i -g agentplane
agentplane init
agentplane quickstart
Agent Change Record: the evidence file for AI work.
Every meaningful agent change should leave behind one machine-readable record: task intent, approved or waived plan, agent and toolchain identity, Git base and work commits, policy decisions, verification results, and merge readiness.
Agents are no longer just drafting snippets. They edit real repos, open branches, run checks, change docs, touch release paths, and leave reviewers with incomplete context. The next failure mode is not whether the agent can write code; it is whether the team can reconstruct, verify, and govern what happened.