address-review — community address-review, landing, community, ide skills

v1.0.0

About this Skill

Perfect for GitHub-focused Agents needing streamlined feedback management for data-driven projects. Address PR review feedback, verify independently, and re-request review

unbound-tools unbound-tools
[0]
[0]
Updated: 2/22/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 9/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
9/11
Quality Score
54
Canonical Locale
en
Detected Body Locale
en

Perfect for GitHub-focused Agents needing streamlined feedback management for data-driven projects. Address PR review feedback, verify independently, and re-request review

Core Value

Empowers agents to efficiently address review comments on GitHub PRs, utilizing !gh pr view and !gh api for comprehensive feedback analysis, and facilitating data-driven decision-making with unbound.tools.

Ideal Agent Persona

Perfect for GitHub-focused Agents needing streamlined feedback management for data-driven projects.

Capabilities Granted for address-review

Automating A/B landing page experiment feedback
Streamlining GitHub PR review comment management
Verifying suggestions for data-driven project improvements

! Prerequisites & Limits

  • Requires GitHub API access
  • Limited to unbound.tools and GitHub PRs

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is address-review?

Perfect for GitHub-focused Agents needing streamlined feedback management for data-driven projects. Address PR review feedback, verify independently, and re-request review

How do I install address-review?

Run the command: npx killer-skills add unbound-tools/landing/address-review. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for address-review?

Key use cases include: Automating A/B landing page experiment feedback, Streamlining GitHub PR review comment management, Verifying suggestions for data-driven project improvements.

Which IDEs are compatible with address-review?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for address-review?

Requires GitHub API access. Limited to unbound.tools and GitHub PRs.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add unbound-tools/landing/address-review. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use address-review immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

address-review

Install address-review, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Address Review Feedback

Address review comments on PR #$ARGUMENTS. Be adversarial about the feedback itself — verify that suggestions are correct before applying them.

PR Context

!gh pr view $ARGUMENTS
!gh api repos/{owner}/{repo}/pulls/$ARGUMENTS/comments --jq '.[] | "---\n\(.path):\(.line // .original_line)\n\(.body)\n"'
!gh pr view $ARGUMENTS --comments

Instructions

Step 1: Gather All Feedback

Read every review comment above. Categorize each piece of feedback:

  • Action Required — Reviewer flagged as blocking merge
  • Recommended — Reviewer suggested addressing before merge
  • Minor — Nits, style suggestions

Step 2: Independently Verify Each Finding

Do not blindly apply suggestions. For each piece of feedback:

  1. Read the file in question — Use Glob/Grep/Read to find the relevant file and understand the full context, not just the diff snippet.
  2. Assess whether the feedback is correct — Reviewers (including agent reviewers) can be wrong. Check:
    • Does the suggested change actually fix the issue identified?
    • Could the suggestion introduce a new bug or visual regression?
    • Is the reviewer missing context that makes the current code correct?
    • Does the suggestion align with project conventions in AGENTS.md?
  3. For visual feedback — Check out the branch, run npm run dev, verify rendering at mobile and desktop widths, check both variants (/start and /build).
  4. For security feedback — Take it seriously by default. Security suggestions should be applied unless you can clearly demonstrate they're wrong.

Step 3: Respond to Each Finding

For each piece of feedback, take one of these actions:

Apply — The feedback is correct. Make the change.

  • Edit the file
  • Run npm run dev and verify both variants render correctly
  • Note what was changed

Partially apply — The core insight is right but the suggested fix isn't quite right.

  • Implement a better fix that addresses the underlying concern
  • Explain why you deviated from the exact suggestion

Reject with justification — The feedback is incorrect or doesn't apply.

  • Explain clearly why the current code is correct
  • Reference AGENTS.md or project conventions to support your reasoning
  • Never reject feedback without a concrete justification

Escalate — You're unsure whether the feedback is valid.

  • Flag it to the human with the evidence for and against
  • Do not guess or silently skip

Step 4: Run Full Verification

After addressing all feedback:

  1. Run npm run dev and verify both variants render correctly at mobile and desktop widths
  2. Check TypeScript compilationnpx wrangler types && npx tsc --noEmit (Worker-side only)
  3. Test form submission if any API or form changes were made
  4. Spot-check your changes — Read through your own diff. Did you introduce any new issues while fixing the review feedback?
  5. Check sizing — If the fixes significantly expanded the PR, flag whether it should be split.

Step 5: Commit and Push

  • Commit fixes with clear messages linking to the review feedback: fix: Address review — <description>
  • Keep fix commits separate from each other when they address unrelated feedback (easier to review the re-review)
  • Push to the PR branch

Step 6: Post Summary and Re-request Review

Post a comment on the PR summarizing how each finding was addressed, then re-request review:

gh pr comment $ARGUMENTS --body "<summary>"
gh pr edit $ARGUMENTS --add-reviewer <reviewer>

Use this format for the summary:

markdown
1## Review Feedback Addressed 2 3| # | Finding | Action | Details | 4|---|---------|--------|---------| 5| 1 | <brief description> | Applied / Partially applied / Rejected | <what was done and why> | 6| 2 | ... | ... | ... | 7 8**Visual verification:** Both variants checked at mobile + desktop 9**New commits:** <list of fix commits>

For any rejected findings, provide the full justification in the Details column so the reviewer can evaluate your reasoning.

Related Skills

Looking for an alternative to address-review or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer