← スキル一覧に戻る

milestone-tracker
by joeczar
Unified memory system for AI coding assistants - code graph, docs, knowledge, workflow
⭐ 0🍴 0📅 2026年1月23日
SKILL.md
name: milestone-tracker description: Track GitHub milestone progress and issue completion. Use when user asks about milestone status, how many issues done, sprint progress, or completion percentage. allowed-tools: Bash, Read
Milestone Tracker Skill
Purpose
Fetch and summarize milestone progress when the user asks about completion status, remaining work, or sprint metrics. This is a read-only skill.
When to Use This
- User asks "milestone progress?"
- User asks "how many issues left?"
- User asks "completion percentage"
- User asks "what's left in the sprint?"
- User mentions milestone tracking
Commands
List All Milestones
gh api repos/joeczar/code-graph-mcp/milestones --jq '.[] | {number, title, open_issues, closed_issues, due_on, state}'
Get Specific Milestone
gh api repos/joeczar/code-graph-mcp/milestones/<number>
Get Issues in Milestone
gh issue list --milestone "<milestone-name>" --state all --json number,title,state,labels
Calculate Progress
Completion % = (closed_issues / (open_issues + closed_issues)) * 100
Current Milestones
| Milestone | Focus | Issues |
|---|---|---|
| M2: MCP Server Foundation | Server scaffold, basic tools | 7 |
| M3: Code Graph | Parse code, queries, MCP tools | 16 |
| M4: Documentation | Extract & link docs | 8 |
| M5: Knowledge Graph | Learnings, LLM extraction | 10 |
| M6: Semantic Search | Embeddings, hybrid search | 7 |
| M7: Workflow Checkpoint | Workflow state, resume | 6 |
| M8: Session Hooks & CLI | CLI, warmup/capture | 8 |
Output Format
## Milestone: <name>
**Progress:** X/Y issues (Z%)
**Due:** <date or "No due date">
### Progress Bar
[████████░░░░░░░░░░░░] 40% (8/20)
### By Status
- Done: <count>
- In Progress: <count>
- Not Started: <count>
### Recently Completed
- #X: <title>
- #Y: <title>
### Up Next (Open)
- #A: <title>
- #B: <title>
Progress Bar Generation
Generate visual progress:
# Calculate percentage
OPEN=$(gh api repos/joeczar/code-graph-mcp/milestones/<n> --jq '.open_issues')
CLOSED=$(gh api repos/joeczar/code-graph-mcp/milestones/<n> --jq '.closed_issues')
TOTAL=$((OPEN + CLOSED))
PCT=$((CLOSED * 100 / TOTAL))
# Generate bar (20 chars)
FILLED=$((PCT / 5))
EMPTY=$((20 - FILLED))
BAR=$(printf '█%.0s' $(seq 1 $FILLED))$(printf '░%.0s' $(seq 1 $EMPTY))
echo "[$BAR] $PCT% ($CLOSED/$TOTAL)"
Full Status Report
# Get all milestones with progress
gh api repos/joeczar/code-graph-mcp/milestones --jq '.[] | "\(.title): \(.closed_issues)/\(.open_issues + .closed_issues) (\(.closed_issues * 100 / ((.open_issues + .closed_issues) | if . == 0 then 1 else . end))%)"'
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です