Agent skill
issue-triage
Triage and analyze GitHub issues from iNavFlight/inav repository
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/issue-triage
SKILL.md
GitHub Issue Triage Skill
Systematically analyze and categorize GitHub issues from the iNavFlight/inav repository.
File Structure
claude/manager/issue-triage/
INDEX.md # Quick lookup: issue# -> category file
fetch_issues.py # Script to fetch and search issues
issues.json # Cached issues data from GitHub
readily-solvable.md # Issues ready to fix
needs-investigation.md
documentation.md
enhancement-simple.md
enhancement-complex.md
hardware-dependent.md
no-action.md # Won't fix, duplicates, already fixed
Quick Commands
Refresh Issue Cache
cd claude/manager/issue-triage
python3 fetch_issues.py --refresh
Fetch More Issues
python3 fetch_issues.py --pages 5 --refresh
View Specific Issue
python3 fetch_issues.py --issue 11156
Search Issues
python3 fetch_issues.py --search "GPS"
python3 fetch_issues.py --search "overflow"
List Cached Issues
python3 fetch_issues.py
Categories
| Category | File | Description |
|---|---|---|
| Readily Solvable | readily-solvable.md |
Clear problem, known solution |
| Needs Investigation | needs-investigation.md |
Promising, needs analysis |
| Documentation | documentation.md |
Docs fixes/improvements |
| Enhancement (Simple) | enhancement-simple.md |
Small feature additions |
| Enhancement (Complex) | enhancement-complex.md |
Major feature work |
| Hardware Dependent | hardware-dependent.md |
Needs specific hardware |
| No Action | no-action.md |
Won't fix, duplicates, etc. |
Workflow
- Refresh cache:
python3 fetch_issues.py --refresh - Review list for promising issues
- View details:
python3 fetch_issues.py --issue XXXXX - Add to INDEX.md with category link
- Add details to appropriate category file
Finding Readily Solvable Issues
Look for:
- Clear reproduction steps
- Isolated, specific problem
- No special hardware required
- Community consensus on behavior
- Small code changes
Avoid:
- Architecture changes needed
- Hardware-specific (can't test)
- Unclear requirements
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?