symphony-pr-feedback

symphony-pr-feedback is a skill for Claude Code, Codex from anantjain-xyz/symphony-rust. It costs 57 tokens per session (723 once invoked), scanned A, a copy of symphony-pr-feedback, MIT.

A pull-request review checker that gathers comments and review decisions from all of a GitHub pull request's feedback channels.

In plain words
What is it for?
It helps inspect paginated top-level comments, inline comments, approval or change-request reviews, and manual QA notes before moving the work to review.
Why use it?
It prevents actionable feedback from being missed when comments are spread across the main discussion, line-specific reviews, and review states.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps inspect paginated top-level comments, inline comments, approval or change-request reviews, and manual QA notes before moving the work to review.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anantjain-xyz/symphony-rust/pr-feedback
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add anantjain-xyz/symphony-rust --skill pr-feedback
Clone the repo
git clone --depth 1 https://github.com/anantjain-xyz/symphony-rust

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for symphony-pr-feedback

README.md
[![agentmods](https://agentmods.dev/badge/skills/anantjain-xyz/symphony-rust/pr-feedback/github.svg)](https://agentmods.dev/skills/anantjain-xyz/symphony-rust/pr-feedback)
Your own site
<a href="https://agentmods.dev/skills/anantjain-xyz/symphony-rust/pr-feedback"><img src="https://agentmods.dev/badge/skills/anantjain-xyz/symphony-rust/pr-feedback/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for symphony-pr-feedback

Your own site · 80×15
<a href="https://agentmods.dev/skills/anantjain-xyz/symphony-rust/pr-feedback"><img src="https://agentmods.dev/badge/skills/anantjain-xyz/symphony-rust/pr-feedback.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 723 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.00723
Opus 5 $0.00028 $0.00362
Sonnet 5 $0.00011 $0.00145
Haiku 4.5 $0.00006 $0.00072

Measured 9d ago against content hash 00198ff9cc0f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

symphony-pr-feedback scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to symphony-pr-feedback — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

src-tauri/assets/skills/pr-feedback/SKILL.md · 71 lines

How it starts

The opening of the file, as written. The whole thing — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PR feedback sweep

When to run

  • Before transitioning the issue to In Review for the first time.
  • After every change prompted by review (push → reviewer reacts → repeat).
  • When a Todo redispatch lands on a PR that already has comments — sweep before doing new work.

Channels

Reviewer feedback arrives across three channels — gather all three:

  1. Top-level PR comments (issue thread):
    pr=$(gh pr view --json number -q .number)
    repo=$(gh repo view --json nameWithOwner -q .nameWithOwner)
    gh api --paginate "repos/${repo}/issues/${pr}/comments"
    
  2. Inline review comments (line-anchored):
    gh api --paginate "repos/${repo}/pulls/${pr}/comments"
    
  3. Review states (approved / changes requested / commented):
    gh api --paginate "repos/${repo}/pulls/${pr}/reviews"
    

--paginate is mandatory: GitHub REST list endpoints page at 30 by default, so a busy PR can silently hide later comments and trick the sweep into declaring "no actionable feedback" when there is.

The Manual QA Plan comment, when present, sharpens UI/runtime coverage — read it before transitioning.

Resolution rules

Treat every actionable comment (human or bot, top-level or inline) as blocking until one of these is true:

  • Code/tests/docs updated to address it. Push the fix, then reply where the comment lives (inline reply for inline comments; top-level for top-level) noting the commit SHA.
  • Explicit, justified pushback. Reply on the same thread with: acknowledge → rationale → offer alternative or follow-up. Keep it concrete; don't dismiss with "won't do".

Mirror each item and its resolution in the workpad's plan so the trail is auditable.

Replying to inline comments

The endpoint for an inline reply is the pulls endpoint (not issues) and in_reply_to must be the numeric review-comment id, not a GraphQL node id:

gh api -X POST "repos/${repo}/pulls/${pr}/comments" \
  -f body='<reply text>' \
  -F in_reply_to=<numeric-comment-id>

Read the full file on GitHub · 71 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 71 lines · 57 tokens per session scan A 00198ff9cc0f

Subscribe to this mod's changes

symphony-pr-feedback is a skill published in the GitHub repository anantjain-xyz/symphony-rust (11 stars, last pushed 27d ago), licensed MIT. It adds 57 tokens to every session and 723 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to symphony-pr-feedback, differing in 0 lines, and is treated as a copy.