Fetch and analyze GitHub issues from the monorepo. Use when user asks about issues, what's blocking, issue status, dependencies, or wants to see issue details.
Installation
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
skills listSkill Instructions
name: issue-fetcher description: Fetch and analyze GitHub issues from the monorepo. Use when user asks about issues, what's blocking, issue status, dependencies, or wants to see issue details. allowed-tools: Bash, Read, Grep, Glob
Issue Fetcher Skill
Purpose
Automatically fetch and summarize GitHub issues when the user asks about issue status, blockers, or dependencies. This is a read-only skill for information gathering.
When Claude Should Use This
- User asks "show me issue #X"
- User asks "what's blocking?"
- User asks "what issues are open?"
- User asks "what depends on this?"
- User mentions issue numbers in context
- User asks about sprint/milestone progress
Instructions
Fetch Single Issue
gh issue view <number> --json title,body,state,labels,milestone,assignees
List Issues
# All open issues
gh issue list --state open
# By milestone
gh issue list --milestone "OpenBadges Badge Generator"
# By label
gh issue list --label "type:feature"
Check Dependencies
Look for "depends on", "blocks", "after #X" in issue bodies:
gh issue view <number> --json body | jq -r '.body'
Output Format
Summarize findings clearly:
## Issue #X: <title>
**Status:** Open/Closed
**Labels:** label1, label2
**Milestone:** <milestone>
**Summary:** <1-2 sentence description>
**Dependencies:**
- Depends on: #Y, #Z
- Blocks: #A, #B
Repository Context
- Owner:
rollercoaster-dev - Repo:
monorepo - Project Board: #11 "Monorepo Development"
More by rollercoaster-dev
View allQuery the code graph for callers, dependencies, and blast radius. Use when you need to understand code relationships, find what calls a function, determine impact of changes, or explore the codebase structure.
Manage session lifecycle, learning extraction, and context metrics. Use when starting/ending sessions, analyzing workflows for learnings, querying knowledge graph, or checking session metrics.
Manage workflow checkpoints for issue tracking. Use when starting work on an issue, logging actions, logging commits, changing workflow phase, or checking workflow status during /work-on-issue or /auto-issue workflows.
Manage GitHub Project board items - add issues, update status, move between columns. Use when user asks to add issues to board, change status, or organize the project.