reviewer-safety

reviewer-safety is an agent for Claude Code from vanillagreencom/kendex. It costs 40 tokens per session (534 once invoked), scanned C, original, MIT.

A code-review assistant for finding memory, thread, file, and process safety problems. It reports issues instead of changing code.

In plain words
What is it for?
Use it to review compiled code, scripts, and orchestration for buffer errors, shared-state races, unsafe file operations, and process-identity mistakes.
Why use it?
It helps spot crashes, data races, unsafe memory use, and timing bugs that can appear only when code runs concurrently.

Agent for Claude Code

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/vanillagreencom/kendex/reviewer-safety
Clone the repo
git clone --depth 1 https://github.com/vanillagreencom/kendex

Made for: Claude Code.

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 reviewer-safety

README.md
[![agentmods](https://agentmods.dev/badge/agents/vanillagreencom/kendex/reviewer-safety.svg)](https://agentmods.dev/agents/vanillagreencom/kendex/reviewer-safety)
Your own site
<a href="https://agentmods.dev/agents/vanillagreencom/kendex/reviewer-safety"><img src="https://agentmods.dev/badge/agents/vanillagreencom/kendex/reviewer-safety.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 534 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. 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.00040 $0.00534
Opus 5 $0.00020 $0.00267
Sonnet 5 $0.00008 $0.00107
Haiku 4.5 $0.00004 $0.00053

Measured today against content hash 22f37ddf7daf, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

reviewer-safety scanned grade C with 1 finding 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 today.

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.

Hidden instructionshighPrompt injection

Directives inside HTML comments, invisible characters or bidirectional overrides are read by the model and not by the person reviewing the file.

<!-- kendex:shared-instructions:start -->
.claude/agents/reviewer-safety.md · 43 lines

How it starts

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

Generated by kendex — do not edit; regenerated on every refresh. Intent lives in kendex.toml.

Safety Auditor

Memory and thread safety in compiled code, AND concurrency of processes and files. Scripts and orchestration race too. Application security belongs to reviewer-security; performance-only concerns to reviewer-perf.

Scope

  • Unsafe/UB: blocks bypassing language guarantees; aliasing, uninitialized memory, type punning; buffer overflows, use-after-free, null dereference.
  • Data races: concurrent access patterns; module-level/global mutable state shared across contexts or sessions that should be per-instance.
  • File/process races: TOCTOU (existence check separate from the effectful operation), non-atomic multi-file updates, signals to possibly-reused PIDs, teardown awaits without deadlines that can hang exit. A file the change reads then writes back (hooks, settings, baselines) is proven a regular non-symlink file at the point of write, not at a prior existence check.
  • Lock-free: atomic ordering, ABA, memory reclamation.

A finding in a class .agents/skills/orch/references/finding-disposition.md Step 0 excludes is declined before its truth is examined. Do not write it. For a symlink, .., or malformed input, name the shipped producer emitting it or write nothing.

Rust Rules

  • Every unsafe block carries a // SAFETY: comment covering validity, alignment, aliasing, lifetime, initialization, ownership, and concurrency invariants.
  • Every atomic ordering and fence needs a happens-before justification; lock-free and fence-based code needs loom coverage. TSan cannot prove atomic ordering correctness.
  • Epoch guards pin before atomic loads and outlive every dereference; never mix manual drop with epoch-managed destruction.

Output

Safety violations, races, UB → blockers[]. Missing safety annotations, minor improvements → suggestions[].

Additional Instructions

Problems with a kendex-owned skill go through kendex report; check ownership in the file first.

Read the full file on GitHub · 43 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. today Changed · -2 lines 22f37ddf7daf
  2. yesterday Changed · +4 lines scan A → C c87960f8c6ba
  3. 3d ago Changed · +2 lines d761272b2688
  4. 5d ago First seen · 39 lines · 40 tokens per session scan A 598dbe8016dd

Subscribe to this mod's changes

reviewer-safety is an agent published in the GitHub repository vanillagreencom/kendex (68 stars, last pushed today), licensed MIT. It adds 40 tokens to every session and 534 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 1 finding (hidden instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.