← スキル一覧に戻る

github-issue
by pkuppens
Duolingo successor. Learn a foreign language in a conversational way, with adaptive difficulty.
⭐ 1🍴 2📅 2026年1月25日
SKILL.md
name: github-issue description: Manage GitHub issues - fetch details, update descriptions, add comments, close issues. Use when working with GitHub issues, reviewing issue status, or tracking implementation progress. allowed-tools: Bash(gh:*), Read, Write
GitHub Issue Management
Manage GitHub issues via gh CLI.
Core Commands
# Fetch issue details
gh issue view <number> --json number,title,body,state,labels,comments
# Update description
gh issue edit <number> --body "$(cat <<'EOF'
Updated description...
EOF
)"
# Add comment
gh issue comment <number> --body "$(cat <<'EOF'
## Progress Update
**Status:** [analyzing|in_progress|blocked|ready_for_review]
- Point 1
- Point 2
EOF
)"
# Close issue
gh issue close <number> --reason completed
Comment Templates
Implementation Analysis:
## Implementation Analysis
**Already implemented:** [list]
**Test coverage:** [list]
**Still needed:** [list]
Completion Summary:
## Implementation Complete
PR: #<number>
**Changes:** [summary]
**Testing:** [how tested]
Best Practices
- Add comments to track progress
- Use structured format (headers, lists)
- Reference related PRs and issues
- Keep description current with requirements
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です