What problem does it solve? It automates the end-to-end flow of picking up a reviewed GitHub issue, implementing it safely in an isolated git worktree, verifying build/lint/tests, and opening a pull request linked back to the issue—without touching your main working directory. ## Core Features & Use Cases - Issue Selection & Claiming: Finds the oldest open issue labeled reviewed (skipping ones blocked by open dependencies) and marks it with a WIP label to prevent duplicate work across sessions or agents. - Isolated Worktree Development: Creates a git worktree on a conventional branch (feat/, fix/, etc.) so the main checkout and branch stay untouched. - Verified PR Creation: Requires build, lint, and tests to pass before opening a PR that includes Closes #<issue-number> for automatic issue closure. - Use Case: Tell your agent "implement the reviewed issues" and it will pick the oldest unblocked one, write tests first, implement the fix, run the full verification suite, and hand you a ready-to-review PR. ## Quick Start Implement the oldest reviewed GitHub issue in a worktree, run all tests, and open a linked pull request.