source-review

source-review is a skill for Claude Code, Codex from ozzy-labs/suasor. It costs 145 tokens per session (1,239 once invoked), scanned A, original, MIT.

A read-only review workflow for imported documents, pull requests, and changes between document versions. It uses Suasor MCP, a tool connection for finding and relating stored source material.

In plain words
What is it for?
Reviewing a design document, checking a pull request, or summarising what changed since an earlier version. It can also provide a general update summary when no specific source is named.
Why use it?
It brings related specifications, earlier discussions, and decisions into the review so omissions, inconsistencies, assumptions, and risks are easier to find. It does not post comments or change external sources.

Skill for Claude CodeCodex

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

Good fit Reviewing a design document, checking a pull request, or summarising what changed since an earlier version. It can also provide a general update summary when no specific source is named.

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

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/ozzy-labs/suasor/source-review"><img src="https://agentmods.dev/badge/skills/ozzy-labs/suasor/source-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 145 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,239 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.00145 $0.01239
Opus 5 $0.00072 $0.00620
Sonnet 5 $0.00029 $0.00248
Haiku 4.5 $0.00015 $0.00124

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

Security

Grade A, and why

source-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.

docs/skills/source-review/SKILL.md · 71 lines

What it actually says

source-review

取り込み済み素材(document / PR / 版の差分)をレビューする単一入口(ADR-0046)。

名前について: review ではなく source-review なのは、@ozzylabs/skills の dev skill review(コードレビュー)と名前空間を分けるためADR-0008#520)。同じ host dir に install されるので、名前が衝突すると一方が他方を上書きして壊す。target で振る舞いを決める。read-only。

以前は doc-review / doc-diff / pr-review の 3 本に分かれていたが、ユーザーの「レビューして」からはどれが発火すべきか判別できなかった。違いは何を見るかだけである。

いつ発火するか

言いかた target
「この設計書レビューして」「仕様のレビュー」「この提案どう思う」「抜け漏れ確認」 document
「この PR レビューして」「#123 確認して」「PR どう思う」 pr
「この資料は前回から何が変わった」「この資料の差分」「どこが更新された」 diff

対象が曖昧なら聞き返す(PR 番号があれば pr、source id / 資料名があれば document、「変わった」「差分」の語があれば diff)。

対象(source id / 資料名 / PR 番号)を指定しない「前回から何が変わった」は特定資料の差分ではなく状況サマリの質問なので、brief(period=前回確認時刻から)が受ける。

何をするか(MCP tool flow)

すべて read tool(ADR-0004)。外部への投稿は行わない(PR コメント投稿は egress なので本 skill の範囲外。ユーザーが手で貼る)。

target=document

  1. source.getexternalId)で本文を読む。provenance も要るなら include: ["links"]
  2. search で関連する先行仕様・過去の議論を引く
  3. graph.related / decision.list で関連する決定を辿る
  4. 整合性 / 抜け漏れ / 前提 / リスクの観点で所見を組み立てる

target=pr

  1. search で関連 source / 過去の review / 関連決定を引く
  2. 必要に応じて gh pr diff の出力(ホスト側で取得)と突き合わせる
  3. レビュー観点を提示する。PR への comment 投稿はしない

target=diff

  1. source.historyexternalId)で event log から本文の版を引く(ADR-0002 — 全版が残る)
  2. 直近 2 版、または期間指定の前後版を突き合わせる
  3. 変更点を要約する(何が追加 / 削除 / 変更されたか)

制約

  • read-only。persist しない・外部に投稿しない
  • 判断(良し悪し)はホスト LLM 側。本 skill は手順書のみで実処理を持たない
  • source.history は本文の版のみを再構成する。メタデータの変遷は対象外
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 · 71 lines · 145 tokens per session scan A b90ab6f78bd3

Subscribe to this mod's changes

source-review is a skill published in the GitHub repository ozzy-labs/suasor (0 stars, last pushed 29d ago), licensed MIT. It adds 145 tokens to every session and 1,239 once invoked, about $0.0007 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.