-
Notifications
You must be signed in to change notification settings - Fork 0
PII
Scan diffs and the working tree for personal information — emails, personal paths, API keys, phone numbers — before you commit or push. It ships the agent-facing pii-scrubber skill: the interactive layer that remediates findings rather than just blocking on them.
claude plugin install pii@cricketsOn Antigravity, install by path (see Install crickets plugins). The skill runs on both hosts.
| Primitive | Kind | What it does |
|---|---|---|
pii-scrubber |
skill | scans the current git diff (or working tree) for PII, surfaces each finding as file:line with a redaction suggestion, and loops until clean. Invoke it before any git push. |
The skill drives the detector at scripts/check-no-pii.sh; it locates it via $AGENT_TOOLKIT_PATH or the sibling-clone convention.
-
Standalone —
requires: []; runs on both hosts. -
The interactive layer of a defense-in-depth stack. The scrubber fixes PII before the deterministic enforcers would block: pair it with the pre-push git hook (
templates/hooks/pre-push) and a CI gate for hard enforcement. That three-layer setup — interactive skill · mandatory pre-push hook · CI gate — is how crickets guards its own public repo. The hook is the final, non-negotiable enforcer; the skill is the courtesy layer that keeps you from fighting it in a loop.
A blocking check alone is adversarial — you hit it at push time and bisect your own diff to find the offending line. Splitting the job in two fixes that: the agent-facing scrubber catches PII early and helps you redact it once, while the deterministic hook + CI gate guarantee nothing slips through even if the skill is skipped. Belt and suspenders — the right posture for a public repo where a leaked email or key is permanent.
- Install crickets plugins — all three install modes.
- Plugin anatomy — what a crickets plugin is + its structure.
- Customization types — skill vs the hook/CI enforcers it pairs with.
- Compatibility — supported hosts.
🔧 How-to
🏛️ Architecture
-
Plugins
- Developer Workflows
- Developer Safety
- Code Review
- GitHub CI
- Wiki Maintenance
- PII Guardrail
- Token Audit · Status Line Meter
- Customization model
- Build & distribution
- Host adapters
- Harness interface ↔ Agent M