What problem does it solve?
It turns an agreed implementation scope into a clean, PR-ready local branch without touching the user's original checkout, while enforcing review, verification, and provenance rules before any commit is created.
Core Features & Use Cases
- Isolated worktree execution: Fetches the latest origin/main, creates a detached worktree, and keeps all task changes uncommitted until final review passes.
- Replay and verification gates: Replays the task diff onto the newest main, runs repository completion gates, and validates the final handoff with scripts/validate_handoff.py.
- PR takeover support: Imports another author's pull request diff, preserves verified Co-authored-by provenance, and generates a complete PR draft without pushing or mutating GitHub.
- Use Case: A maintainer asks the agent to implement a bug fix in openai-agents-js; the skill builds the change in a fresh worktree, runs final review, and hands off one clean local commit ready for the user to push.
Quick Start
Use $implementation-kickoff to start this implementation in a fresh worktree and leave one verified local commit.