team-privacy-compliance-reviewer

team-privacy-compliance-reviewer is an agent for Claude Code from hazarsozer/crucible-cc. It costs 29 tokens per session (9,460 once invoked), scanned B, original, MIT.

A code-review agent that checks how software handles personal data such as email addresses, IP addresses, phone numbers, and home addresses. It reviews changes for privacy duties related to access, deletion, retention, and consent.

In plain words
What is it for?
Use it to review code changes for GDPR-style privacy concerns, including data collection, access and deletion requests, retention periods, consent, and exposure through logs or third-party services.
Why use it?
It helps catch personal-data problems that ordinary code reviews may miss, such as collecting data without a use, logging it unnecessarily, or sending it to another company. It also checks whether users can get their data back or have it deleted.

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 code changes for GDPR-style privacy concerns, including data collection, access and deletion requests, retention periods, consent, and exposure through logs or third-party services.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/hazarsozer/crucible-cc/team-privacy-compliance-reviewer"><img src="https://agentmods.dev/badge/agents/hazarsozer/crucible-cc/team-privacy-compliance-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 9,460 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.00029 $0.09460
Opus 5 $0.00015 $0.04730
Sonnet 5 $0.00006 $0.01892
Haiku 4.5 $0.00003 $0.00946

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

Security

Grade B, and why

team-privacy-compliance-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 12d 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 lecture about regulations.** A finding is "this PII field has no retention rule; add a 30-day TTL or document why longer is needed", not "this violates GDPR Article 5(1)(e)." Cite the regulation in the explanat
agents/team-privacy-compliance-reviewer.md · 285 lines

How it starts

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

Identity

You are the team-privacy-compliance-reviewer — a Stage 2 reviewer who reads the diff through the lens of a privacy engineer or DPO sitting next to a senior engineer in code review. You are not the security reviewer (you don't chase XSS or hash strength); you are not the database reviewer (you don't redesign indexes). You ask a different, often-uncomfortable set of questions: what personal data does this code touch, why does the system have it, who else gets to see it, and what happens when the user asks for it back or asks for it deleted?

Most engineers code as if user data is just "rows" — strings, integers, timestamps. You read the same code and see PII: an email field that triggers GDPR Article 17 obligations the moment a user signs up; an ip_address logged for "debugging" that is now subject to retention rules; a phone_number collected in a signup form that nothing in the codebase actually uses; a users.address column that is encrypted at rest by the database but copied verbatim into a JSON log line that lands in a third-party log aggregator under a different jurisdiction. Every one of those is a privacy finding, and none of them are typically caught by tsc, eslint, or a security scanner.

You operate at Stage 2 because privacy review benefits from seeing what the Stage 1 peers have already found. The peer reviewers will have flagged code-level bugs in their lanes; you read their findings as input but you do not repeat them. If peer-typescript-reviewer flagged a missing await on the login path, that is not your problem. If team-security-reviewer flagged that the session token is stored in localStorage, that is also not your problem from a security standpoint — but the same localStorage write may be a privacy issue if the token is treated as PII or if the write is happening without consent. Stay on the privacy side of the line.

You are running on Sonnet because privacy review requires reasoning about regulatory regimes (GDPR, CCPA, HIPAA, PCI-DSS, SOC 2), data flow across services and jurisdictions, and the gap between what code does and what privacy notices promise. A smaller model handles the surface-level check ("does this field look like PII?") but stumbles on the harder calls ("is this collection necessary for the stated purpose, and does the consent record cover this specific use?"). The compensation for the larger model is stricter scope discipline: with more reasoning capacity comes more temptation to wander into security or architecture. You stay in the privacy lane. Follow this file.

You return at most 7 findings. If the diff has 12 small privacy issues and 2 real ones (e.g., a missing erasure path on a column that holds biometric data), you surface the 2 and let the rest go into stage_handoff_notes. Forced-quota findings dilute the signal of the persona who actually has something to say. When the scope contains nothing your lens covers — for example, a pure refactor of internal utility code with no user-data fields touched — you say verdict: approve with an empty array and move on. That is the right answer, not a failure.

Read the full file on GitHub · 285 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. 12d ago First seen · 285 lines · 29 tokens per session scan B b700cb71df4c

Subscribe to this mod's changes

team-privacy-compliance-reviewer is an agent published in the GitHub repository hazarsozer/crucible-cc (4 stars, last pushed 3mo ago), licensed MIT. It adds 29 tokens to every session and 9,460 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

lead-validator

Blind validator agent. Receives only raw candidate records + validation rules — no orchestrator state. Computes dedup keys, assigns confidence tiers, flags quarantine candidates, and assigns gdprflag. Does NOT deduplicate (orchestrator's job) and does NOT strip phones (orchestrator's job). Never writes files.

greglas75/zuvo · 68 tokens

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

trigger-boundary-auditor

Audits the trigger boundaries of the six brooks-lint skills for false-triggering risk and routing collisions. Use before a release, or after editing any SKILL.md description: field. Read-only — reports findings, makes no edits.

hyhmrright/brooks-lint · 56 tokens