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.
npx agentmods add skills/danielrosehill/claude-data-analyst-plugin/pii-flagnpx skills add danielrosehill/Claude-Data-Analyst-plugin --skill pii-flaggit clone --depth 1 https://github.com/danielrosehill/Claude-Data-Analyst-pluginWrote 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.
[](https://agentmods.dev/skills/danielrosehill/claude-data-analyst-plugin/pii-flag)<a href="https://agentmods.dev/skills/danielrosehill/claude-data-analyst-plugin/pii-flag"><img src="https://agentmods.dev/badge/skills/danielrosehill/claude-data-analyst-plugin/pii-flag.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00054 | $0.00614 |
| Opus 5 | $0.00027 | $0.00307 |
| Sonnet 5 | $0.00011 | $0.00123 |
| Haiku 4.5 | $0.00005 | $0.00061 |
Grade A, and why
pii-flag scanned grade A with 0 findings 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 6d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PII Flag
First-pass privacy scan of a dataset. Identifies columns likely to contain PII and samples matching rows.
Inputs
- Path to a dataset file or folder.
- Optional: sensitivity level (
standarddefault,strictalso flags quasi-identifiers like ZIP, DOB, gender).
Recommended CLI tooling
duckdb— regex-based column scans at speed.uv run --with presidio-analyzer python -c '...'— Microsoft Presidio for ML-based entity detection when regex is insufficient.ripgrep(rg) — for ad-hoc text-file scans before structured analysis.
Detection strategy
Run column-level checks in two passes:
Pass 1: Name-based heuristics
Match column headers (case-insensitive) against PII vocabulary:
- Direct:
name,first_name,last_name,email,phone,mobile,address,street,ssn,nino,passport,national_id,credit_card,iban,account_number,dob,date_of_birth - Quasi-identifiers (strict mode):
zip,postcode,gender,ethnicity,age
Pass 2: Value-based regex on string columns
Sample up to 1000 rows per string column and test:
- Email:
[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,} - Phone (loose):
\+?\d[\d\s\-()]{7,}\d - Credit card (Luhn-validated): 13–19 digits
- IPv4, IPv6
- Israeli ID (9 digits with checksum), US SSN (
\d{3}-\d{2}-\d{4}) - Free-text columns: run Presidio if available for PERSON, LOCATION, ORGANIZATION entities
Output
Write <dataset>-pii-report.md containing:
| Column | Detection basis | Confidence | Sample matches (redacted) | Recommendation |
Confidence levels: high (regex + name match), medium (one of the two), low (value pattern only).
End the report with:
- Count of rows containing any PII
- Suggested remediation (drop column, hash, tokenize, pseudonymise, or redact)
- Callout if combining non-PII columns could re-identify individuals (k-anonymity concern)
Never print raw PII values into the report — always mask (e.g. j***@example.com, ***-**-1234).
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.
- 6d ago First seen · 55 lines · 54 tokens per session scan A 2c01436ddab5
pii-flag is a skill published in the GitHub repository danielrosehill/Claude-Data-Analyst-plugin (11 stars, last pushed 4mo ago), licensed MIT. It adds 54 tokens to every session and 614 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
sn-search-academic
用于学术调研、论文精读、相关工作梳理、百科知识查询和引用链追溯。.
ppt-analysis
PPT (.pptx/.ppt) 全量解析。覆盖:所有 slide 文本/表格/图表提取、嵌入图片 caption、纯图片 slide 渲染识别、数据标签提取。.
sn-image-base
Base-layer skill for the SenseNova-Skills project, providing low-level APIs for image generation, recognition (VLM), and text optimization (LLM). This skill does not preprocess inputs; it only calls backend services and returns results. This skill is not user-facing and is intended for upper-layer skills only.
outlier-detection-and-quality-assessment
执行全面的异常值检测与数据质量评估,利用 IQR 方法识别异常值并结合偏度、峰度分析数据分布特征,适用于非正态分布数据的预处理阶段。.
category-statistics
提取指定类别列并统计各类别数量与占比,生成高分辨率的柱状图、饼图等组合可视化报告,适用于分类数据的分布情况分析。.
pie-chart-data-analysis
Step1 读取文件并统计所有 Sheet 的行数,确认数据规模以决定处理策略。.