Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

PII Detector (Compliance Guardrail)

Auto-checks forms, schemas, auth flows and APIs for personal-data risks before Claude writes the code, mapped to US privacy regulations.

Security & ReviewIntermediate13014AI score 8/10Last updated: May 26, 2026

What it does

  • Auto-triggers on forms, schemas, migrations, auth flows, API routes, webhooks, seed/factory files, delete/export functions, and cron jobs.
  • Detects sensitive field names (email, ssn, cvv, dob, token, biometric, ip_address...) and runs checks before generating code, then emits already-fixed code.
  • Applies CCPA/CPRA, HIPAA, PCI-DSS, COPPA, GLBA, BIPA, FERPA and the FTC Act, translated into concrete code requirements.
  • Three modes — planning/review, generation, and full repo scan — with a compact 🔴 / 🟡 / 🟢 finding report and language-matched fixes.

Who it's for

  • Backend and full-stack developers handling signup, payment, health, or student data
  • Tech leads and security/compliance owners who want privacy review baked into coding
  • Startups shipping SaaS to the US market

Example uses

  1. Ask for a signup form and get code with password hashing, minimized data collection, and deletion-ready fields.
  2. Design a payments model and get PCI-DSS callouts: never store CVV, tokenize card numbers, never log payment bodies.
  3. Say "audit my repo for PII" and receive a structured report with file and line references.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/goSprinto/compliance-skills/HEAD/pii-detector/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the pii-detector folder from the GitHub repo goSprinto/compliance-skills into my ~/.claude/skills/pii-detector/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/goSprinto/compliance-skills.git && mkdir -p ~/.claude/skills && cp -r compliance-skills/pii-detector ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Install Claude Code and open a terminal.
  2. Clone the repo: git clone https://github.com/goSprinto/compliance-skills.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r compliance-skills/pii-detector ~/.claude/skills/
  5. Verify the layers/, modes/, rules/, and patterns/ subfolders came along — the skill references them.
  6. Restart Claude Code and try "help me design a user schema" to confirm the skill fires.