소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 5월 11일 15:30
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill github-triage명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | github-triage |
| description | Batch label and prioritize GitHub issues Use when this capability is needed. |
| metadata | {"author":"dtsong"} |
; & | $ \ \ < >`).owner/repo format with alphanumeric characters and hyphens only.Review and triage unlabeled or unassigned issues efficiently.
/gh-triage # Triage unlabeled issues
/gh-triage --unlabeled # Show only unlabeled issues
/gh-triage --unassigned # Show unassigned issues
/gh-triage --stale # Show issues with no activity >30 days
/gh-triage --all # Full triage dashboard
# Get unlabeled open issues
gh issue list --state open --label "" --json number,title,body,createdAt
# Get unassigned issues
gh issue list --state open --assignee "" --json number,title,labels
# Get stale issues (no activity in 30 days)
gh issue list --state open --json number,title,updatedAt | \
jq '[.[] | select(.updatedAt < (now - 30*24*60*60 | todate))]'
For each issue, analyze and suggest:
# Add labels
gh issue edit 123 --add-label "bug,priority-high"
# Assign
gh issue edit 123 --add-assignee "@username"
# Close as duplicate
gh issue close 123 --comment "Duplicate of #456" --reason "not planned"
# Close as stale
gh issue close 123 --comment "Closing due to inactivity. Please reopen if still relevant."
Issue Triage Dashboard
Repository: owner/repo
Open issues: 47
Needs triage: 12
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
UNLABELED ISSUES (5)
#456 - Login fails on mobile
Created: 3 days ago by @user1
Body: "When I try to log in on my iPhone, the form..."
Analysis:
Type: Bug (mobile-specific issue)
Priority: High (blocks users)
Similar: None found
Suggested actions:
- Add labels: bug, mobile, priority-high
- Assign: @mobile-team
[Apply] [Skip] [View Full]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
#457 - Add dark mode
Created: 5 days ago by @user2
Body: "Would be great to have a dark theme..."
Analysis:
Type: Feature Request
Priority: Medium (enhancement)
Similar: #123 (open), #234 (closed - wontfix)
Suggested actions:
- Add labels: enhancement, ui
- Consider: Close as duplicate of #123?
[Apply] [Duplicate of #123] [Skip]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
STALE ISSUES (3)
#234 - Feature request from 6 months ago
Last activity: 45 days ago
Status: No response from author
Suggested action: Close as stale
[Close as Stale] [Ping Author] [Keep Open]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Summary:
Triaged: 8 issues
Labeled: 5
Closed: 2 (duplicates)
Closed: 1 (stale)
For fast bulk triage:
Quick Triage - Unlabeled Issues
#456 Login fails on mobile [bug] [enhancement] [question] [skip]
#457 Add dark mode [bug] [enhancement] [question] [skip]
#458 Documentation unclear [bug] [enhancement] [question] [skip]
#459 Performance issue [bug] [enhancement] [question] [skip]
Selected labels will be applied.
Type number to view issue details.
Claude analyzes issue content to suggest labels:
| Content Pattern | Suggested Label |
|---|---|
| "doesn't work", "broken", "error" | bug |
| "would be nice", "feature", "add" | enhancement |
| "how do I", "question", "help" | question |
| "docs", "documentation", "readme" | documentation |
| "slow", "performance", "memory" | performance |
| "security", "vulnerability", "CVE" | security |
Priority is suggested based on:
| Factor | Priority |
|---|---|
| Blocks core functionality | critical |
| Affects many users | high |
| Has workaround | medium |
| Nice to have | low |
| Outdated/stale | close candidate |
When analyzing issues, Claude checks for:
Potential duplicate detected!
#456: Login fails on mobile
May be duplicate of:
#234 (open): Mobile login issues
#123 (closed): iOS login bug
Actions:
[Close as duplicate of #234]
[Link to #234]
[Keep separate]
Apply same action to multiple issues:
# Label multiple issues
gh issue edit 456 457 458 --add-label "needs-investigation"
# Close multiple stale issues
for issue in 123 234 345; do
gh issue close $issue --comment "Closing stale issue"
done
/gh-issue create for new issues/gh-mine to see your assigned issues/gh-health for overall repository healthConverted and distributed by TomeVault — claim your Tome and manage your conversions.