| name | agentplane |
| description | Use when a repository uses AgentPlane or the user wants a governed git-native workflow for planning, task execution, verification, and closure. |
AgentPlane
Use AgentPlane through its CLI instead of editing .agentplane/ state directly.
When to use
- The repository already contains
AGENTS.md or .agentplane/.
- The user wants to initialize AgentPlane in a repository.
- The user wants explicit planning, task IDs, verification evidence, or
branch_pr worktrees.
Startup
- If the repository is not initialized, run
ap init or agentplane init.
- Run
ap quickstart.
- Inspect
AGENTS.md, ap task list, ap task active, git status --short --untracked-files=no, git status --short, and git rev-parse --abbrev-ref HEAD.
- Use
ap task brief <task-id> before owner-scoped execution; add --remote only when hosted PR/check/review state is needed.
- Use
ap role ORCHESTRATOR while planning and approvals are active.
- Switch to
ap role <ROLE> before owner-scoped execution or verification.
Rules
- Treat
AGENTS.md, ap quickstart, and ap role <ROLE> as the policy surface.
- Use
ap task ..., ap work ..., ap verify ..., and ap finish ...; do not edit .agentplane/tasks.json manually.
- Prefer
ap task brief <task-id> and ap task next-action <task-id> --explain over manually combining task docs, route status, Verify Steps, PR metadata, and policy notes.
- In
branch_pr, use the concrete route command emitted by task brief or task next-action when available; fall back to ap work start <task-id> --agent <ROLE> --slug <slug> --worktree only as the low-level command contract.
- Treat weak
source_confidence or non-ready verify_steps_quality as a context gap to resolve before mutation.
- Keep repository artifacts in English unless the user explicitly requests another language for a specific artifact.
- Record verification evidence in the task README and through
ap verify.
Limits
- This plugin bundles workflow guidance only. It does not install the
ap/agentplane binary for you.
- If both
ap and agentplane are missing from PATH, install AgentPlane first, then use the workflow commands above.