← スキル一覧に戻る

issue-triage
by wildwasser
Multi-agent AI development templates for opencode
⭐ 1🍴 0📅 2026年1月20日
SKILL.md
name: issue-triage description: Triage and manage GitHub issues. Use when reviewing issues or planning work.
Triage Process
1. Review Issue
# List open issues
gh issue list
# View specific issue
gh issue view <number>
# List with labels
gh issue list --label "bug"
2. Validate Issue
For Bugs
- Can the issue be reproduced?
- Is there enough information?
- Is it a duplicate?
- Is it actually a bug (not user error)?
For Features
- Is the request clear?
- Does it align with project goals?
- Is it a duplicate?
- Is scope reasonable?
3. Apply Labels
# Add labels
gh issue edit <number> --add-label "bug,priority:high"
# Remove labels
gh issue edit <number> --remove-label "needs-triage"
Standard Labels
| Label | Description |
|---|---|
bug | Something isn't working |
enhancement | New feature request |
documentation | Docs improvement |
good-first-issue | Good for newcomers |
help-wanted | Extra attention needed |
duplicate | Already exists |
wontfix | Won't be addressed |
invalid | Not valid issue |
Priority Labels
priority:critical- Production down, security issuepriority:high- Major functionality brokenpriority:medium- Important but not urgentpriority:low- Nice to have
Size Labels
size:S- Small, < 1 daysize:M- Medium, 1-3 dayssize:L- Large, 3-5 dayssize:XL- Extra large, needs breakdown
4. Respond & Assign
# Add comment
gh issue comment <number> --body "Thanks for reporting! I can reproduce this."
# Assign
gh issue edit <number> --add-assignee @username
# Close as duplicate
gh issue close <number> --comment "Duplicate of #123" --reason "not planned"
# Close as completed
gh issue close <number> --comment "Fixed in #456"
5. Link to Project
# Add to project board
gh issue edit <number> --add-project "Project Name"
Triage Response Templates
Needs More Info
Thanks for reporting! To help us investigate, could you provide:
- Steps to reproduce
- Expected vs actual behavior
- Environment (OS, version, etc.)
Duplicate
Thanks for reporting! This appears to be a duplicate of #XXX.
I'm closing this issue, but please follow the linked issue for updates.
Won't Fix
Thanks for the suggestion! After consideration, we've decided not to
implement this because [reason]. Feel free to discuss further if you disagree.
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です