What problem does it solve? Manually working a tracker issue from report to merged-quality pull request involves many error-prone steps: verifying the bug still exists, finding the root cause, implementing a fix with regression tests, opening a properly labeled PR, running review loops, and coordinating locks so no two agents duplicate work. This Skill orchestrates that entire pipeline autonomously from a single issue id or problem description. ## Core Features & Use Cases - Dual-route orchestration: Classifies each issue as a bug or feature request, then drives either the bug autofix chain (verify, root-cause, fix, open PR, auto-review, UI QA) or the feature route (spec writing, then spec implementation). - Concurrency-safe claim protocol: Uses a three-signal in-progress lock (assignee, label, claim comment) with stale-lock recovery, force-override transparency, and a continuous lock handed off from issue to PR so work is never observably unclaimed. - Isolated worktree execution: Creates a temporary git worktree off the base branch with sanitized branch names, never touching the user's primary checkout, and cleans up via a finally-style trap. - Use Case: Paste "fix issue 1234" or a free-form bug description; the Skill files the issue if needed, verifies the defect, implements and tests the fix in an isolated worktree, opens a labeled PR, runs the automated review loop, and reports the outcome with chaining reference lines. ## Quick Start Ask the agent to fix issue 1234 end to end, or paste a plain problem description and let it file, triage, fix, and open a reviewed pull request autonomously.