review-thread

review-thread is a skill for Claude Code, Codex from cruxible-ai/cruxible. It costs 56 tokens per session (2,554 once invoked), scanned A, original, Apache-2.0.

Instructions for recording review decisions and their explanations in an agent-operation review thread. A review verdict is the decision on whether requested changes are approved, rejected, or withdrawn.

In plain words
What is it for?
Updating review-request statuses and adding linked notes that explain why changes were approved, requested, or withdrawn.
Why use it?
It prevents a review decision from being saved without a durable explanation, while keeping later corrections as additional notes.

Skill for Claude CodeCodex

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

Good fit Updating review-request statuses and adding linked notes that explain why changes were approved, requested, or withdrawn.

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

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/cruxible-ai/cruxible/review-thread"><img src="https://agentmods.dev/badge/skills/cruxible-ai/cruxible/review-thread.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,554 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.00056 $0.02554
Opus 5 $0.00028 $0.01277
Sonnet 5 $0.00011 $0.00511
Haiku 4.5 $0.00006 $0.00255

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

Security

Grade A, and why

review-thread 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 12d 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.

kits/agent-operation/skills/review-thread/SKILL.md · 213 lines

How it starts

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

Review Thread (agent-operation)

Agent skill for recording review verdicts and maintaining the review-comment thread on an agent-operation state instance. Read this before changing any ReviewRequest.status or writing a review StateNote.

There is no core "review" verb. Everything here is built from the generic graph primitives — batch-direct-write, entities, relationships — plus the agent-operation kit's StateNote, ReviewRequest, and state_note_about_review_request types. The kit enforces the discipline with a single co_write mutation guard; this skill is how you satisfy it cleanly.

The one rule the guard enforces

The review_verdict_requires_rationale_note mutation guard rejects any write that advances a ReviewRequest.status to changes_requested, approved, or withdrawn unless the same write also creates a new StateNote(kind=review_note) linked to that ReviewRequest via state_note_about_review_request.

A verdict therefore cannot advance state without recording why. The note is the durable rationale; the status is just the headline.

This guard is always-on — it applies in every mode, governed or not. That is deliberate and is not a weaker form of governance: unlike an actor-credential guard (which needs a privileged identity to satisfy), this requirement is satisfiable in any mode by simply including the note in the batch. There is no credential to hold and no mode to be in; the cost of satisfying it is one extra entity + two edges, which this skill makes routine.

The guard only fires on a transition of status into a verdict value. Re-asserting the same status (e.g. writing approved on an already-approved request alongside an unrelated field edit) is not a transition and does not fire. The non-verdict statuses (requested, in_review) are not guarded.

Recording a verdict — one atomic batch-direct-write

A verdict is one batch-direct-write unit of work, producing one receipt. The single batch:

  1. Updates ReviewRequest.status to the verdict value.
  2. Creates a StateNote{kind: review_note, ...} carrying the rationale.
  3. Creates the state_note_about_review_request edge (StateNote → ReviewRequest).
  4. Creates the state_note_authored_by_actor edge (StateNote → Actor).

Read the full file on GitHub · 213 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. 12d ago First seen · 213 lines · 56 tokens per session scan A 488ebff50433

Subscribe to this mod's changes

review-thread is a skill published in the GitHub repository cruxible-ai/cruxible (17 stars, last pushed today), licensed Apache-2.0. It adds 56 tokens to every session and 2,554 once invoked, about $0.0003 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-30.