Rust Security Review
Runs in the main conversation (invoke via
). Orchestrator owns the
ledger as bookkeeping for retries; workers and judges have no Task tools. Workers and judges are named plugin subagents (
rust-review:rust-review-worker
,
rust-review:rust-review-dedup-judge
,
rust-review:rust-review-fp-judge
); tool sets are declared in
plugins/rust-review/agents/*.md
. Findings are exchanged via markdown-with-YAML files in a shared output directory.
When to Use
Rust application/library security review: safe/unsafe boundary auditing, memory safety in
blocks, concurrency hazards, panic-induced DoS on servers, FFI safety, async-runtime mistakes.
When NOT to Use
- Pure-C / pure-C++ codebases — use instead.
- Smart contracts (Solana programs / NEAR contracts / Ink!) — use
solana-vulnerability-scanner
or the contract-specific skill.
- Kernel-mode Rust drivers without userspace allocator — coverage is incomplete; flag as advisory only.
- Secrets/key memory hygiene (zeroization, // usage, lingering stack/heap copies) — use the skill; rust-review does not cover memory zeroization.
Subagents
| Subagent type | Purpose | Tool set |
|---|
rust-review:rust-review-worker
| Run assigned cluster, write findings | Read, Write, Edit, Bash |
rust-review:rust-review-dedup-judge
| Merge duplicates (runs first) | Read, Write, Edit, Glob |
rust-review:rust-review-fp-judge
| FP + severity + final reports (runs second) | Read, Write, Edit, Bash |
Tools come from each agent's frontmatter at spawn time. The orchestrator's
/
/
/etc. come from this skill's
.
Search-tool / interaction: in current Claude Code, an agent granted
is
not also granted the dedicated
or tools (the calls return
; the harness expects
/
/
via
instead). So only the dedup-judge — the one agent that holds
no — uses
; the worker, fp-judge, and the orchestrator resolve and search paths with
/
/
/
/
instead. Because the cluster/finder prompt seeds are written in ripgrep regex syntax (
,
,
),
-holding agents must run them with
. If
is not installed its call fails
loudly (
) — fall back to
with POSIX classes (
→
,
→
, drop
), never a raw-
whose
silent empty becomes a bad
. Do
not reintroduce
/
into a
-holding agent's protocol.
Architecture
coordinator: write context.md → build_run_plan.py → TaskCreate × M
→ spawn primer (foreground) → spawn M workers (parallel)
→ classify Phase-7 outcomes + write findings-index.txt
→ dedup-judge → fp-judge → report safety net (SARIF + REPORT.md) → return REPORT.md
Output directory contains:
,
,
,
,
(per-worker shards),
,
(per-worker coverage-gate files),
,
,
,
,
.
Path convention: every later phase shells out to
${RUST_REVIEW_PLUGIN_ROOT}/scripts/*.py
, so resolve that variable first to the plugin directory that contains
prompts/clusters/unsafe-boundary.md
(and
scripts/build_run_plan.py
). Try in order, first hit wins:
- Native Claude Code — , accepted if
Bash: ls "${CLAUDE_PLUGIN_ROOT}/prompts/clusters/unsafe-boundary.md"
resolves.
- Codex — (set it the same way if that var is present and resolves the marker).
- Fallback search — covers Codex installs under , Claude installs under , and a local checkout / repo run:
Bash: find ~/.claude ~/.codex . -path '*/plugins/rust-review/prompts/clusters/unsafe-boundary.md' -print -quit 2>/dev/null
. Take the match and strip the trailing /prompts/clusters/unsafe-boundary.md
to get the root (the home dirs are searched before so an installed copy wins over any vendored copy in the audited repo).
Set
to the resolved root. If all three fail,
abort with a message naming the roots searched — do not enter Phase 4 with an empty variable (every
python3 "${RUST_REVIEW_PLUGIN_ROOT}/scripts/..."
call would fail with a confusing path error).
Scope convention: keep two scopes separate throughout the run:
- — the user-requested audit subtree. Workers may only file findings whose vulnerable location is inside this subtree.
- — read-only repo roots/files workers and judges may inspect to verify reachability, callers, wrappers, build flags, mitigations, and threat-model details. Default to unless the user explicitly forbids broader context. Reading context outside is allowed; filing findings there is not.
Rationalizations to Reject
- " is rare, so hand-skip the memory-safety cluster." Don't edit the cluster list — set accurately in Phase 1 and let decide. Every memory-safety bug class (UAF, double-free, uninitialized reads, , union UB) requires , so the planner runs the whole cluster when and correctly omits it when — there is no "run it anyway." The unsafe-boundary cluster is different: it has no and always runs (consolidated; its safety-doc and hygiene apply to FFI declarations even without visible blocks).
- "The compiler caught it." The borrow checker proves absence of safe-code data races; it proves nothing about unsafe blocks, panic reachability, ABBA deadlocks, atomic-load/store sequencing, or FFI ABI mismatch.
- " is fine if it's
// SAFETY: documented infallible
." documents operations, not infallibility claims. An on documented-infallible input is still risky if the documentation is wrong — file as low severity and let the FP judge decide.
- " so skip the run." Pure safe-Rust crates still have panic-DoS, atomic races, drop-panics, and trait-implementation hazards. Run the always-on clusters.
- "Background spawns parallelize the workers." They do not — calls in a single assistant message already run concurrently. defeats the Phase 6a primer cache, so every worker pays full cache-creation (
cache_read_input_tokens=0
) and the ~15 K-token primer is wasted M times. Default: omit from worker spawns.
- "I'll re-derive the cluster list / paths / pass prefixes inline instead of running ." The script is the only authority for selection and rendering. Paraphrasing it drops fields that the worker self-check requires, producing
worker-N abort: spawn prompt malformed
. Always run the script and .
- "The run partially succeeded — I'll just write from what completed." Hiding partial runs behind a successful report is a correctness bug. If any Phase-5 cluster task is not , surface it prominently in and the final response.
- "Zero findings — skip Phase 8." Always run both judges and Phase 8b: dedup-judge writes a minimal no-op on an empty index, fp-judge writes empty /, and Phase 8b's SARIF generator emits for the empty case. SARIF consumers depend on a stable artifact set.
- " is fine for the preflight." Under zsh, an unmatched glob aborts the whole compound command before runs. Use (never fails on no-match) — and not , which is unavailable to an agent that also holds .
Orchestration Workflow
Run these phases in the main conversation.
Phase 0: Parameter Collection
Entry: skill invoked.
Exit: ,
,
resolved;
resolved or set to
;
finding_scope_root=scope_subpath
;
resolved.
The skill is invoked directly (no command wrapper). Parse any free-text arguments the user passed on the
line (e.g.
,
,
) and pre-fill the answers they imply — then ask for any missing required parameters with
one call. Never silently default the required parameters.
Required parameters:
| Parameter | Values | How to infer from args |
|---|
| / / | Words like "remote", "network", "attacker" → ; "local", "unprivileged" → ; otherwise ask. |
| / / | Explicit model name in args. Otherwise ask (no silent default). |
| / / | "all", "every", "noisy" → ; "medium and above" → ; "high only", "criticals only" → . Otherwise ask — no silent default. |
| repo-relative directory (optional) | Phrases like "X only", "just audit X/", "review subdirectory X" → or the matching subdir. Apply fuzzy matching against top-level subdirectories of the repo. If absent, set ; if ambiguous, ask. |
Call
exactly once with only unresolved required parameters (
,
,
) plus
only when the user explicitly requested a narrowed scope but it is ambiguous. If the required parameters were all pre-filled and scope is absent or resolved, skip the question.
After resolving
, set
finding_scope_root="${scope_subpath:-.}"
. Set
by default so workers can verify callers/build settings outside a narrowed subtree without filing out-of-scope findings. If the user explicitly asks to forbid broader context, set
context_roots="${finding_scope_root}"
and note that reachability confidence may be lower.
Phase 1: Prerequisites
Entry: Phase 0 complete.
Exit: ,
,
,
,
,
flags determined. Abort with a clear message if no
files exist under
.
Probe within
with the
commands below (non-empty output ⇒ flag true). The dedicated
/
tools are unavailable to this orchestrator because it holds
— use
/
/
via
. (The probe regexes use
/
; if your
lacks GNU
support, run them with
— which honors
and still searches ignored files — or, if
is not installed either, replace
→
and drop
. Widening is safe here: a false-positive capability flag only adds a harmless extra worker, whereas a missed match would skip a whole pass.)
bash
# Rust source presence (precondition)
find "${finding_scope_root:-.}" -name '*.rs' -print -quit
# has_unsafe
grep -rlE '\bunsafe\s+(extern|fn|impl|trait)\b|\bunsafe\s*\{' --include='*.rs' "${finding_scope_root:-.}" | head -1
# has_ffi
grep -rlE 'extern\s+"(C|system|stdcall|cdecl|win64|sysv64|aapcs|fastcall|thiscall|vectorcall|efiapi)(-unwind)?"|\bextern\s+fn\b|extern\s+\{|#\[repr\((C|transparent)\b|\b(CString|CStr)\b|use\s+(libc|core::ffi|std::ffi|std::os::raw|cty)|\blibc::|\b(bindgen|cbindgen)\b|\bc_void\b' --include='*.rs' "${finding_scope_root:-.}" | head -1
# has_concurrency
grep -rlE '\b(std::(thread|sync)|parking_lot::|crossbeam|rayon::|tokio::sync|core::sync::atomic|std::sync::atomic|Atomic[A-Za-z0-9_]*|UnsafeCell|static\s+mut|unsafe\s+impl\s+(Send|Sync)|memmap2::|Mmap(Options|Mut)?|MAP_SHARED|shm_open|mmap\s*\(|memfd_create|shared_memory|raw_sync|CreateFileMapping|MapViewOfFile|once_cell|sigaction|signal_hook|nix::sys::signal|libc::signal|libc::sigaction)' --include='*.rs' "${finding_scope_root:-.}" | head -1
# has_async
grep -rlE '\basync\s+(fn|move|\{)|\.await\b|tokio::|async_std::|futures::' --include='*.rs' "${finding_scope_root:-.}" | head -1
# has_packed_repr (outer #[repr(...packed...)] and inner #![repr(...packed...)])
grep -rlE '#!?\[repr\([^]]*packed' --include='*.rs' "${finding_scope_root:-.}" | head -1
# has_fs_io (path types / construction)
grep -rlE '\bPathBuf\b|\bPath\b' --include='*.rs' "${finding_scope_root:-.}" | head -1
# has_fs_io (fs module and file APIs)
grep -rlE '\bfs::|\bFile::(open|create)\b|OpenOptions|\.exists\(\)|\.metadata\(|symlink_metadata|read_dir|read_to_string' --include='*.rs' "${finding_scope_root:-.}" | head -1
As with the other flags, non-empty output (from either probe) means the flag is true. These detectors are intentionally conservative: when in doubt they set the flag true, because a false-positive flag only costs a harmless extra worker while a false-negative would skip a real pass.
keys on path types (
/
, which also covers
parameters and bare
calls) and filesystem anchors (
/
/
/
/…) rather than the bare
/
calls — path construction is reached via the path-type anchors, so leaving join/push out of the gate avoids matching unrelated iterator/
joins and
that would make the gate fire on nearly every crate.
Note for
: also probe for
,
, etc., to set
even if the scope subpath has no
yet (library crates often re-export).
Also probe
presence (informational — note in
whether the audit was over a Cargo workspace, single crate, or loose
files):
bash
# context_roots may be comma-separated (build_run_plan.py treats it as a list),
# so probe each root rather than passing "a,b" as one (nonexistent) path.
echo "${context_roots:-.}" | tr ',' '\n' | while IFS= read -r root; do
find "${root:-.}" -name 'Cargo.toml' -print -quit
done | head -1
Phase 2: Output Directory
Entry: Phase 1 flags set.
Exit: absolute
resolved;
and
exist.
Resolve an absolute path for
(default:
$(pwd)/.rust-review-results/$(date -u +%Y%m%dT%H%M%SZ)/
):
bash
mkdir -p "${output_dir}/findings" "${output_dir}/coverage"
The
subdirectory holds per-worker coverage-gate audit files (
). Workers write to it instead of embedding the table in their reply — see
agents/rust-review-worker.md
step 5.
Phase 3: Codebase Context
Entry: exists.
Exit: written.
Skim
and any build/manifest file (
,
,
,
) — preflight with
(via
) before any
(a
on a missing file aborts the turn;
is unavailable to this orchestrator because it holds
). Do
not use
for the preflight: under zsh, an unmatched glob aborts the whole compound command before
runs. Use
find . -maxdepth 2 -name 'README*' -o -name 'Cargo.toml' -o -name 'rust-toolchain.toml' -o -name 'build.rs'
, which never fails on no-match.
Write
with: YAML frontmatter (
,
,
,
,
,
,
,
,
,
,
,
,
as
/
/
plus path when present), then a short markdown body with five sections —
Purpose (1-3 sentences),
Scope (what's in
, and that findings outside it are out of scope),
Entry points (where untrusted data enters: network, files, CLI, IPC,
deserialization, FFI inputs),
Trust boundaries (sandboxed vs trusted peers vs arbitrary remote),
Existing hardening (fuzzing harnesses, MIRI runs,
,
,
).
Phase 4: Build Run Plan (deterministic)
Entry: capability flags +
known;
exists.
Exit: and
${output_dir}/worker-prompts/*.txt
written;
known.
Selection, filtering, path resolution, and spawn-prompt rendering are delegated to the script to keep spawn prompts complete and consistent:
bash
python3 "${RUST_REVIEW_PLUGIN_ROOT}/scripts/build_run_plan.py" \
--plugin-root "${RUST_REVIEW_PLUGIN_ROOT}" --output-dir "${output_dir}" \
--threat-model "${threat_model}" --severity-filter "${severity_filter}" \
--scope-subpath "${finding_scope_root:-.}" --context-roots "${context_roots:-.}" \
--has-unsafe "${has_unsafe}" --has-ffi "${has_ffi}" \
--has-concurrency "${has_concurrency}" --has-async "${has_async}" \
--has-packed-repr "${has_packed_repr}" --has-fs-io "${has_fs_io}" \
--max-passes-per-worker 4
The script writes
+
worker-prompts/worker-N.txt
+ (if
, the default)
worker-prompts/cache-primer.txt
, and prints a JSON summary on stdout. Exits non-zero on any missing prompt — surface the message and stop. With the default
--max-passes-per-worker 4
the planner selects ~8 clusters →
M ≈ 13 workers for pure safe Rust (no FFI / concurrency / async;
is always on), ~10 clusters →
M ≈ 15 for concurrent safe Rust, and ~15 clusters →
M ≈ 23 for full Rust (unsafe + FFI + concurrency + async, plus
when
and
when
). M is the post-chunk worker count (
), so it runs above the cluster count — chunking splits multi-pass
non-consolidated clusters (e.g.
,
), while the two
consolidated clusters (
,
) are never chunked: one worker each builds the shared inventory once and runs all its phases.
is one pass per worker. After it returns,
for the structured selection — never re-derive filtering or paths.
--max-passes-per-worker N
caps the per-worker pass count. The planner deterministically splits any
non-consolidated cluster with more than
passes into
contiguous chunks; each chunk becomes its own
spawn with a
-suffixed
(e.g.
,
).
Consolidated clusters (, ) are exempt — never chunked, regardless of pass count or override — so one worker builds their shared Phase-A inventory once and runs every phase (chunking a consolidated cluster would force each chunk to rebuild that inventory, which workers skip in practice). The shared prompt-cache prefix and
path are byte-identical across chunks, so the cache primer still warms every worker. Default 4 is calibrated against the heavy-tail clusters in
. Some output-heavy non-consolidated clusters declare a smaller manifest-level
override so each expensive pass gets its own worker (e.g.
). Pass
--max-passes-per-worker 0
to disable all chunking, including manifest overrides (one worker per cluster).
Phase 5: Create Bookkeeping Tasks (orchestrator-internal)
Entry: exists;
.
Exit: created (1:1 with
), all
.
The task ledger is
orchestrator bookkeeping only (TUI visibility + Phase-7 retry tracking) — workers never read or write it. One
per worker, populating
with
,
,
,
,
,
— all values copied verbatim from
. Track
in
order.
Phase 6: Spawn workers (optional cache-primer first, then M in parallel)
Entry: populated; per-worker spawn prompt files exist at
${output_dir}/worker-prompts/worker-N.txt
.
Exit: all M
calls — across every wave — have returned (the parallel spawn block(s) completed).
Phase 6a: Cache primer (gated on )
A parallel batch from cold start cannot share cache (all M requests dispatch simultaneously, none has finished writing). To warm the prefix, spawn a tiny primer first — foreground (background spawns don't share cache with subsequent foreground spawns).
If
plan.run.cache_primer == true
,
has written
${output_dir}/worker-prompts/cache-primer.txt
. Spawn it in its own assistant message:
the file, pass verbatim as
with
subagent_type=rust-review:rust-review-worker
,
,
description="Rust review cache primer"
, no
. The script wrote the prefix byte-identical to
through the
block — that byte-identity is what gives the parallel workers their cache hit. The primer trailer contains
, which the worker system prompt treats as a first-class mode and returns exactly
worker-PRIMER abort: cache primer (no analysis performed)
in one text response with zero tool calls. Discard the abort line — Phase 7 ignores it (no
id).
Foreground spawn already serializes — no
needed before Phase 6b. Skip Phase 6a entirely if
plan.run.cache_primer == false
.
Phase 6b: Spawn M real workers in parallel (one message per wave of ≤16)
STOP — read this before composing the spawn message.
Workers MUST be spawned
foreground (no
field, or
).
"Parallel" here means
one assistant message containing the wave's calls — that already runs them concurrently. (For large
, split into consecutive waves of ≤16 calls, one message per wave — see "Required spawn shape" below.)
Background spawns are NOT how you parallelize this skill.
Background spawns defeat Phase 6a's primer cache: every worker pays full cache-creation on its first turn (
cache_read_input_tokens=0
), and the primer's ~15 K tokens are wasted M times over. Two real runs had exactly this symptom — every worker started with
.
Before sending the spawn message, audit your draft: every
call must have
no key. If you wrote
, delete it.
Required spawn shape: emit a single assistant message containing the wave's
tool invocations — that one message is what runs them concurrently. Sequential spawning (one
call per message) serializes the review and is also wrong, but that failure is loud (timing); the background-spawn failure is silent (cost).
Waves when exceeds the per-message cap. The harness caps the number of
calls it will dispatch from a single assistant message (observed: ~20 in Claude Code — a real 25-worker run silently kept only the first 20 and had to spawn the remaining 5 in a second message). So when
,
plan the waves up front: split the workers into consecutive waves of
≤16 calls, each wave its own single assistant message. Rules:
- Within a wave: all calls in one message, foreground (no ) — identical shape to a single-wave run.
- Across waves: wave k+1 is a separate message that can only be sent after wave k's calls all return (a tool-use message ends the turn). Waves are therefore serialized with respect to each other — that is correct and loud; accept it. Do not try to overlap them.
- Never reach for to fit more workers in one message. More waves, never background — background defeats the primer cache (see the STOP box) and is the cardinal error this skill guards against.
- Cache across waves: the primer prefix has a ~5-minute cache TTL that refreshes on every hit, so back-to-back waves keep hitting it (the 25-worker run confirmed on its second wave). If a later wave will start more than ~5 minutes after the previous one (very large or slow workers), re-spawn the Phase-6a primer in its own message first to re-warm the prefix before that wave.
- Balance the waves (e.g. → 13+12, not 20+5) so no wave hugs the cap and the last wave isn't a tiny straggler.
- After every wave has returned, proceed to Phase 7 with the full set of M worker results.
For each worker
(in its assigned wave):
Read: ${output_dir}/worker-prompts/worker-N.txt
- Pass the file contents verbatim as the tool's argument:
| Parameter | Value |
|---|
| rust-review:rust-review-worker
|
| (haiku / sonnet / opus) |
| |
| the full text of (no edits) |
| field MUST be omitted, OR set to . Never . See the foreground-spawn warning above. |
The spawn prompt is the single authority. Pass it verbatim — every field is required by the worker's self-check; any deviation triggers
worker-N abort: spawn prompt malformed
.
Anti-patterns to reject:
- Passing (see warning above).
- Cramming more than ~16 calls into one message when is large — the harness silently keeps only the first ~20 and drops the rest. Use balanced waves of ≤16, never background spawns, to cover all M.
- Hand-typing the spawn prompt instead of reading .
- Inserting Task-related instructions ("first call TaskList", "Assigned task id: <N>"). Workers have no Task tools.
- Editing the rendered prompt before passing it (trimming "redundant" fields, collapsing pass lists).
Phase 7: Wait for Workers and Classify Outcomes
Entry: all M Phase-6
calls have returned.
Exit: every cluster has either succeeded or been retried up to the cap;
${output_dir}/findings-index.txt
written.
The Phase-6
invocations block until each worker returns. Inspect each worker's return text and apply this classifier in order — first match wins:
| # | Match (in return text) | Outcome | Action |
|---|
| 1 | | provisional success | Parse the count, then run the artifact validator below before to . |
| 2 | abort: spawn prompt malformed
, abort: pre-work budget exceeded
, or abort: TaskList unavailable
(legacy) | non-retryable orchestrator bug | Stop the run, surface the abort + spawn-prompt path. Re-running the same prompt repeats the failure — pre-work-budget exhaustion always means the worker couldn't pass its self-check, which a retry won't fix. |
| 3 | other | retryable | Mark , set , , increment . |
| 4 | errored or no / token | retryable | Same as #3 (transient worker crash). |
If any non-retryable, stop. Otherwise,
before re-spawning, clear each retryable worker's prefix-space on disk — the Phase-7 index is built from disk, so a crashed attempt's higher-id stragglers (files the replacement never re-emits) would otherwise be resurrected into the report. Loop over the worker's actual
(from its task
), substituting each real prefix for
— do
not run the command with a literal
:
bash
# zsh-safe: `find … -delete` never aborts on no-match (an `rm PREFIX-*.md` glob would).
# Replace `PREFIX1 PREFIX2` with the worker's actual space-separated pass_prefixes.
for pfx in PREFIX1 PREFIX2; do
find "${output_dir}/findings" -maxdepth 1 -type f -name "${pfx}-*.md" -delete
done
Then re-spawn each
retryable with
in one parallel block (cap = 2 attempts per cluster).
was just incremented to
on the first failure, so the guard must admit
to allow the single retry —
would block every retry. A second failure increments to
, which fails
and ends retries. Replacement workers reuse deterministic finding IDs per prefix, so a cleared prefix-space plus a fresh write yields a consistent shard / coverage / disk set.
Sanity-check + write index
For every provisional
cluster, validate the worker-owned shard, coverage file, coverage rows, filed IDs, and claimed finding count against
before marking the task completed. Run one command per completed worker, or validate multiple workers in one command. Both claimed-count forms below are valid; do not pass bare
values without either grouping them after a
flag or repeating the flag.
bash
python3 "${RUST_REVIEW_PLUGIN_ROOT}/scripts/validate_artifacts.py" "${output_dir}/plan.json" \
--worker worker-N --claimed-count worker-N=<claimed_count_from_complete_line>
bash
python3 "${RUST_REVIEW_PLUGIN_ROOT}/scripts/validate_artifacts.py" "${output_dir}/plan.json" \
--worker worker-1 --worker worker-2 \
--claimed-count worker-1=0 worker-2=3
bash
python3 "${RUST_REVIEW_PLUGIN_ROOT}/scripts/validate_artifacts.py" "${output_dir}/plan.json" \
--worker worker-1 --worker worker-2 \
--claimed-count worker-1=0 --claimed-count worker-2=3
If validation exits non-zero, treat the completion as malformed and retryable (classifier row #4): mark the task
, store the validator output in
, set
, and increment
. Missing
findings-index.d/worker-N.txt
, missing
, missing coverage rows, invalid
rows, filed IDs absent from the shard or disk, and claimed-count mismatches are all malformed completions. After the retry cap, leave the cluster task incomplete and surface the validator output in
and the final response. Only validation-clean provisional completions may be
d to
.
Then build the index. The canonical index is the set of finding files
actually on disk, not the shard union — building from disk guarantees that a finding written without a matching shard entry (a worker that crashed between its
and its shard-append, or the single-prefix empty-shard trap the worker prompt warns about) is still picked up by dedup → fp-judge → REPORT/SARIF instead of silently vanishing, and that every index entry resolves to a real file:
bash
# Canonical index = every finding file on disk. `find` never fails on no-match
# (an empty findings/ yields an empty index — the unambiguous "zero findings"
# signal). `sort -u` collapses Phase-7 retry duplicates: replacement workers reuse
# deterministic ids, so the same path appears once.
find "${output_dir}/findings" -maxdepth 1 -type f -name '*.md' 2>/dev/null \
| sort -u > "${output_dir}/findings-index.txt"
# Reconcile against the per-worker shards: any path on disk but in NO shard is an
# orphan whose worker failed to record it. It is already in the index above (so it
# is NOT dropped) — print it so the bookkeeping gap can be surfaced. Non-fatal.
if [ -d "${output_dir}/findings-index.d" ]; then
# Reconcile by basename (finding ids are unique), so a path-format difference
# between the worker `find` and this one (trailing slash, /var↔/private/var)
# cannot manufacture false orphans. Any basename on disk but in no shard is an
# orphan whose worker failed to record it.
comm -13 \
<(find "${output_dir}/findings-index.d" -maxdepth 1 -type f -name 'worker-*.txt' -exec awk 1 {} + 2>/dev/null | sed 's#.*/##; /^[[:space:]]*$/d' | sort -u) \
<(find "${output_dir}/findings" -maxdepth 1 -type f -name '*.md' 2>/dev/null | sed 's#.*/##' | sort -u)
fi
The shards stay the per-worker audit trail (
checks them) and the dedup-judge's crash-recovery fallback, but they no longer gate what reaches the pipeline. For each orphan basename the reconcile prints, map its
to the owning worker via
and note in
that that worker's shard was incomplete — the finding is already in the index (so it is not lost), but the bookkeeping gap should be visible. Still cross-check the index line count against the sum of
worker claims; log mismatches but don't abort.
After task updates and index creation, run
and write
${output_dir}/run-summary.md
with:
- resolved parameters (, , , , capability flags ///, Cargo manifest status)
- worker outcome table (, , claimed finding count, shard line count, coverage-file path (), task status, retry/abort state)
- line count and any mismatch against worker claims
- judge status once Phase 8 finishes, or the reason a judge was skipped/failed
If any Phase-5 cluster task is not
—
or any worker returned a
line carrying the
token (it hit the tool-call cap before searching every pass; its coverage file will show one or more
cleared (NOT SEARCHED — truncated at hard cap)
rows) — include it prominently in
and the final response. A hard-cap-truncated worker is marked
for ledger purposes but is a
partial result: do not let that
status hide the incomplete coverage behind a successful report.
Always run Phase 8 even on zero findings — both judges short-circuit on an empty index: dedup-judge writes a minimal no-op
, and fp-judge writes empty
/
so SARIF consumers get a stable artifact set.
Phase 8: Judge Pipeline (sequential, dedup → fp+severity)
Entry: exists.
Exit: dedup-judge and fp-judge have returned;
,
,
, and ideally
are written.
Each judge's full protocol is its system prompt (
agents/rust-review-{dedup,fp}-judge.md
); spawn prompts pass only per-run variables. Do
not reference
— those files don't exist.
STOP — these two judges run in SEQUENCE, not in parallel. Unlike the Phase-6b workers (which you spawn as M
calls in
one message precisely because that runs them concurrently), the judges have a hard data dependency: fp-judge must see the
/
annotations dedup-judge writes, and it only skips files already carrying
. If you emit both
calls in one message they run concurrently — fp-judge reads findings before any merge annotations exist, judges every duplicate as a separate primary, and (because
doesn't exist yet) trips its "dedup did not run" fallback, producing an inflated, duplicated
/SARIF.
Spawn dedup-judge in its
own assistant message, wait for its
(or
) return,
then spawn fp-judge in a
separate message. Before composing the fp-judge spawn, confirm dedup finished —
Bash: test -f ${output_dir}/dedup-summary.md
must succeed (or you saw the dedup
token).
Never put both judge calls in the same message.
- First message —
Agent(subagent_type="rust-review:rust-review-dedup-judge", description="Dedup judge", prompt=f"output_dir: {output_dir}")
. Wait for its return and classify it (below) before continuing.
- Then, in a separate message —
Agent(subagent_type="rust-review:rust-review-fp-judge", description="FP + severity judge", prompt=f"output_dir: {output_dir}\nsarif_generator_path: {sarif_generator_path}")
— resolve to ${RUST_REVIEW_PLUGIN_ROOT}/scripts/generate_sarif.py
.
Judge failure handling. Same shape as Phase 7's classifier, applied to judge return text:
- → success.
- → non-retryable for that judge. Surface the abort line plus
ls -l ${output_dir}/findings-index.txt
, then still run Phase 8b (its SARIF + safety net guarantees the artifact set even when a judge aborts — see Phase 8b's "fp-judge returned, or the run aborted early" entry), and stop without spawning further judges. "Stop" means do not continue the judge pipeline — it does not mean skip Phase 8b.
- No (help message / error / question) → retryable once.
SendMessage(to=<agentId>, …)
rather than a fresh spawn (the agent already paid the protocol-parse cost). Include the explicit finding paths from . If the second try still fails, surface the transcript and continue to Phase 8b.
Phase 8b: Report safety net (SARIF + REPORT.md)
Entry: fp-judge returned, or the run aborted early.
Exit: ${output_dir}/REPORT.sarif
and
both exist.
bash
test -d "${output_dir}/findings" && python3 "${RUST_REVIEW_PLUGIN_ROOT}/scripts/generate_sarif.py" "${output_dir}"
Run the SARIF generator unconditionally whenever
exists — it is idempotent (full overwrite), emits
for zero-survivor runs, and handles partial runs (findings without
are emitted as
,
exempt from the since their severity was never judge-validated, and marked
/
severity_validated: false
with an
[UNVALIDATED SEVERITY — not judged]
message prefix — so an inferred severity guess can never silently drop them under a
/
filter). Always overwriting protects against an fp-judge that crashed mid-write and left a corrupt
on disk.
If the generator prints a
line on stdout (it also records
invocations[].properties.skipped_findings
in the SARIF and a
notification per dropped file), one or more finding files were unreadable or had no parseable frontmatter and were
excluded from the report. This is a dropped result — surface it prominently in
and the final response with the count and paths, the same way a non-
cluster task is surfaced. Do not let the otherwise-clean SARIF hide the loss.
Then guarantee
exists. Unlike SARIF (mechanical),
is the fp-judge's
curated artifact, so do
not overwrite a judge-written one. (The fp-judge writes
with a
heredoc, not the
tool, because the harness blocks the
tool for subagent report files — do not "fix" the judge by re-mandating
. The orchestrator is the main agent and is
not subject to that block, so its own
below works.) Check for it, and if it is missing (the judge crashed, even its
-heredoc write failed, or it returned the report as chat text instead of writing the file),
the orchestrator writes itself rather than failing the run:
- If the fp-judge returned the report body in its transcript, that text verbatim to .
- Otherwise synthesize it from the on-disk findings: take the survivor primaries (
fp_verdict ∈ {TRUE_POSITIVE, LIKELY_TP}
, no ; if the judge never ran, treat a finding with no as a survivor) listed in , apply from to judged survivors only — unjudged findings (no ) are included regardless of filter and rendered under an Unvalidated (severity not judged)
section with a [UNVALIDATED SEVERITY — not judged]
label, mirroring the SARIF behavior so a strict filter never silently drops them — and a mirroring the fp-judge template — YAML frontmatter (, , , , ), a severity-distribution table, then one section per reported finding grouped by severity (embed the Description / Code / Data flow / Impact / Recommendation body for CRITICAL/HIGH; reference the finding file for MEDIUM/LOW).
Either way, note in
${output_dir}/run-summary.md
that
was orchestrator-synthesized (not judge-authored). Skip the SARIF generator and this check only if
doesn't exist (Phase 2 failed). After this phase, update
${output_dir}/run-summary.md
with judge / SARIF / report status.
Phase 9: Return Report
Entry: Phase 8b complete.
Exit: every item in
Success Criteria verified true;
returned to the caller.
Before composing the response, walk the
Success Criteria checklist below and confirm each bullet against on-disk artifacts (
for cluster tasks,
/
for the files). If any criterion fails, surface the failure prominently in the response — do
not hide a partial run behind a successful report.
Then
Read ${output_dir}/REPORT.md
and return its content to the caller. Append an Artifacts list pointing at
,
,
,
,
,
,
.
Finding file frontmatter — three stages
Authoritative schema:
agents/rust-review-worker.md
("Finding File Format"). Three-stage write:
- Worker — base fields (, , , , , , ) + seven body sections.
- Dedup-judge — adds on duplicates, or + on primaries that absorbed.
- FP+Severity judge — adds + on every primary; on survivors (/) also adds , , , .
Bug classes / clusters
Authoritative:
prompts/clusters/manifest.json
. 37 bug classes live in
-gated clusters (so the cluster always runs); of those, 35 always fire and 2 —
(TRAITADV) and
(CLOSUREPANIC) in
— additionally carry
, so they only fire when
. 69 bug classes across all clusters when every conditional gate is enabled. The
cluster is gated on
(all its bug classes require
); PATHJOIN and TOCTOU are gated behind
via
, and PACKEDREF lives in the conditional
cluster (
); PTREXPOSE stays always-on via the
cluster.
and
are fully consolidated (their sub-prompts are not re-read at runtime).
Success Criteria
The phase exits already cover most of this; the orchestrator-visible end-state is:
- Every Phase-5 cluster task is (verify via ).
${output_dir}/run-summary.md
exists and records resolved scope/context, Cargo manifest probe result, worker claims vs index count, task status, and judge/SARIF status.
- Every primary finding (no ) has + ; every survivor (/) also has , , , .
- exists, severity-filtered per (Phase 8b safety net guarantees this even when the fp-judge fails to write it).
- exists (Phase 8b safety net guarantees this).