What problem does it solve? Scanning open GitHub issues one-by-one wastes API calls when every issue is fully hydrated regardless of relevance. This Skill cuts GitHub API usage from N+1 calls to roughly 7 per round (about 72% fewer) by filtering issues with a cheap list query before fetching full details. ## Core Features & Use Cases - Lightweight Pass 1 Scan: Runs gh issue list with only number, title, labels, and assignees to cheaply survey up to 100 open issues. - Rule-Based Skip Filters: Skips issues that are already assigned, blocked, waiting externally, done, postponed, or match noisy title patterns like [chore] or [auto]. - Selective Pass 2 Hydration: Fully fetches body, comments, and state only for surviving issues, targeting hydration of 30% or fewer of the scanned list. - Use Case: An autonomous triage agent polling a busy repository each round can apply this pattern to avoid rate-limit exhaustion while still triaging every actionable issue. ## Quick Start Scan the open issues in this repository using the two-pass pattern and only fully hydrate the issues that pass the skip filters.