reply-review

reply-review is a skill for Claude Code from nanasess/eccube-dev-agents. It costs 10 tokens per session (1,334 once invoked), scanned A, original, MIT.

A workflow for replying to GitHub pull-request review comments, with an optional mention of the reviewer.

In plain words
What is it for?
It helps identify eligible comments from a pull request or comment link, prepare replies, and post them, while excluding comments marked as undecided.
Why use it?
It limits replies to comments that were already checked and approved for response, reducing accidental or unsupported messages.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the eccube-dev-agents plugin — 8 skills shipped together

Good fit It helps identify eligible comments from a pull request or comment link, prepare replies, and post them, while excluding comments marked as undecided.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nanasess/eccube-dev-agents/reply-review
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 nanasess/eccube-dev-agents --skill reply-review
Clone the repo
git clone --depth 1 https://github.com/nanasess/eccube-dev-agents

Made for: Claude Code.

Or install eccube-dev-agents, the plugin that ships this one along with the rest of its 8 skills.

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 reply-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/nanasess/eccube-dev-agents/reply-review/github.svg)](https://agentmods.dev/skills/nanasess/eccube-dev-agents/reply-review)
Your own site
<a href="https://agentmods.dev/skills/nanasess/eccube-dev-agents/reply-review"><img src="https://agentmods.dev/badge/skills/nanasess/eccube-dev-agents/reply-review/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 reply-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/nanasess/eccube-dev-agents/reply-review"><img src="https://agentmods.dev/badge/skills/nanasess/eccube-dev-agents/reply-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 10 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,334 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 original No closer match found 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.00010 $0.01334
Opus 5 $0.00005 $0.00667
Sonnet 5 $0.00002 $0.00267
Haiku 4.5 $0.00001 $0.00133

Measured 8d ago against content hash 051f530dbc2e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

reply-review 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 8d 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.

plugins/eccube-dev-agents/skills/reply-review/SKILL.md · 102 lines

How it starts

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

レビューコメントへの返信

GitHub PR のレビューコメントに対して適切な返信を作成・投稿します。 同一会話内で事前に validate-review で確認済みのコメントのみを返信対象とします。

引数

$ARGUMENTS から以下を解析:

  • レビューコメント URL(オプション): https://github.com/{owner}/{repo}/pull/{pr_number}#discussion_r{comment_id}
  • PR URL または PR 番号(オプション): その PR の確認済みコメントをまとめて対象にする
  • メンションユーザー ID(オプション): @gemini-code-assist

手順

1. 返信対象コメントの特定

返信対象は、同一会話内で validate-review(または手動で妥当性確認)を行ったコメントに限定する。確認していないコメントには返信しない。

パターン 引数 対象
A なし 同一会話内で validate-review 済みのコメントすべて
B PR URL / PR 番号 その PR について validate-review 済みのコメントすべて
C レビューコメント URL 指定された 1 件のみ(validate-review 済みであること)
  1. パターン C: URL から owner, repo, pr_number, comment_id を抽出し、そのコメント単体を対象とする
  2. パターン B: URL / PR 番号から owner, repo, pr_number を特定し、その PR について validate-review 済みのコメントをすべて対象とする
  3. パターン A: 同一会話内で validate-review を実行済みのコメントをすべて対象とする
  4. 対象コメントがない場合は「返信対象のコメントがありません。先に /eccube-dev-agents:validate-review で確認してください」と報告して終了
  5. 引数に URL / PR 番号があっても、validate-review していないコメントは対象に含めない(含めるべきコメントがあれば、先に validate-review の実行を促す)
  6. @ で始まる文字列をメンションユーザー ID として抽出

validate-review が「判定保留」としたコメントは返信対象から外し、報告でその旨を明記する。

2. コメント情報の取得

validate-review 時の情報(comment_id, path:line, 判定, 対応方針)を再利用する。追加確認が必要な場合のみ:

  1. コメント詳細の取得: gh api repos/{owner}/{repo}/pulls/comments/{comment_id}
  2. スレッド構造の確認: gh api repos/{owner}/{repo}/pulls/{pr_number}/comments --paginate

3. 対象コードの確認

validate-review で確認済みの内容を使う。追加で確認が必要な場合のみ:

  1. path から対象ファイルを特定
  2. diff_hunk から変更内容を把握
  3. ローカルにファイルがあれば Read ツールで確認

4. 返信内容の生成

各コメントに対して、validate-review の判定と対応方針に沿った返信を日本語で作成する:

  • 妥当: 修正する旨を記載し、修正内容(またはコミット SHA)を説明
  • 非妥当: 理由を丁寧に説明。根拠となる file:line を示す
  • 部分的に妥当: 同意する部分と異なる見解を分けて説明

メンションユーザーが指定されている場合は返信本文の先頭に @user を含める。

5. 返信投稿

返信は個別にコメントごとに投稿する。複数コメントを 1 つの返信にまとめない。

gh api repos/{owner}/{repo}/pulls/{pr_number}/comments \
  -X POST \
  -f body="返信内容" \
  -F in_reply_to={comment_id}

複数コメントがある場合はそれぞれのスレッドに返信を投稿する。

Read the full file on GitHub · 102 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. 8d ago First seen · 102 lines · 10 tokens per session scan A 051f530dbc2e

Subscribe to this mod's changes

reply-review is a skill published in the GitHub repository nanasess/eccube-dev-agents (2 stars, last pushed 1mo ago), licensed MIT. It adds 10 tokens to every session and 1,334 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

issue-analyzing

Use this skill when the user asks to analyze a specific GitHub issue, understand what area of code an issue affects, assess an issue's scope, or research the code context around an issue — example triggers like "analyze issue.

shopwareLabs/ai-coding-tools · 51 tokens

oss-contrib

Use when contributing to open source projects from forked repositories. Handles upstream sync, CONTRIBUTING.md compliance, code style matching, PR preparation, and project-specific patterns. Activates for fork management, PR template filling, and upstream workflow compliance.

Sagargupta16/claude-skills · 52 tokens

review-pr

Review a Pull Request in one of two postures: an expository "tour guide" that walks through changes in logical order, or an adversarial audit that assumes the change is wrong until proven safe and hunts for the failure mode. Triggers: "review PR #123", "adversarial review", "walk me through this PR", "PR tour guide"…

jontsai/claude-plugins · 139 tokens

dev-workflow

Use when performing common development tasks like committing code, reviewing changes, running tests, fixing bugs, creating PRs, or checking repo status. Provides structured workflows for everyday git and development operations.

Sagargupta16/claude-skills · 42 tokens

github-workflows

Use this skill for the full GitHub operating loop: 1) authenticate, 2) manage repos and remotes, 3) open and review PRs, 4) work on issues, and 5) monitor CI.

AtlasOmnia/hermes-custom-pack · 27 tokens

review-implement-phase

Implements triaged review actions, commits focused fixes, and posts Done plus resolves threads. Use when the user wants only the implementation phase of the review-framework workflow.

prisma/orm · 38 tokens