Display GitHub pull requests across all repositories with status indicators and clickable links. Use when user asks to "show my PRs", "list my pull requests", "open my PRs", or wants to see their GitHub contributions.
/plugin marketplace add yanmxa/cc-plugins/plugin install git@cc-pluginsThis skill is limited to using the following tools:
scripts/show-prs.shDisplay all open pull requests authored by the current user across all repositories, grouped by repository with status indicators and clickable links.
Execute the PR Display Script: Run the show-prs.sh script located in the skill's scripts directory:
For your own PRs:
bash $CLAUDE_PLUGIN_ROOT/skills/my-prs/scripts/show-prs.sh
For PRs requiring your review:
bash $CLAUDE_PLUGIN_ROOT/skills/my-prs/scripts/show-prs.sh --require-review
The script automatically:
**Your Open PRs:**
**repo-owner/repo-name:**
👀 #123 - PR title (→ target-branch)
https://github.com/repo-owner/repo-name/pull/123
✅ #456 - Another PR title (→ main)
https://github.com/repo-owner/repo-name/pull/456
**another-org/another-repo:**
⚠️ #789 - PR with changes requested (→ main)
https://github.com/another-org/another-repo/pull/789
**Legend:**
- 👀 Needs review
- ✅ Approved
- ⚠️ Changes requested
- 🚧 Draft
gh search prs --author "@me" --state=open --limit 100
gh pr list --repo stolostron/multicluster-global-hub \
--author "@me" --state open \
--json number,title,url,baseRefName,reviewDecision,isDraft | \
jq -r '.[] | (if .isDraft then " 🚧" elif .reviewDecision == "APPROVED" then " ✅" elif .reviewDecision == "CHANGES_REQUESTED" then " ⚠️" else " 👀" end) + " #\(.number) - \(.title) (→ \(.baseRefName))\n \(.url)"'
This skill uses gh (GitHub CLI) with:
gh search prs - Find PRs across all repositoriesgh pr list - Get detailed PR information per repositoryjq - Format JSON output into readable textgh) to be installed and authenticatedThis skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.