pr-dashboard
Open a GitHub PR dashboard in the browser. Use when the user asks to see their pull requests, open the PR dashboard, show PRs for a date range, or check PR status. Trigger phrases include "show my PRs", "open PR dashboard", "pull request dashboard".
npx skills add github/awesome-copilot --skill pr-dashboard --agent copilot
Same command for any agent — swap --agent for claude-code, codex, cursor.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# PR Dashboard Generates and opens a GitHub PR dashboard in the browser for a given date range and role filter. **Prerequisites:** GitHub CLI (`gh`) must be installed and authenticated (`gh auth login`). ## What to do Find the CLI script bundled with this skill and run it: ```bash SKILL_SCRIPT=$(find ~/.copilot -name "pr-dashboard-cli.mjs" -path "*/pr-dashboard/scripts/*" 2>/dev/null | head -1) node "$SKILL_SCRIPT" "<query>" "<role>" ``` - `<query>`: the date range the user specified (default: `last 7 days`) - `<role>`: one of `Authored by me`, `Requested reviews`, `Assigned to me`, `All` (default: `Authored by me`) ## Parsing the user's request Extract the date range and role from the user's message. Examples: | User says | query | role | |---|---|---| | show my PRs | `last 7 days` | `Authored by me` | | show my PRs last 2 weeks | `last 2 weeks` | `Authored by me` | | PR dashboard this month reviews | `this month` | `Requested reviews` | | PR dashboard march 2026 assigned | `march 2026` | `Assigned to me` | | show all PRs last 30 days | `last 30 days` | `All` | **Role keyword mapping:** - "my PRs", "authored", "I wrote" → `Authored by me` - "reviews", "review requested", "reviewin
- What to do
- Parsing the user's request
- Supported date range formats
- After running
node "$SKILL_SCRIPT" "<query>" "<role>"
What does the pr-dashboard skill do?
Open a GitHub PR dashboard in the browser. Use when the user asks to see their pull requests, open the PR dashboard, show PRs for a date range, or check PR status. Trigger phrases include "show my PRs", "open PR dashboard", "pull request dashboard".
How do I install it?
Run `npx skills add github/awesome-copilot --skill pr-dashboard --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From github/awesome-copilot, a repository with 37,432 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.