← スキル一覧に戻る

dashboard
by builtby-win
GitHub workflow automation skills for Claude Code - issue management, branching, PRs, and team coordination
⭐ 0🍴 0📅 2026年1月8日
SKILL.md
name: dashboard description: Show GitHub Issues dashboard - what everyone is working on, open PRs, and backlog
Work Dashboard
Show the current state of GitHub Issues and PRs for the project.
Instructions
Run these commands and format the output as a dashboard:
# Active worktrees (if project uses them)
# Example: pnpm worktree list
# Or: git worktree list
# Skip if project doesn't use worktrees
# Issues assigned to team members
gh issue list --assignee {username} --state open --json number,title,labels,createdAt
# Open PRs
gh pr list --state open --json number,title,author,labels,reviewDecision,headRefName
# Backlog (unassigned issues)
gh issue list --state open --json number,title,labels,createdAt | jq '[.[] | select(.assignees == [] or .assignees == null)]'
Note: Adjust assignee names based on your team. Get team members from your project's CLAUDE.md or GitHub settings.
Output Format
Present the dashboard like this:
## Active Worktrees (if applicable)
- Issue #5 (dark-mode) → port 4322 → http://localhost:4322
Server: running (PID 12345)
- Issue #10 (mobile-nav) → port 4323 → http://localhost:4323
Server: not running
## Your Work ({current-user})
- #5 Add dark mode [status:in-progress]
Branch: {PROJECT_PREFIX}/issue-5-dark-mode
{Worktree info if applicable}
## Team Member Work
- #{N} {Title} [status:in-progress]
Branch: {PROJECT_PREFIX}/issue-{N}-{slug}
{Worktree/PR info}
## Open PRs
- PR #{PR_NUM}: {Title} ({author}) - {Review status}
- PR #{PR_NUM}: {Title} ({author}) - Approved
## Backlog (unassigned)
- #{N} {Title}
- #{N} {Title}
Suggestion: Work on #{N} (oldest unassigned issue)
Details
- Show status labels in brackets:
[status:in-progress],[status:pr-ready] - For issues with PRs, show the PR number and review status
- For PRs, show: number, title, author, review decision (Approved/Changes requested/Review required)
- Detect current branch and highlight if it matches an issue
- Suggest the oldest unassigned issue for next work
- Skip worktree section if project doesn't use them
Variants
/work mine- Only show issues assigned to current user/work prs- Only show open PRs/work next- Just show the suggested next issue to work on
Configuration
In your project's CLAUDE.md, set:
## GitHub Workflow Configuration
PROJECT_PREFIX=your-project-name
## Team Members
- @username1
- @username2
Example configurations:
PROJECT_PREFIX=myapp- Team members list helps the skill know who to query for work status
スコア
総合スコア
70/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です