AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Github Pr Feedback

skill-mfmezger-ai-agent-dotfiles-github-pr-feedback · by mfmezger

Use this skill whenever the user asks to look at GitHub PR feedback, PR review comments, review bot output, Gemini/Claude review feedback, or pasted reviewer suggestions and wants a markdown table that separates what should be fixed from what does not need to be fixed. This skill should trigger for PR feedback triage, deciding whether review comments are actionable, and producing a concise markdo…

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

Install

$ agentstack add skill-mfmezger-ai-agent-dotfiles-github-pr-feedback

✓ 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-mfmezger-ai-agent-dotfiles-github-pr-feedback)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
21d 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 Github Pr Feedback? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

GitHub PR Feedback Triage

Turn GitHub pull request feedback into a concise, defensible markdown triage report. The goal is to help the user decide which comments require code changes and which can be safely declined, deferred, or answered without changing code.

Review Lens

Always keep the karpathy-guidelines skill in mind when judging PR feedback. Bias toward simple, surgical fixes with clear success criteria:

  • Do not accept feedback that adds speculative abstractions, broad refactors, or

configurability the PR does not need.

  • Do not reject feedback that identifies a concrete bug, unclear assumption, or

missing verification just because the fix is inconvenient.

  • Prefer the smallest code or documentation change that resolves the reviewer

concern.

  • Surface uncertainty directly in the reasoning instead of pretending the answer

is more certain than the evidence supports.

Prerequisites

  • Use gh when feedback must be fetched from GitHub.
  • gh must be installed and authenticated for live PR access.
  • Run bundled Python scripts with uv run when available. Use uvx only for

external Python command-line tools; this skill's local helper script should be run with uv run.

  • If the user pasted the feedback directly, do not fetch from GitHub unless they

ask you to verify the current PR state.

Input Sources

Prefer the most direct available input:

  1. Pasted feedback in the conversation.
  2. A PR URL or PR number provided by the user.
  3. The PR associated with the current branch.

If no PR or feedback is available, ask the user for either a PR URL/number or the feedback text.

Fetching GitHub Feedback

Prefer the bundled fetch script because it collects the PR summary, top-level comments, reviews, inline review comments, review thread resolution state, file list, and checks in one repeatable command.

Run the bundled fetch script with uv run:

uv run scripts/fetch_pr_feedback.py  --out /tmp/pr-feedback.json --summary

Examples:

# URL from the user
uv run scripts/fetch_pr_feedback.py https://github.com/OWNER/REPO/pull/123 --out /tmp/pr-feedback.json --summary

# PR number in the current repo
uv run scripts/fetch_pr_feedback.py 123 --out /tmp/pr-feedback.json --summary

# Current branch PR
uv run scripts/fetch_pr_feedback.py --out /tmp/pr-feedback.json --summary

# PR number in a different repo
uv run scripts/fetch_pr_feedback.py 123 --repo OWNER/REPO --out /tmp/pr-feedback.json --summary

Use the JSON payload as the source of truth for triage:

  • pr.comments: top-level PR comments
  • pr.reviews / pr.latestReviews: submitted review summaries
  • inline_comments: REST pull-review comments with diff hunks and URLs
  • review_threads: GraphQL review threads with isResolved state
  • checks: check-run summary, or an informational error when no checks exist

If the script fails, fall back to gh pr view, gh api .../pulls//comments, and the GraphQL reviewThreads query manually. If GitHub access fails, explain the blocker briefly and ask the user to paste the PR feedback. Do not fabricate comments.

Triage Rules

Classify each distinct problem, not each individual comment. Merge duplicate comments that point at the same underlying issue.

Use ✅ Yes (Should Be Fixed) when the feedback identifies:

  • A correctness bug, regression, broken build, failing test, or runtime error.
  • A security, privacy, data-loss, race-condition, or reliability risk.
  • Missing behavior required by the PR description, ticket, or existing contract.
  • A maintainability issue likely to confuse future changes or hide defects.
  • A small requested cleanup that is clearly valid and low-risk to apply.

Use ❌ No (Does Not Need To Be Fixed) when the feedback is:

  • Incorrect because it misreads the code or ignores existing behavior.
  • Already handled elsewhere in the PR.
  • Pure preference without a project convention or concrete benefit.
  • Out of scope for this PR and safer as a follow-up.
  • A speculative optimization without evidence or measurable impact.
  • A comment that only needs a written reply, clarification, or documentation

pointer rather than a code change.

When uncertain, prefer ✅ Yes only if there is a concrete user-facing, correctness, security, or maintainability reason. Otherwise mark ❌ No and explain what evidence would change the decision.

Required Output

Always produce exactly two markdown tables in this order:

  1. ## Does Not Need To Be Fixed
  2. ## Should Be Fixed

Each table must use these exact columns:

| Problem | Description | Should Be Fixed | Reasoning |
| --- | --- | --- | --- |

Use ❌ No for every real feedback row in Does Not Need To Be Fixed. Use ✅ Yes for every real feedback row in Should Be Fixed.

If a section has no entries, include one row that says there were no items:

| None | No PR feedback landed in this category. | ❌ No | No action needed. |

For an empty Should Be Fixed section, use:

| None | No PR feedback landed in this category. | ❌ No | No fixes identified. |

Keep rows concise:

  • Problem: short noun phrase, ideally with file/path if available.
  • Description: summarize the reviewer concern in one sentence.
  • Should Be Fixed: only ✅ Yes or ❌ No.
  • Reasoning: explain the decision, including scope, risk, and evidence.
  • Escape | characters inside table cells so the markdown table stays valid.

After the two tables, add a short ## Summary section with:

  • Count of ✅ Yes items.
  • Count of ❌ No items.
  • The highest-priority fix, if any.

Do not include a long raw dump of GitHub comments unless the user asks.

Decision Quality Checklist

Before finalizing the report:

  • Verify that every meaningful review comment is represented or merged into a

row.

  • Check resolved comments too, because they may still explain important context.
  • Separate "needs a code change" from "needs a reply".
  • Do not mark a comment as unnecessary just because it is inconvenient.
  • Do not mark a comment as required just because a reviewer wrote it.
  • Tie the reasoning to concrete code behavior, project conventions, or PR scope.

Example Output

Link to the PR: https://github.com/...

## Does Not Need To Be Fixed

| Problem | Description | Should Be Fixed | Reasoning |
| --- | --- | --- | --- |
| Rename helper | Reviewer suggested renaming `buildPayload` to `makePayload`. | ❌ No | The current name matches nearby helpers and the suggestion is stylistic without improving clarity. |

## Should Be Fixed

| Problem | Description | Should Be Fixed | Reasoning |
| --- | --- | --- | --- |
| Missing null guard in webhook handler | Reviewer noted that `event.user` can be absent for system events. | ✅ Yes | This can cause a runtime exception on valid webhook payloads, so the handler should guard before reading user fields. |

## Summary

- `✅ Yes`: 1 item.
- `❌ No`: 1 item.
- Highest priority: add the webhook null guard because it prevents a runtime failure.

Should i fix the should be fixed issues?

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.