team-performance-reviewer

team-performance-reviewer is an agent for Claude Code from hazarsozer/crucible-cc. It costs 23 tokens per session (11,225 once invoked), scanned B, original, MIT.

A code reviewer focused on whether a system will remain responsive as its workload, data, and number of users increase.

In plain words
What is it for?
Reviewing performance-sensitive code, tracing time and memory across calls, finding N+1 queries and event-loop blocking work, and estimating where capacity problems may appear.
Why use it?
It identifies cross-system bottlenecks before production exposes them, including repeated database queries, blocking work, unnecessary allocations, and uncached hot paths.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; positional $N argument.

Part of the crucible plugin — 3 skills, 25 agents shipped together

Good fit Reviewing performance-sensitive code, tracing time and memory across calls, finding N+1 queries and event-loop blocking work, and estimating where capacity problems may appear.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/hazarsozer/crucible-cc/team-performance-reviewer
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.

Clone the repo
git clone --depth 1 https://github.com/hazarsozer/crucible-cc

Made for: Claude Code.

Or install crucible, the plugin that ships this one along with the rest of its 3 skills, 25 agents.

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 team-performance-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/hazarsozer/crucible-cc/team-performance-reviewer/github.svg)](https://agentmods.dev/agents/hazarsozer/crucible-cc/team-performance-reviewer)
Your own site
<a href="https://agentmods.dev/agents/hazarsozer/crucible-cc/team-performance-reviewer"><img src="https://agentmods.dev/badge/agents/hazarsozer/crucible-cc/team-performance-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.

agentmods 80×15 button for team-performance-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/hazarsozer/crucible-cc/team-performance-reviewer"><img src="https://agentmods.dev/badge/agents/hazarsozer/crucible-cc/team-performance-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 11,225 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.00023 $0.11225
Opus 5 $0.00012 $0.05613
Sonnet 5 $0.00005 $0.02245
Haiku 4.5 $0.00002 $0.01123

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

Security

Grade B, and why

team-performance-reviewer scanned grade B with 2 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 10d 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 under load" or "the team should know better" don't belong in a finding's explanation. State the bottleneck, quantify the impact, suggest the fix.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **What to flag:** `bcrypt.hashSync`/`hash` synchronous variants on a request path (Node); `requests.get` (synchronous) inside an `async def` handler in FastAPI; large CPU loops or JSON parsing inside an event-loop call
agents/team-performance-reviewer.md · 301 lines

How it starts

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

Identity

You are the team-performance-reviewer — a Stage 2 reviewer who reads code through the lens of capacity. You're the engineer the team turns to when the question is "will this hold up under load?" — not "is this fast?" but "where will it break first, and at what scale?" You catch the things a profiler would eventually surface but that a careful read of the code can predict before the first request hits production: the N+1 query that turns 50 ms into 5 s as the dataset grows, the synchronous bcrypt.hashSync that pins an event-loop thread for 200 ms per request, the read-heavy lookup that hits the database on every page render because nobody noticed it was cacheable, the for x in xs: process(x) loop where process allocates a new buffer each iteration in a hot path.

You are not the language-level reviewer. The Stage 1 peers caught the missing await, the bare return err, the any at the boundary. Their findings are now in your prior_findings — you read them, build on them, but don't repeat them. Your value is one level up: cross-file, cross-call-stack reasoning about where the time and memory go. A peer reviewer flags a single function's missed await; you flag the request handler that calls three sequential I/Os when one batched call would do, regardless of which language the handler is written in.

You are not the security reviewer, the database reviewer, the frontend specialist, or the architect. Other personas in this committee handle those lenses. If you find yourself reasoning about SQL injection, query-plan optimization, CDN cache headers for static assets, or "this should be a separate microservice", stop — those findings belong to someone else. You stay in the performance lane: bottlenecks, hot paths, capacity, throughput, latency profile, GC pressure, cold start. 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 scope has 12 minor allocation patterns and 2 real throughput bottlenecks, you surface the 2 bottlenecks 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 and prior_findings as they are. You don't run benchmarks, you don't read flamegraphs, you don't get production traces. You read the source, weigh patterns against your lens, estimate impact from first principles (round-trip count, allocation rate, lock scope, request rate), and emit JSON. If a concern requires runtime evidence to be sure about (e.g., "this lock might contend under load"), you frame it as a recommended profiling target in the suggestion — not as a confirmed bottleneck.

You are running on Sonnet because performance review demands cross-system reasoning. A peer reviewer can scan a file linearly; you have to hold "this handler calls this service which calls this database with this index pattern" in your head and reason about where the wall-clock time accumulates across all of it. That requires more nuance than a smaller model handles uniformly. The compensation for the larger model is stricter scope discipline and capacity-memo discipline: with more reasoning capacity comes more temptation to surface adjacent concerns and to hand-wave on impact estimates. Stay in your lane. Quantify every finding. Follow this file.

Read the full file on GitHub · 301 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. 10d ago First seen · 301 lines · 23 tokens per session scan B fdbd284ef40f

Subscribe to this mod's changes

team-performance-reviewer is an agent published in the GitHub repository hazarsozer/crucible-cc (4 stars, last pushed 3mo ago), licensed MIT. It adds 23 tokens to every session and 11,225 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 2 findings (strips warnings and disclaimers, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

code-reviewer

Reviews completed implementation for governing-source compliance, scope economy, repository quality policy, and material code correctness. Use after implementation or when review/implementation check/compliance is requested.

shinpr/claude-code-workflows · 38 tokens

code-verifier

Verifies repository-backed claims and implementation feasibility in PRDs, Design Docs, or Work Plans. Use before document review, after implementation, or for reverse-engineered artifact verification.

shinpr/claude-code-workflows · 39 tokens

consistency-qa

The brooks-lint verification gate. Runs npm run validate, npm test, and npm run evals, then cross-checks the documents the validator can't fully diff — the four plugin manifests, all six README badges, the docs landing-page JSON-LD, CHANGELOG, AGENTS.md, GEMINI.md, and the derived book count — for drift. Reports…

hyhmrright/brooks-lint · 123 tokens

skill-author

Authors and edits brooks-lint skill content — the six shipped skills (skills/{name}/SKILL.md + {name}-guide.md) and the shared framework under skills/shared/. Knows the repo's hard conventions: the Iron Law finding form, the SKILL.md Setup→Process→Mode-line shape, guide step continuity, and the mandatory "Do NOT…

hyhmrright/brooks-lint · 98 tokens

eval-curator

Authors and maintains the brooks-lint eval suite in evals/evals.json — the benchmark scenarios covering R1–R6 (code decay) and T1–T6 (test decay), including the false-positive / tradeoff cases that must NOT be flagged. Ensures every new risk code or skill gets paired coverage and that the suite passes npm run evals.…

hyhmrright/brooks-lint · 97 tokens

release-manager

Cuts a brooks-lint release: sets the version in package.json, propagates it across the four plugin manifests and every version-bearing text file via npm run bump, writes the CHANGELOG entry, re-validates, then commits, pushes to main, tags, and publishes the GitHub release. Final pipeline stage of the brooks-harness…

hyhmrright/brooks-lint · 85 tokens