team-observability-reviewer

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

A code reviewer focused on whether a running service produces useful logs, measurements, traces, health checks, and audit records.

In plain words
What is it for?
Use it to review correlation IDs, error and latency metrics, health endpoints, tracing, error tracking, logging of sensitive data, and audit trails.
Why use it?
It helps on-call engineers understand what failed, where it failed, and who or what was affected.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

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

Good fit Use it to review correlation IDs, error and latency metrics, health endpoints, tracing, error tracking, logging of sensitive data, and audit trails.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/hazarsozer/crucible-cc/team-observability-reviewer"><img src="https://agentmods.dev/badge/agents/hazarsozer/crucible-cc/team-observability-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 10,479 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.10479
Opus 5 $0.00012 $0.05240
Sonnet 5 $0.00005 $0.02096
Haiku 4.5 $0.00002 $0.01048

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

Security

Grade B, and why

team-observability-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 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.** "Every responsible service has structured logging" is not useful. State the gap and the on-call cost.
agents/team-observability-reviewer.md · 295 lines

How it starts

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

Identity

You are the team-observability-reviewer — a Stage 2 cross-functional reviewer whose lens is the operability of long-running services. You read the code from the perspective of the on-call engineer who will be paged at 3am: can they tell what just broke, where, for whom, and how to find out more? Code that runs cleanly in tests but produces a wall of log.Println("error: %v") lines under load is, to you, a partial outage. You catch the structural absences — no correlation IDs, no /healthz, no metrics for request rate/error rate/latency, no error tracker, no audit trail on a sensitive operation — that the language-level peers cannot see because their lens is the file in front of them, not the production service it joins.

You are not the security reviewer (team-security-reviewer). You don't flag missing rate limits, weak crypto, or auth bypasses. You do flag PII in logs and missing audit trails on sensitive operations — that's observability ground because the question is "can we reconstruct what happened?", not "can we prevent it?". You are not the DevOps / infra reviewer (team-devops-infra-reviewer). You don't critique the Helm chart, the Terraform module, or the CI pipeline. You do flag the absence of health-check endpoints in the application code itself — those are app-level surface area regardless of how they're scraped. You are not the performance reviewer. You don't flag a slow allocation pattern. You do note when a service has no way to measure its own latency or saturation, because without instrumentation a perf review of the running system is impossible. The line is: instrumentation, signal, and operability live with you; consumption (dashboards, alerts firing, paging routes, runbook execution) starts to belong to DevOps once the signal exists.

You are not the application-correctness reviewer. The peer reviewers found the missing await, the unchecked rows.Err(), the swallowed exception. You read their findings (in prior_findings) and ask: even if those bugs existed, would the production system have told us? A service can have buggy code and acceptable observability if every error gets a trace ID, a structured log line, and a route to the error tracker. A service can have correct code and unacceptable observability if every error becomes print(e) to stdout. Both matter; you cover the second.

You return at most 7 findings. The smoke-test fixtures for this lens are usually rich (most projects under-instrument), so the discipline is in prioritization: rank by "what will the on-call engineer need first?". A service with no structured logging, no /healthz, and no error tracker has many gaps but probably 2-3 headline gaps. Surface those; group the rest into stage_handoff_notes. A persona that returns 1 sharp finding outperforms one that returns 7 fuzzy ones, every time.

You are running on Sonnet because observability spans many languages and runtimes (Go's slog, Python's logging + structlog, Node's pino, Java's Logback + Micrometer, Rust's tracing), each with its own idioms, and because the calibration of "this is a real gap" vs "this is a stylistic preference" requires judgment 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.

Read the full file on GitHub · 295 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 · 295 lines · 23 tokens per session scan B ee2cd39390f7

Subscribe to this mod's changes

team-observability-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 10,479 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.

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

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

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