What problem does it solve? Turning a written implementation plan into a finished, verified pull request involves many error-prone steps: executing each plan step, running verification, writing the PR description, updating the changelog, and collecting review feedback. This Skill orchestrates that entire workflow so a plan ships as one complete PR with a returned URL. ## Core Features & Use Cases - Plan-to-PR execution: Reads a plan from docs/plans/..., implements each step in order via the /implement-from-spec skill, and commits per step without squashing. - Verification and compliance: Enforces CODING_RULES.md and UNIT_TESTING_STANDARDS.md, runs the plan's verification commands, and captures UI before/after screenshots when required. - PR authoring and review: Uses write-pr-description for the PR body, updates CHANGELOG.md via write-changelog, and spawns three review subagents (comprehensive-code-review, comprehensive-writing-cleanup, review-for-simplicity) before returning the PR URL. - Use Case: You have an approved plan at docs/plans/add-caching/plan.md with three step files. Invoke this Skill to implement all steps, run the test suite, open the PR, and receive the PR link with a verification summary. ## Quick Start Implement the plan at docs/plans/add-caching/plan.md end-to-end and open a pull request with the result.