pr-comment

Guides users through a structured PR review workflow from UNDERSTAND to DONE.

Updated Jan 4, 2026
One-click install
npx skills add https://github.com/c-daly/agent-swarm --skill pr-comment
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: pr-comment
Source: https://github.com/c-daly/agent-swarm/tree/main/skills/pr-comment
Command: npx skills add https://github.com/c-daly/agent-swarm --skill pr-comment

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill guides engineers to understand PR review feedback before implementing changes, reducing misinterpretations and rework.

Core Features & Use Cases

  • Understand and articulate reviewer concerns
  • Step-wise workflow from UNDERSTAND to DONE with clear phase transitions
  • CLI-based commands to start, check status, advance, understand, verify, and push changes in a PR review context

Quick Start

Use the pr-comment workflow to start a review session: python3 lib/pr_comment_workflow.py start "This function is unclear" 101 python3 lib/pr_comment_workflow.py status python3 lib/pr_comment_workflow.py understand "Summarize reviewer concern" "Identify problematic area in code" python3 lib/pr_comment_workflow.py advance python3 lib/pr_comment_workflow.py verify 1 1 python3 lib/pr_comment_workflow.py advance

Frequently Asked Questions about pr-comment

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I structure a PR review workflow to understand feedback before making fixes?

A PR review workflow guides you through phases from understanding reviewer concerns to implementing fixes. Start with the pr-comment workflow using Python commands to capture feedback, articulate the specific issue, verify your understanding, and track progress through UNDERSTAND, FIX, VERIFY, and DONE phases.

What's the best way to avoid misinterpreting code review comments?

Before implementing changes, use structured steps to understand and summarize the reviewer's concern, identify the problematic code area, and verify your interpretation matches their intent. This reduces rework by ensuring alignment before you start coding.

Can I automate a step-by-step code review process with CLI commands?

Yes. The pr-comment workflow provides CLI commands to start review sessions, check status, advance through phases, document your understanding, and verify fixes. Commands run via Python 3 with no external dependencies beyond the standard library.

Do I need special tools to track PR review progress and document concerns?

No. The workflow uses a Python script and standard CLI commands to track phases, record reviewer feedback, log your understanding, and manage status—all within your Git repository without external dependencies or third-party services.

How does the PR review workflow handle multiple reviewer concerns in one pull request?

The workflow tracks each concern individually with status commands and phase transitions. You can advance through understanding, fixing, and verification for each item, maintaining a clear record of which concerns have been addressed and which require attention.

What happens if I misunderstand a reviewer's concern during the workflow?

The workflow includes a verification phase where you test your fix and confirm it addresses the original concern. If misalignment is found, you can loop back through the understand and fix phases to clarify and correct before marking the review complete.