work
/work
Execute exactly one work item end-to-end. This is the playbook's default operating loop for agent-owned implementation.
Invoking /work is explicit authorization to create a branch, commit, push, and open a Ready PR after the required gates pass. It is not authorization to merge, close issues, force-push, bypass hooks, run destructive database or infrastructure commands, or expand scope.
Humans can waive gates. Agents cannot self-waive.
Usage
/work <prd-file> <plan-file> <phase>
/work <github-prd-issue> [<github-work-issue>]
/work <linear-issue>
/work <one-slice task description>
1. Resolve the work item
More from wiseiodev/agentic-playbook
worktree
Create a git worktree + branch for a slice using the project naming convention. Use when starting a new slice that should run in parallel with others. Triggers on /worktree, "make a worktree", "new worktree for this slice".
1spec
Open a per-task spec scaffold from the canonical template, prefilled with reasonable defaults. Use when starting a new slice that needs a spec written. Triggers on /spec, "draft a spec", "spec this slice".
1pr
Draft the PR body via the pr-author subagent and open the PR via gh. Use after self-QA + anti-overeng review are clean. Triggers on /pr, "open the PR", "draft the PR body".
1plan
Generate an implementation plan from a locked per-task spec, gated by human approval before any code is written. Use after the spec exists and before implementation. Triggers on /plan, "make a plan", "draft a plan for this spec".
1review
Run anti-overengineering review on the current diff. Invoke after self-QA is green and before opening a PR. Triggers on /review, "review for overengineering", "check the diff for overeng".
1implement
Run implementation phase against an approved plan. Use after /plan has been approved by the human. Triggers on /implement, "implement the plan", "code this up", "execute the plan".
1