소스 정보
- 저장소
- 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-mine명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | github-mine |
| description | Show my assigned and mentioned GitHub items Use when this capability is needed. |
| metadata | {"author":"dtsong"} |
Show issues, PRs, and mentions assigned to or involving you.
/gh-mine # All my items
/gh-mine --issues # Only issues assigned to me
/gh-mine --prs # Only PRs I'm involved with
/gh-mine --reviews # PRs where my review is requested
/gh-mine --mentions # Where I'm mentioned
# Get authenticated user
GH_USER=$(gh api user --jq '.login')
# Issues assigned to me
gh issue list --assignee @me --state open --json number,title,labels,createdAt
# PRs I authored
gh pr list --author @me --state open --json number,title,state,reviews
# PRs where review requested
gh pr list --search "review-requested:@me" --json number,title,author
# Mentions
gh api search/issues --jq '.items' -f q="mentions:$GH_USER is:open"
Group by type and priority.
My GitHub Dashboard
User: @username
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📋 My Assigned Issues (5)
Priority: High
#456 Fix critical login bug
Labels: bug, priority-high
Assigned: 2 days ago
#458 Security vulnerability
Labels: security, priority-high
Assigned: 1 day ago
Priority: Normal
#460 Improve error messages
Labels: enhancement
Assigned: 3 days ago
#462 Documentation update
Labels: documentation
Assigned: 4 days ago
#465 Add unit tests
Labels: testing
Assigned: 1 week ago
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🔀 My Pull Requests (3)
Ready to merge:
#470 feat: Add dark mode
Approved by @reviewer1
CI: ✅ passing
In review:
#472 fix: Login validation
Review by @reviewer2 in progress
CI: ✅ passing
Needs work:
#468 refactor: Auth module
Changes requested by @reviewer1
CI: ✅ passing
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
👀 Reviews Requested (2)
#475 Add caching layer - by @user1
Files: 5 | +120 -45
Waiting: 4 hours
#477 Update dependencies - by @dependabot
Files: 2 | +50 -50
Waiting: 1 hour
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
💬 Recent Mentions (3)
#480 Bug in production
@maintainer mentioned you: "Can @username take a look?"
1 hour ago
#478 Feature discussion
@user2 mentioned you: "@username what do you think about..."
3 hours ago
#476 Code review comment
@reviewer replied to your comment
Yesterday
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📊 Summary
Issues assigned: 5
PRs authored: 3
Reviews pending: 2
Unread mentions: 3
Priority actions:
1. Merge ready PR #470: /gh-pr-merge 470
2. Address changes on PR #468: /gh-pr-respond 468
3. Complete reviews: /review-pr 475
My Assigned Issues
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
#456 Fix critical login bug
State: open
Labels: bug, priority-high
Created: 5 days ago
Updated: 2 days ago
Comments: 3
Latest:
@reporter (2 days ago): "Still happening in production"
Action: Needs attention
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
#458 Security vulnerability
State: open
Labels: security, priority-high
Created: 3 days ago
Updated: 1 day ago
Comments: 5
Latest:
@security-team (1 day ago): "Confirmed CVE-2025-1234"
Action: Critical - address immediately
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
[... more issues ...]
Total: 5 issues assigned to you
Reviews Requested From Me
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
#475 Add caching layer
Author: @user1
Branch: feat/caching → main
Files changed: 5
Additions: 120, Deletions: 45
Requested: 4 hours ago
Summary:
Adds Redis caching for API responses
Includes cache invalidation strategy
Quick links:
View: /gh-pr-status 475
Review: /review-pr 475
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
#477 Update dependencies
Author: @dependabot
Branch: dependabot/npm_and_yarn/... → main
Files changed: 2
Additions: 50, Deletions: 50
Requested: 1 hour ago
Summary:
Updates react from 18.2.0 to 18.3.0
Security patch included
Quick links:
View: /gh-pr-status 477
Approve: /gh-pr-merge 477 (if CI passes)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Total: 2 reviews pending
~/.claude/skills/github-workflow/scripts/my-items.sh
/gh-pr-status to check specific PR/gh-pr-respond to address PR comments/gh-pr-merge to merge ready PRs/review-pr to review requested PRsConverted and distributed by TomeVault — claim your Tome and manage your conversions.