What problem does it solve? Scanning open GitHub issues one-by-one wastes API calls: fetching full details for every issue turns triage into an N+1 query problem. This Skill cuts GitHub API calls from N+1 to roughly 7 per round (~72% reduction) by separating cheap list scanning from expensive full hydration. ## Core Features & Use Cases - Pass 1 Lightweight Scan: Runs gh issue list --json number,title,labels,assignees --limit 100 and skips issues that are already assigned, blocked, done, or low-signal (e.g., [chore], [auto] titles). - Pass 2 Selective Hydration: Fetches full details (body, comments, state) only for issues surviving the filter, then applies normal triage logic. - Use Case: An autonomous triage agent scans a repository with 100 open issues each round; instead of 100+ API calls, it hydrates at most ~30% of issues, staying within rate limits while still catching actionable work. ## Quick Start Scan the open issues in this repository using the two-pass method and hydrate only the issues that pass the skip filters.