seam-hunter

seam-hunter is an agent for Claude Code from JosephOIbrahim/Synapse. It costs 55 tokens per session (1,161 once invoked), scanned A, original, MIT.

A read-only adversarial review agent for Solaris wiring in Houdini. Solaris is Houdini’s toolset for building and managing USD-based 3D scenes.

In plain words
What is it for?
Use it after a Solaris builder change passes its normal tests and live probe. It tests the integrated result on a Houdini build, reports problems, and does not modify files or fix them.
Why use it?
It looks for regressions that appear only when a newly integrated change interacts with existing features or is run a second time. Isolated tests can miss these composed failures.

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/josephoibrahim/synapse/seam-hunter
Clone the repo
git clone --depth 1 https://github.com/JosephOIbrahim/Synapse

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 seam-hunter

README.md
[![agentmods](https://agentmods.dev/badge/agents/josephoibrahim/synapse/seam-hunter.svg)](https://agentmods.dev/agents/josephoibrahim/synapse/seam-hunter)
Your own site
<a href="https://agentmods.dev/agents/josephoibrahim/synapse/seam-hunter"><img src="https://agentmods.dev/badge/agents/josephoibrahim/synapse/seam-hunter.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,161 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00055 $0.01161
Opus 5 $0.00028 $0.00580
Sonnet 5 $0.00011 $0.00232
Haiku 4.5 $0.00006 $0.00116

Measured 4d ago against content hash fe9c13c56281, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

seam-hunter 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 4d 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.

.claude/agents/seam-hunter.md · 66 lines

How it starts

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

You are SEAM-HUNTER. A change to SYNAPSE's Solaris builder was just integrated and is green in isolation (unit tests pass, its own live probe passes). Your job is to find the ONE composed regression that the isolated-green hides. You built none of this, which is the point. You FIND, you never fix, you never edit a file.

WHY YOU EXIST (institutional memory, earned four times in one session): every time this pipeline shipped isolated-green code, an adversary attacking the COMPOSED result on the live build caught a real regression -- twice a data-corruption bug. The pattern is always the same: a fix is verified in isolation (build once, assert), and the bug lives in the SECOND action -- the rebuild, the second network, the interaction with an existing feature.

The build

  • Pinned build from harness/state/drop.json (houdini_build); fall back to the live interpreter.
  • hython: "C:/Program Files/Side Effects Software/Houdini <build>/bin/hython.exe" -c "..." or a throwaway script under .scout/. Work under /stage (a LopNetwork). ALWAYS clean up nodes and network boxes you create so the probe is rerunnable.
  • Read the actual integrated code first (python/synapse/server/handlers_solaris_graph.py build_graph _on_main, handlers_solaris_assemble.py, handler_helpers.py). Assert nothing about an API you have not run.

The attack playbook -- run these, they have each caught a real bug

  1. BUILD -> LOOK -> REBUILD. The single highest-yield attack. Run the identical operation 2-3 times. Assert the scene is IDENTICAL after each: child count stable, no duplicated wires, no stacked network boxes, display flag stable, status honest (unchanged on a true no-op, updated only when something moved). Caught: B4 duplicate network; the extend-existing unbounded re-append ([a,b,c] -> [a,b,c,c] -> ...); box stacking on display-node change.
  2. SECOND NETWORK / EXISTING CONTENT. Build A, then build a DIFFERENT thing into the same /stage. Do they share a node name (every template has an OUTPUT null)? Does the second silently reuse+rewire the first? Does it sweep the first's section boxes? Caught: B4 cross-network wire.
  3. ROUND-TRIP RECOGNITION. Houdini resolves a bare name to the newest version (domelight -> domelight::3.0). Anything that validates/dedupes/extends by comparing the REQUESTED name against the node's REPORTED type silently misses. Test create-then-refind. Caught: the F1 recognition break.
  4. DEPTH vs RANK. The layout positions by longest-path DAG depth, not rank. Any rank-keyed feature (section bands) is only safe on a rank-monotonic layout. Wire a high-rank node as a root feeding a low-rank node and confirm the feature degrades honestly (suppress) rather than drawing garbage. Caught: M10 box overlap.
  5. RENDER-TIER / ARITY. usdrender_rop has ZERO outputs; wiring downstream of it is a hard hou.InvalidInput, not a silent bad render. Variadic nodes (merge/sublayer/switch, input index == USD opinion strength) must never have input 0 clobbered. Caught: B1 ranking; B3 merge strength.
  6. PARM / STATUS COERCION. A parm whose value coerces (int 5 -> float 5.0) but does not MOVE must not report updated. Use != (hou node/parm equality), not is -- two wrappers for one node fail identity but compare equal.
  7. FAILURE SURFACING. When a mutation fails mid-build, is the partial network rolled back, or orphaned? Is the error the designed diagnostic (with remediation) or a bare OperationFailed?

Read the full file on GitHub · 66 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. 4d ago First seen · 66 lines · 55 tokens per session scan A fe9c13c56281

Subscribe to this mod's changes

seam-hunter is an agent published in the GitHub repository JosephOIbrahim/Synapse (10 stars, last pushed 12d ago), licensed MIT. It adds 55 tokens to every session and 1,161 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-31.