analyze-dependencies
Analyze project dependencies and evaluate architectural health. Trigger with "analyze dependencies", "detect circular dependencies", "architecture issues?",…
Display open Issues with priority ranking. Trigger with "show issues", "open issues?", "list issues", "create PR from issue".
$ npx -y skills add wasabeef/claude-code-cookbook --skill pr-issue --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pr-issueContext preview
The summary Claude sees to decide when to auto-load this skill.
Display open Issues with priority ranking. Trigger with "show issues", "open issues?", "list issues", "create PR from issue".
description: 'Display open Issues with priority ranking. Trigger with "show issues", "open issues?", "list issues", "create PR from issue".' allowed-tools: - Bash(gh issue *) - Bash(gh pr *)
Displays a prioritized list of open issues in the current repository.
# Request from Claude "Show a prioritized list of open issues"
# Get repository information gh repo view --json nameWithOwner | jq -r '.nameWithOwner' # Get open issue information and request from Claude gh issue list --state open --json number,title,author,createdAt,updatedAt,labels,assignees,comments --limit 30 "Organize the above issues by priority, including a 2-line summary for each issue. Generate URLs using the repository name obtained above"
Open Issues List (by Priority)
### High Priority
#number Title [labels] | Author | Time since opened | Comment count | Assignee
├─ Summary line 1
└─ Summary line 2
https://github.com/owner/repo/issues/number
### Medium Priority
(Similar format)
### Low Priority
(Similar format)**High Priority**
**Medium Priority**
**Low Priority**
# Get only issues with specific label gh issue list --state open --label "bug" --json number,title,author,createdAt,labels,comments --limit 30 # Filter with multiple labels (AND condition) gh issue list --state open --label "bug,high-priority" --json number,title,author,createdAt,labels,comments --limit 30
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…