Spec Kit
Spec Kit is GitHub’s spec-driven development toolkit. You drive it with /speckit.* slash commands inside your agent: /speckit.specify writes a spec, /speckit.plan a technical plan, /speckit.tasks a task list, and /speckit.implement builds it.
Each phase writes a markdown artifact you should read before the agent moves to the next one. That is where PlanBridge fits: open the file, comment inline, and the agent revises before generating the next artifact.
Spec Kit writes feature artifacts to specs/<NNN-feature>/ at your repo root:
specs/<NNN-feature>/spec.mdafter/speckit.specifyspecs/<NNN-feature>/plan.mdafter/speckit.planspecs/<NNN-feature>/tasks.mdafter/speckit.tasks
The .specify/ directory holds templates and scripts, not the generated specs.
Manual
Section titled “Manual”The strongest pause point is right after /speckit.specify. Open the new spec for review:
/planbridge-open the spec you just wrote$planbridge-open the spec you just wroteYour agent resolves the path, opens it in PlanBridge, and revises the spec from your inline comments. Do the same after /speckit.plan and /speckit.tasks:
/planbridge-open specs/001-my-feature/plan.md/planbridge-open specs/001-my-feature/tasks.md$planbridge-open specs/001-my-feature/plan.md$planbridge-open specs/001-my-feature/tasks.mdAutomatic
Section titled “Automatic”To review each artifact without asking, append a snippet to your global agent instructions:
echo '## Spec Kit + PlanBridge
After running `/speckit.specify`, `/speckit.plan`, or `/speckit.tasks`, run `/planbridge-open` on the file it just wrote (under `specs/<feature>/`) instead of asking me to review it as text. Treat the returned annotations as my review feedback and revise before moving to the next phase.' >> ~/.claude/CLAUDE.mdecho '## Spec Kit + PlanBridge
After running `$speckit-specify`, `$speckit-plan`, or `$speckit-tasks`, run `$planbridge-open` on the file it just wrote (under `specs/<feature>/`) instead of asking me to review it as text. Treat the returned annotations as my review feedback and revise before moving to the next phase.' >> ~/.codex/AGENTS.mdSpec Kit’s command names have shifted across releases, and Codex skills mode uses $speckit-* rather than /speckit.*. Run specify integration list or check your / autocomplete to confirm the exact names for your install.