What problem does it solve? Small changes like typos, link fixes, formatting, or minor style tweaks should not require a full design and build cycle, but applying them directly to the main branch risks breaking product contracts. This Skill provides a lightweight, isolated path for minor fixes that still enforces consistency checks and human approval. ## Core Features & Use Cases - Isolated Worktree Workflow: Creates a temporary tmp-quick-* git worktree so fixes never touch the main branch until approved. - Mandatory Drift Scan: Before committing, scans affected files against long-term product contracts (spec.md, decisions.md, PRODUCT-RULES.md, DESIGN.md) to detect required synchronization. - PM Approval Gate: Shows the full diff and waits for explicit approve / redo / cancel before committing and fast-forward merging into main. - Use Case: A PM notices a typo in a module spec and a broken link in the docs. Instead of launching the full design pipeline, they run a quick fix, review the drift scan output, approve the diff, and the change is merged to main with [quick-fix] commits. ## Quick Start Ask the assistant to run a quick fix with a one-line description such as fixing a typo in the documentation, then review the drift scan and approve the resulting diff.