What problem does it solve? Manually triaging, fixing, reviewing, and merging GitHub issues one by one is slow and error-prone. This Skill orchestrates a multi-agent workflow that scans open issues, fixes them in parallel inside isolated git worktrees, reviews each fix, and merges approved changes automatically. ## Core Features & Use Cases - Issue Scanning & Classification: Fetches open issues via the GitHub CLI, filters by issue number or label, and assigns priority (high/medium/low) based on labels and content. - Parallel Fixing in Isolated Worktrees: Spawns one sub agent per issue, each working in its own git worktree to avoid conflicts, enforcing root-cause fixes with TypeScript checks (npx tsc --noEmit). - Mandatory Review Gate: Every fix is reviewed and scored 1-10; only fixes scoring 7 or higher are approved for merging. - Use Case: Run the skill with the label "bug" to automatically fix all open bug issues, receive a structured report of fixed, skipped, and rejected issues, then confirm before pushing to remote. ## Quick Start Ask the assistant to run the github-issues-resolved skill with a label like "bug" or an issue number to automatically scan, fix, review, and merge those GitHub issues.