What problem does it solve? Executing a planned OpenSpec change directly on your main checkout risks polluting your working tree and producing one giant unreviewable commit. This Skill runs the implementation in an isolated git worktree, commits section by section, and opens a draft PR so review can start immediately. ## Core Features & Use Cases - Worktree Isolation: Creates a plain git worktree under .claude/worktrees/<change-id> so your main checkout stays clean during implementation. - Iterative Commit Cadence: Delegates to a subagent running /opsx:apply, committing once per logical section of tasks.md after tests, lint, and typecheck pass. - Draft PR Scaffolding: Pushes once at the end and opens a draft PR via gh pr create --draft with a body linking the OpenSpec change and mirroring the tasks checklist. - Use Case: You have a change at openspec/changes/rotate-secrets-on-startup/ with proposal and tasks ready. Run the skill to get a feature branch with reviewable per-section commits and a draft PR, without touching your main working tree. ## Quick Start Ask the AI to run /flow-implement with your change-id, for example: implement the rotate-secrets-on-startup OpenSpec change in a worktree and open a draft PR.