code/address-pr-feedback/SKILL.md
Comprehensively addresses PR feedback by fetching all comments, deploying parallel agents for critical analysis of each suggestion, making implementation decisions, then systematically implementing fixes with incremental commits and browser validation. Use when you need to systematically process and implement all PR review feedback with due diligence validation.
npx skillsauth add mostafa-drz/claude-skills address-pr-feedbackInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Comprehensive PR review workflow that fetches all comments, uses parallel agents for critical analysis, makes implementation decisions, then systematically addresses valid concerns with incremental commits and browser validation.
On startup, use Read to load ~/.claude/skills/address-pr-feedback/preferences.md. If file doesn't exist, use defaults.
On startup, use Bash to detect: current git branch, git status, repo name, and check for localhost development server. Skip any that fail.
Check $ARGUMENTS:
help → display help then stopconfig → interactive setup then stopreset → delete preferences file, confirm, stopAddress PR Feedback — Systematic PR review implementation with agent validation
Usage:
/address-pr-feedback <pr-number|url> Process all PR feedback
/address-pr-feedback #123 --dry-run Analyze only, no changes
/address-pr-feedback #123 --auto-push Skip push confirmation
/address-pr-feedback #123 --no-browser Skip browser validation
/address-pr-feedback config Set preferences
/address-pr-feedback reset Clear preferences
/address-pr-feedback help This help
Examples:
/address-pr-feedback #123 Full workflow for PR 123
/address-pr-feedback https://github.com/owner/repo/pull/456
/address-pr-feedback #789 --dry-run --no-browser
Current preferences:
localhost-port: 3000 (or "auto-detect")
browser-validation: enabled (or "disabled")
auto-commit: true (or "false")
agent-analysis: parallel (or "sequential")
Use AskUserQuestion to collect:
Save responses to ~/.claude/skills/address-pr-feedback/preferences.md.
Delete ~/.claude/skills/address-pr-feedback/preferences.md and confirm: "Preferences cleared. Using defaults."
If no preferences file exists, show:
First time using /address-pr-feedback? Run
/address-pr-feedback configto set defaults, or just continue with sensible defaults.
Then proceed with the workflow.
$ARGUMENTSgh pr view <number> --repo <repo> --json comments,files,title,body to fetch all dataCreate table with all comments:
| # | Author | File:Line | Comment | |---|--------|-----------|---------| | 1 | reviewer1 | src/app.ts:42 | This function could be optimized... | | 2 | claude | README.md:15 | Missing installation steps |
Display table to user for visibility.
For each comment row:
Agent with specific analysis promptCreate enhanced table:
| # | Author | File:Line | Comment | Agent Opinion | Implementation Effort | |---|--------|-----------|---------|---------------|---------------------| | 1 | reviewer1 | src/app.ts:42 | This function... | Valid concern, performance impact | Medium - refactor needed | | 2 | claude | README.md:15 | Missing steps | Critical for users | Low - add 3 lines |
Review agent analysis and decide what to address:
| # | Action | Reasoning | Change Summary | |---|--------|-----------|---------------| | 1 | ✅ Address | Performance critical, user-facing | Refactor function, add caching | | 2 | ✅ Address | Documentation gap blocks users | Add installation section | | 3 | ❌ Skip | Edge case, minimal value | N/A |
Ask user to confirm the implementation plan before proceeding.
For each ✅ item:
npm run typecheck or equivalentgit add <specific-files> and git commit -m "fix: <specific-issue>"Stop and ask user if any change seems complex or risky.
| Item | Status | Files Changed | Commit | |------|--------|---------------|--------| | Function optimization | ✅ Done | src/app.ts | abc1234 | | README updates | ✅ Done | README.md | def5678 |
For each ✅ addressed item with a specific comment ID:
gh api repos/<org>/<repo>/pulls/<pr>/comments --method POST --field body="✅ **FIXED** in commit [SHA](link)" --field in_reply_to=<comment_id>git log --oneline -n <count> of new commits--auto-push flag used)git push origin <current-branch>--dry-run - Stop after step 5 (implementation decisions), don't make changes--auto-push - Skip final push confirmation in step 8--no-browser - Skip browser validation in step 6, only run syntax checks--dry-run to analyze first, then implement with full visibilitydevelopment
--- name: triage-board description: >- Generates a structured triage artifact from the current conversation's findings — a self-contained Desktop folder with a JSON Schema, schema-conformant report.json, prose markdown, and a single-file HTML viewer. Viewer ships with MD / CSV / JSON download buttons in the header and a per-finding "Copy as Markdown" action that produces a GitHub/Linear/Notion-ready ticket block. Stateless — triage state lives in the user's ticket system, not in the
development
Runs a beginner-mind end-to-end UI audit of any running app — local dev server, staging, production, or a specific URL. Drives Chrome through every interactive element on the target surface, collects structured findings (severity, category, where, symptom, impact, repro, triage), and hands the result off to `/triage-board` which produces the Desktop folder (schema + JSON + Markdown + single-file HTML viewer with MD/CSV/JSON exports and a per-finding Copy as Markdown button). Use when you want fresh-eyes verification of a feature, page, modal, flow, branch, or whole app — before shipping, before review, before a demo, or any time the UI deserves a careful poke.
development
Reviews the user's past Claude Code conversations from a wellbeing perspective — sentiment, tone, emotional arc, recurring patterns — and generates a supportive, science-grounded report in both Markdown and HTML. Default lookback is 48 hours across all projects. Uses recognised emotion frameworks (Plutchik, Ekman, Russell's circumplex, Pennebaker linguistic markers) and cites the science behind every observation. Learns the user's baseline tone over time so future reports flag genuine shifts, not noise. Use when the user asks for an emotional/wellbeing recap, mood check, sentiment review, or wants to understand their own ups and downs across recent work sessions.
development
--- name: workflow-advisor description: >- Analyzes recent Claude Code conversations and local Claude state (skills, settings, memory files, CLAUDE.md), researches the latest Claude Code features and best practices online, and suggests one workflow improvement at a time with reasoning and a concrete action item. Can save accepted suggestions to memory for tracking. Use when you want to discover underused Claude Code features, improve your development workflow, stay current with the lat