analyze-dependencies
Analyze project dependencies and evaluate architectural health. Trigger with "analyze dependencies", "detect circular dependencies", "architecture issues?",…
Efficiently respond to PR review comments. Trigger with "fix review comments", "address PR feedback", "implement review fixes", "respond to review".
$ npx -y skills add wasabeef/claude-code-cookbook --skill pr-fix --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pr-fixContext preview
The summary Claude sees to decide when to auto-load this skill.
Efficiently respond to PR review comments. Trigger with "fix review comments", "address PR feedback", "implement review fixes", "respond to review".
description: 'Efficiently respond to PR review comments. Trigger with "fix review comments", "address PR feedback", "implement review fixes", "respond to review".' allowed-tools: - Bash(gh *) - Read - Edit - Grep - Glob
Efficiently handle Pull Request review comments and achieve root cause resolution using a 3-stage error analysis approach.
# Retrieve and analyze review comments gh pr view --comments "Classify review comments by priority and create an action plan" # Detailed analysis of error-related comments gh pr checks "Analyze CI errors using a 3-stage approach to identify root causes" # Quality confirmation after fixes npm test && npm run lint "Fixes are complete - please check regression tests and code quality"
# Classify comments gh pr view 123 --comments | head -20 "Classify review comments into must/imo/nits/q categories and determine response order" # Collect error information npm run build 2>&1 | tee error.log "Identify the root cause of build errors and suggest appropriate fixes" # Verify fix implementation git diff HEAD~1 "Evaluate whether this fix appropriately addresses the review comments"
🔴 must: Required fixes ├─ Security issues ├─ Functional bugs ├─ Design principle violations └─ Convention violations 🟡 imo: Improvement suggestions ├─ Better implementation methods ├─ Performance improvements ├─ Readability enhancements └─ Refactoring proposals 🟢 nits: Minor points ├─ Typo fixes ├─ Indentation adjustments ├─ Comment additions └─ Naming refinements 🔵 q: Questions/confirmations ├─ Implementation intent verification ├─ Specification clarification ├─ Design decision background └─ Alternative solution consideration
**Required actions**
**Recommended actions**
1. **Comment analysis**: Classification by priority 2. **Fix plan**: Determining response order 3. **Phased fixes**: Critical → High → Medium → Low 4. **Quality confirmation**: Testing, linting, building 5. **Progress report**: Description of specific fixes
# Basic checks npm test npm run lint npm run build # Regression tests npm run test:e2e # Code quality npm run test:coverage
**Fix completion report**
@reviewer Thank you for your feedback. Fixes are complete: - [Specific fix details] - [Test results] - [Verification method]
**Technical decision explanation**
Implementation background: [Reason] Considered alternatives: [Options and decision rationale] Adopted solution benefits: [Advantages]
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…