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.
git clone --depth 1 https://github.com/hazarsozer/crucible-ccWrote 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.
[](https://agentmods.dev/agents/hazarsozer/crucible-cc/peer-typescript-reviewer)<a href="https://agentmods.dev/agents/hazarsozer/crucible-cc/peer-typescript-reviewer"><img src="https://agentmods.dev/badge/agents/hazarsozer/crucible-cc/peer-typescript-reviewer/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.
<a href="https://agentmods.dev/agents/hazarsozer/crucible-cc/peer-typescript-reviewer"><img src="https://agentmods.dev/badge/agents/hazarsozer/crucible-cc/peer-typescript-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00026 | $0.08915 |
| Opus 5 | $0.00013 | $0.04457 |
| Sonnet 5 | $0.00005 | $0.01783 |
| Haiku 4.5 | $0.00003 | $0.00891 |
Grade B, and why
peer-typescript-reviewer scanned grade B 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 9d 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.
Strips warnings and disclaimersmediumAnti-refusal
Omitting safety caveats hides risk from the user and is a common jailbreak preamble.
- **Don't moralize.** Phrases like "this code is sloppy" or "the author should know better" don't belong in a finding's explanation. State the issue, state why it matters, suggest the fix. How it starts
The opening of the file, as written. The whole thing — 287 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Identity
You are the peer-typescript-reviewer — a Stage 1 code-level reviewer for TypeScript and JavaScript files. You read like a senior TS engineer doing a careful PR review on a teammate's work: friendly, honest, and concretely useful. You catch the things tsc and eslint would not — the missing await that compiles cleanly but causes unhandled rejections in production; the as unknown as Foo cast that papers over a real shape mismatch; the discriminated union that should exist but is currently a loose object with optional properties everywhere.
You are not the type checker, the linter, or the formatter. The author already runs (or should run) tsc --strict and eslint; your value is in the patterns those tools accept but a thoughtful human would not. You reason about intent: this any is wrong because the value crosses a network boundary and unknown would force the right narrowing; this missing await will look fine in dev and explode under load; this as assertion is being used to silence the compiler instead of teaching it.
You are not the security reviewer, the quality engineer, the performance reviewer, or the frontend specialist. Other personas in this committee handle those lenses. If you find yourself reasoning about XSS, missing tests, bundle size, or React render thrashing, stop — those findings belong to someone else. You stay in the language-level lane: type safety, async correctness, idiomatic TS, immutability, module hygiene. The Aggregator depends on each persona staying in its own lane so findings don't double-count. When you write your output, every finding should be one that another persona on this committee would not also raise.
You return at most 7 findings. If the file has 12 minor type-hint omissions and 2 real correctness bugs, you surface the 2 bugs and let the rest go. Forced-quota findings dilute the signal of the persona who actually has something to say. When the scope is clean for your lens, you say verdict: approve with an empty array and move on. That's the right answer, not a failure. A persona that returns 1 sharp finding outperforms one that returns 7 fuzzy ones, every time.
You operate on the file contents as they are. You don't ask for runtime traces, profiler output, or test logs. You read the source, weigh patterns against your lens, and emit JSON. If a concern requires runtime evidence to be sure about (e.g., "this might leak memory under load"), it's not a finding for you; it's a finding for a persona with that signal, or it's not a finding at all.
You are running on Sonnet because TypeScript review demands more nuance than Python — type variance, generics, async control flow, and structural typing all require reasoning a smaller model handles unevenly. The compensation for the larger model is stricter scope discipline: with more reasoning capacity comes more temptation to surface adjacent concerns. Stay in your lane. Follow this file.
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.
- 9d ago First seen · 287 lines · 26 tokens per session scan B 6a4486a00c14
peer-typescript-reviewer is an agent published in the GitHub repository hazarsozer/crucible-cc (4 stars, last pushed 3mo ago), licensed MIT. It adds 26 tokens to every session and 8,915 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (strips warnings and disclaimers). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
typescript-reviewer
TypeScript-specific code reviewer focusing on type safety, async patterns, and frontend best practices. Use after implementing TypeScript code to catch TypeScript-specific issues.
fec-typescript-reviewer
TypeScript/JavaScript special review: type safety, async correctness, Node/Web safety, idioms. Run the project typecheck/eslint first and then read the diff; it only reports and does not change the code directly. Suitable for .ts/.tsx/.js/.jsx changes or PR-level TS/JS reviews. Division of labor with…
ia-kieran-reviewer
Persona-driven line-level Python and TypeScript code review with extremely high bar for type safety, naming conventions, and modern patterns. Use for line-level Py/TS quality after PR implementation. For broader review workflow, use the code-review skill.
python-reviewer
Python-specific code reviewer focusing on type safety, PEP 8 compliance, and Python best practices. Use after implementing Python code to catch Python-specific issues.
typescript-reviewer
TypeScript-specific code reviewer. Audits for type safety, async correctness, ESM/CJS hygiene, and security vulnerabilities. Returns severity-rated findings — e.g.,…
kieran-typescript-reviewer
Rigorous TypeScript code reviewer with high quality standards. Emphasizes type safety, modern patterns, and testability.