analyze-dependencies
Analyze project dependencies and evaluate architectural health. Trigger with "analyze dependencies", "detect circular dependencies", "architecture issues?",…
Display open PRs with priority ranking. Trigger with "show PRs", "list pull requests", "open PRs?", "PRs waiting for merge?".
$ npx -y skills add wasabeef/claude-code-cookbook --skill pr-list --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pr-listContext preview
The summary Claude sees to decide when to auto-load this skill.
Display open PRs with priority ranking. Trigger with "show PRs", "list pull requests", "open PRs?", "PRs waiting for merge?".
description: 'Display open PRs with priority ranking. Trigger with "show PRs", "list pull requests", "open PRs?", "PRs waiting for merge?".' allowed-tools: - Bash(gh pr list *)
Displays a prioritized list of open PRs in the current repository.
# Request from Claude "Show a prioritized list of open PRs"
# Get repository information gh repo view --json nameWithOwner | jq -r '.nameWithOwner' # Get open PR information and request from Claude gh pr list --state open --draft=false --json number,title,author,createdAt,additions,deletions,reviews --limit 30 "Organize the above PRs by priority, including a 2-line summary for each PR. Generate URLs using the repository name obtained above"
Open PRs List (by Priority)
### High Priority
#number Title [Draft/DNM] | Author | Time since opened | Approved count | +additions/-deletions
├─ Summary line 1
└─ Summary line 2
https://github.com/owner/repo/pull/number
### Medium Priority
(Similar format)
### Low Priority
(Similar format)**High Priority**
**Medium Priority**
**Low Priority**
A collection of commands, roles, and automation scripts for Claude Code. Automate your workflow without unnecessary confirmations, allowing you to focus on what matters.
Repo: wasabeef/claude-code-cookbook
Analyze project dependencies and evaluate architectural health. Trigger with "analyze dependencies", "detect circular dependencies", "architecture issues?",…
Performance analysis based on Core Web Vitals with UX scoring. Trigger with "analyze performance", "improve speed", "check Core Web Vitals", "page speed",…
Verify information accuracy against codebase and documentation. Trigger with "is this correct?", "fact check", "verify this", "is this accurate?".
Evaluate and improve AI prompt quality. Trigger with "check this prompt", "evaluate prompt quality", "improve this prompt".
Generate commit messages from staged changes. Trigger with "suggest commit message", "generate commit message", "what should the commit say?", "write commit…