tuturuuu-review-comments

tuturuuu-review-comments is a skill for Codex from tutur3u/platform. It costs 20 tokens per session (1,078 once invoked), scanned A, original, Apache-2.0.

Guidance for inspecting and handling unresolved GitHub pull-request review threads, including checking whether comments still apply to the current code.

In plain words
What is it for?
Use it to review pending comments, fix valid issues, validate the changes, and resolve addressed review threads when appropriate.
Why use it?
It prevents stale or incorrect review comments from causing unnecessary changes and ensures actionable feedback is addressed before completion.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: $skill-name invocation.

Good fit Use it to review pending comments, fix valid issues, validate the changes, and resolve addressed review threads when appropriate.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tutur3u/platform/tuturuuu-review-comments
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 tutur3u/platform --skill tuturuuu-review-comments
Clone the repo
git clone --depth 1 https://github.com/tutur3u/platform

Made for: 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 tuturuuu-review-comments

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/tutur3u/platform/tuturuuu-review-comments"><img src="https://agentmods.dev/badge/skills/tutur3u/platform/tuturuuu-review-comments.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,078 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00020 $0.01078
Opus 5 $0.00010 $0.00539
Sonnet 5 $0.00004 $0.00216
Haiku 4.5 $0.00002 $0.00108

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

Security

Grade A, and why

tuturuuu-review-comments 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 5d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/fetch_review_threads.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/tuturuuu/skills/tuturuuu-review-comments/SKILL.md · 98 lines

How it starts

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

Tuturuuu Review Comments

Use this skill when the user asks to check, re-check, revalidate, fix, resolve, or commit pending/unresolved comments for a GitHub PR or review resource.

Core Rules

  • Treat thread-aware review data as authoritative. Flat PR comments are context, but unresolved inline review threads decide what remains pending.
  • Verify every comment against current code before changing anything. If a comment is stale, duplicated, non-actionable, or wrong, say so and draft a response instead of forcing a code change.
  • After fixing and validating actionable threads, resolve the addressed review threads by default unless the user says not to.
  • Do not reply on GitHub, push, or commit unless the user explicitly asks for that write action.
  • If the user asks to "fix comments", interpret that as all unresolved, non-outdated, actionable review threads unless they narrow the scope.
  • Keep unrelated working-tree changes intact. Include them in a commit only when the user explicitly asks to include them.

Resolve The Resource

  1. If the user gives a PR URL, use it directly.
  2. If they give owner/repo#123, split it into repo and PR number.
  3. If they refer to the current branch, run:
    • gh auth status
    • gh pr view --json number,url,headRefName,baseRefName,title,state
  4. Check out the PR only when fixes are requested:
    • gh pr checkout <number-or-url>

Run gh commands with network access if sandboxing blocks GitHub.

Fetch Thread-Aware Comments

Prefer the bundled script:

python3 <skill-dir>/scripts/fetch_review_threads.py --repo owner/repo --pr 123 > /tmp/pr123-review-threads.json

Use built-in summaries for active unresolved threads:

python3 <skill-dir>/scripts/fetch_review_threads.py --repo owner/repo --pr 123 --active-only --summary > /tmp/pr123-active-review-threads.json
jq -r '.counts.active_unresolved' /tmp/pr123-active-review-threads.json
jq -r '.review_threads[] | [.id, .path, (.line // 0), (.author // ""), .headline] | @tsv' /tmp/pr123-active-review-threads.json

Read the full file on GitHub · 98 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago Changed · -20 tokens per session 5cc0937d91ee
  2. 8d ago First seen · 98 lines · 40 tokens per session scan A 0e84a77d6e50

Subscribe to this mod's changes

tuturuuu-review-comments is a skill published in the GitHub repository tutur3u/platform (53 stars, last pushed yesterday), licensed Apache-2.0. It adds 20 tokens to every session and 1,078 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-09-03.

Related

Other skills, from other repositories

triage-contributor-pr

Triage open pull requests from external contributors to prisma/prisma and produce a per-PR verdict with evidence. Use when a maintainer asks to triage, evaluate, assess, or review the queue of incoming contributor PRs, to decide whether a fork PR is safe to run CI on, to check whether a PR is in scope for its version…

prisma/orm · 131 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

review-triage-phase

Produces canonical review actions from fetched review state and renders action markdown. Use when the user wants only triage/action-planning for the review-framework workflow.

prisma/orm · 36 tokens

update-pr

Update the pull request for the current session. Use when the user wants to push new changes to an existing PR.

microsoft/vscode · 26 tokens

magic-ui

Use this skill when users want to add, customize, or troubleshoot Magic UI components in React/Next.js projects. It covers component selection, shadcn registry installation (@magicui/), integration patterns, and practical quality checks for accessibility and maintainability.

magicuidesign/magicui · 56 tokens

writing-emdash-docs

Write, revise, and review EmDash documentation for technical accuracy, useful structure, house style, and natural prose. Use when working on user documentation, guides, API reference pages, migration or upgrade guides, READMEs, contributor documentation, technical specifications, or release notes in the EmDash…

emdash-cms/emdash · 85 tokens