← Back to list

issue-fetcher
by rollercoaster-dev
Monorepo for Rollercoaster.dev OpenBadges ecosystem - shared packages, applications, and documentation
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
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"
Score
Total Score
55/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
○Issue管理
オープンIssueが50未満
0/5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon