AgentStack
SKILL verified MIT Self-run

Resolving Pr Issues

skill-joaquimscosta-arkhe-claude-plugins-resolving-pr-issues · by joaquimscosta

>

No reviews yet
0 installs
17 views
0.0% view→install

Install

$ agentstack add skill-joaquimscosta-arkhe-claude-plugins-resolving-pr-issues

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README — it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-joaquimscosta-arkhe-claude-plugins-resolving-pr-issues)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
27d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Resolving Pr Issues? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Multi-Agent PR Issue Resolver

Resolve review suggestions using parallel verification and confidence scoring.

Core Principle: Never assume a review comment is correct. Verify every suggestion against actual code before acting.

Input Detection

Detect input mode from $ARGUMENTS:

  • PR mode: argument is a number (123) or contains github.com/starts with http — use gh API
  • File mode: argument contains / or .md or file exists on disk — parse findings from file
  • No argument: show usage hint and stop

Phase 1 — Context Gathering

PR mode — launch 2 parallel Haiku agents:

Agent A — PR Metadata: Run gh pr view $ARGUMENTS --json number,title,body,baseRefName,headRefName,state,author,reviewRequests,statusCheckRollup and gh pr diff $ARGUMENTS. Return: PR summary, base/head branches, CI status, files changed.

Agent B — Comment Extraction: Fetch all review comments using both endpoints:

  • Inline review comments: gh api repos/{owner}/{repo}/pulls/{pr}/comments
  • General issue comments: gh api repos/{owner}/{repo}/issues/{pr}/comments

Return structured list: comment ID, author, type (inline/general), file:line (if inline), body text, resolved status, whether it contains a suggestion code block.

File mode — launch 1 Haiku agent:

Parse the review report file. Extract each finding: description, file:line, category, suggested fix. Detect format from review/skills/code-review/ report template or other common review formats.

Skip conditions: If no unresolved comments/findings exist, report "Nothing to resolve" and stop.

Phase 2 — Parallel Verification

For each unresolved comment/finding, launch a parallel Sonnet agent (batched in groups of 5):

Each agent receives: the comment text, 50 lines of file context around the referenced line, the PR diff (or current branch diff in file mode), and the PR description.

Each agent returns:

Verdict: CONFIRMED | FALSE-POSITIVE | AMBIGUOUS
Category: Blocker | Bug | Code Quality | Style | Question
Confidence: 0-100
Evidence: {what was checked and found}
Suggested resolution: {specific code change or response text}

See [WORKFLOW.md](WORKFLOW.md) for agent prompt template and false positive filtering rules.

Phase 3 — Triage Report

Filter findings scoring below 80. Present a structured report:

## Review Issue Triage — {repo} PR #{number}
{N} comments analyzed, {M} actionable

### CONFIRMED ({count})
| # | Comment | File:Line | Category | Confidence | Action |
|---|---------|-----------|----------|------------|--------|
| 1 | {summary} | src/auth.ts:45 | Bug | 92 | Fix: add null check |

### FALSE POSITIVE ({count})
| # | Comment | File:Line | Confidence | Reason |
|---|---------|-----------|------------|--------|
| 2 | {summary} | src/api.ts:12 | 15 | Handled by framework |

### AMBIGUOUS ({count})
| # | Comment | File:Line | Options |
|---|---------|-----------|---------|
| 3 | {summary} | src/db.ts:78 | Option A: refactor / Option B: keep + comment |

User approval gate: Present the report and wait for the user to approve, modify, or reject the resolution plan before proceeding. For AMBIGUOUS items, let the user choose. For suggestions offering multiple options, present all and let the user decide.

Phase 4 — Apply Changes

Execute the approved plan:

  1. PR mode: gh pr checkout $ARGUMENTS; File mode: use current branch
  2. For each approved fix (priority order: Blockers > Bugs > Code Quality > Style):
  • Edit the code as planned
  • Run targeted tests to verify the fix
  • Confirm no regressions in related functionality
  • Commit immediately: fix(scope): description — addresses review comment on [topic]
  1. If tests fail, investigate root cause — do not skip or force-pass

See [WORKFLOW.md](WORKFLOW.md) for commit message format and priority ordering.

Phase 5 — Update PR

PR mode only (skip entirely in file mode):

  1. Push commits to the PR head branch
  2. Reply to each comment using the correct mechanism:
  • Inline review comments: gh api repos/{owner}/{repo}/pulls/{pr}/comments/{id}/replies -f body="..."
  • General PR comments: post a single consolidated response with anchor links: ### Re: [Finding title](#issuecomment-{id})
  1. Resolution status formats:
  • Resolved: "Addressed in commit abc1234 — [brief description]"
  • False positive: evidence-based explanation (see [WORKFLOW.md](WORKFLOW.md) for template)
  • Deferred: "Created follow-up issue #xyz — [reason]"
  1. Re-request reviews: gh pr edit $ARGUMENTS --add-reviewer

Confidence Scoring Rubric

| Score | Meaning | |-------|---------| | 0 | False positive — reviewer misread the code or concern doesn't apply | | 25 | Plausible but likely misunderstanding, unable to verify | | 50 | Valid observation but nitpick or style preference | | 75 | Real issue, important, directly impacts functionality | | 100 | Critical bug or security issue confirmed by evidence |

Threshold: Filter out findings below 80.

Resources

  • [WORKFLOW.md](WORKFLOW.md) — Agent prompt templates, false positive rules, scoring details, reply formats
  • [EXAMPLES.md](EXAMPLES.md) — End-to-end orchestration examples for PR and file modes
  • [TROUBLESHOOTING.md](TROUBLESHOOTING.md) — Common issues with gh CLI, comment API, and multi-agent pipeline

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.