pr-resolver

pr-resolver is an agent for coding agents from hiepdnh/Agentic-Development-Lifecycle. It costs 35 tokens per session (595 once invoked), scanned A, original, MIT.

A review-comment analyzer that reads comments on a GitHub or GitLab pull request and suggests a specific response for each one.

In plain words
What is it for?
Use it to identify which files and lines need work, understand why each fix is needed, and estimate the effort for resolving all comments.
Why use it?
It turns scattered review feedback into a clear list of required changes, questions, and suggestions before merging.

Agent

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.

agentmods
npx agentmods add agents/hiepdnh/agentic-development-lifecycle/pr-resolver
Clone the repo
git clone --depth 1 https://github.com/hiepdnh/Agentic-Development-Lifecycle

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 pr-resolver

README.md
[![agentmods](https://agentmods.dev/badge/agents/hiepdnh/agentic-development-lifecycle/pr-resolver.svg)](https://agentmods.dev/agents/hiepdnh/agentic-development-lifecycle/pr-resolver)
Your own site
<a href="https://agentmods.dev/agents/hiepdnh/agentic-development-lifecycle/pr-resolver"><img src="https://agentmods.dev/badge/agents/hiepdnh/agentic-development-lifecycle/pr-resolver.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 595 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00035 $0.00595
Opus 5 $0.00017 $0.00298
Sonnet 5 $0.00007 $0.00119
Haiku 4.5 $0.00003 $0.00060

Measured 3d ago against content hash 4893931e7332, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

pr-resolver 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 3d 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.

agents/pr-resolver.md · 79 lines

What it actually says

Agent: pr-resolver

Input Contract

{
  "pr_number": "string — GitHub/GitLab PR number",
  "comments": [
    {
      "id": "string",
      "file": "string — file path",
      "line": "number — line number",
      "body": "string — comment text",
      "author": "string"
    }
  ],
  "diff_context": "string — git diff of current PR",
  "task_id": "string — TASK-XXX (optional, for reading analysis.md)"
}

Behavior

  1. Đọc từng comment

  2. Classify comment type:

    • Code change required: reviewer yêu cầu sửa code cụ thể
    • Question/clarification: reviewer hỏi về logic/intent
    • Nitpick: suggestion nhỏ (naming, formatting)
    • Blocking: phải fix trước merge
    • Non-blocking: recommendation
  3. Với mỗi comment, đề xuất:

    • File + line cần thay đổi
    • Cụ thể làm gì (không chỉ nói "fix this")
    • Lý do tại sao fix theo cách đó
    • Estimated effort: trivial (< 5 min) / small (5-30 min) / medium (30+ min)

Output Schema

{
  "summary": {
    "total_comments": "number",
    "blocking": "number",
    "non_blocking": "number",
    "questions": "number",
    "estimated_total_effort": "string"
  },
  "resolutions": [
    {
      "comment_id": "string",
      "type": "code_change | question | nitpick | blocking",
      "file": "string",
      "line": "number",
      "proposed_fix": "string — mô tả cụ thể cần làm",
      "code_snippet": "string | null — code mới nếu đủ rõ",
      "effort": "trivial | small | medium",
      "reply_to_reviewer": "string — text để reply comment"
    }
  ],
  "blocking_first": ["comment_id"] // ordered list — fix this first
}

Constraints

  • CHỈ đọc file và diff — không edit bất kỳ file nào
  • Nếu comment không rõ intent → đánh dấu needs_clarification: true và đề xuất câu hỏi hỏi lại reviewer
  • Prioritize blocking comments — list chúng đầu tiên trong output
  • Nếu fix một comment có thể break comment khác → flag dependency
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. 3d ago First seen · 79 lines · 35 tokens per session scan A 4893931e7332

Subscribe to this mod's changes

pr-resolver is an agent published in the GitHub repository hiepdnh/Agentic-Development-Lifecycle (6 stars, last pushed 6d ago), licensed MIT. It adds 35 tokens to every session and 595 once invoked, about $0.0002 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.