From qa-mobile-pack
Redacts PII (emails, phone numbers, credit cards, PESEL, NIP, IBAN, parcel/tracking IDs, BrowserStack session UUIDs, bearer tokens) from logs, fixtures, or pasted text before sending to external APIs. Use when the user says "redact", "anonymize", "scrub", "sanitize logs", or "clean fixture before paste".
How this skill is triggered — by the user, by Claude, or both
Slash command
/qa-mobile-pack:redact-piiThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Redact personal and sensitive identifiers from `$ARGUMENTS` (or pasted text if no arguments). Replace each match with the listed token. Output the redacted text first, then a one-line counts report.
Redact personal and sensitive identifiers from $ARGUMENTS (or pasted text if no arguments). Replace each match with the listed token. Output the redacted text first, then a one-line counts report.
Apply each regex (case-insensitive unless noted) and replace with the bracketed token.
| Token | Regex |
|---|---|
[EMAIL] | \b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}\b |
[PHONE] | (?:\+48[\s-]?)?(?:\d{3}[\s-]?\d{3}[\s-]?\d{3})\b plus \+1[\s-]?\(?\d{3}\)?[\s-]?\d{3}[\s-]?\d{4}\b plus generic \+\d{1,3}[\s-]?\d{4,14}\b |
[CARD] | \b(?:\d[ -]?){13,19}\b then Luhn-validate before replacing |
[PESEL] | \b\d{11}\b (only when not already matched as [CARD] or [PHONE]) |
[NIP] | \b\d{3}[-\s]?\d{3}[-\s]?\d{2}[-\s]?\d{2}\b or bare \b\d{10}\b |
[PACKAGE_ID] | \b[A-Z0-9]{22}PL\b (24 chars total, ends with PL) |
[SESSION_ID] | \b[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\b |
[TOKEN] | \b(?:Bearer\s+)?[A-Za-z0-9+/=_\-]{32,}\b (skip if matches another pattern) |
[IBAN] | \b[A-Z]{2}\d{2}[A-Z0-9]{4,30}\b |
EMAIL, IBAN, PACKAGE_ID, SESSION_ID, CARD (Luhn-check), PHONE, PESEL, NIP, TOKEN. Order prevents shorter patterns from cannibalizing longer ones.CARD: strip spaces and dashes, then run Luhn (sum doubled-from-right digits, mod 10 == 0). Skip replacement if Luhn fails.Redacted: N emails, N phones, N cards, N PESELs, N NIPs, N package IDs, N session IDs, N tokens, N IBANs (omit zero-count categories).<redacted text>
Redacted: 3 emails, 2 phones, 1 card, 1 PACKAGE_ID
npx claudepluginhub rabusek/qa-mobile-packProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.