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 instructions/kpshinnik/docs_masked/agents-mdgit clone --depth 1 https://github.com/kpshinnik/docs_maskedWrote 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/instructions/kpshinnik/docs_masked/agents-md)<a href="https://agentmods.dev/instructions/kpshinnik/docs_masked/agents-md"><img src="https://agentmods.dev/badge/instructions/kpshinnik/docs_masked/agents-md.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 | $0.00612 | $0.00612 |
| Opus 5 | $0.00306 | $0.00306 |
| Sonnet 5 | $0.00122 | $0.00122 |
| Haiku 4.5 | $0.00061 | $0.00061 |
Grade A, and why
docs_masked AGENTS.md 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 4d 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 — 46 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — правила работы в этом репозитории
Здесь живёт сам инструмент обезличивания. Если вы ищете правило, которое нужно
положить в свой проект, оно лежит в templates/AGENTS-rule.md.
Инварианты, которые нельзя ломать
- Круговорот точен.
unmask(mask(x), mode="sequential") == xдля всех поддерживаемых форматов. На каждый формат есть тест. - Единственная точка выхода в сеть —
llm.send(), и она обязана вызватьassert_clean()до сетевого запроса. Новые провайдеры добавляются внутрьllm.py, а не мимо него: иначе теряется единственная гарантия, ради которой всё это существует. - Сейф пишется с правами 0600 и никогда не логируется.
- Ошибка детекции должна быть безопасной. Лучше замаскировать лишнее, чем пропустить. Слияние двух людей в один тег допустимо, пропуск персональных данных — нет.
- Чужие документы не попадают в репозиторий. Каталоги
examples/иprivate/в.gitignore. Тесты, которым нужны настоящие договоры, пропускаются, если файлов нет. Всё, что лежит вsamples/, синтетическое.
Разработка
python3 -m pytest tests/ -q # тесты
python3 -m pii_shield.cli selftest # быстрая проверка круговорота
python3 samples/make_samples.py # пересоздать тестовые документы
python3 _build_html.py # пересобрать README.html
Как добавить детектор
Функция с декоратором @detector(...) в pii_shield/detectors.py плюс тест.
Приоритет решает конфликты перекрытий: 90+ — подтверждённые контрольной суммой
или ключевым словом, 80–89 — устойчивые форматы, 70–79 — эвристики.
Метку нужно добавить в pii_shield/tags.py (LABELS) и, если она должна
работать по умолчанию, в DEFAULT_LABELS в pii_shield/masker.py.
Как добавить формат
Класс-наследник DocumentAdapter в pii_shield/documents.py с read_units()
и write_units(), зарегистрированный в _ADAPTERS. Если формат табличный,
переопределите read_contexts() — заголовок колонки резко повышает точность
на голых числах. Обязателен тест на точный круговорот.
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.
- 4d ago First seen · 46 lines · 612 tokens per session scan A 65c0cfbc29a2
docs_masked AGENTS.md is an instructions file published in the GitHub repository kpshinnik/docs_masked (15 stars, last pushed 17d ago), licensed MIT. It adds 612 tokens to every session, about $0.0031 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 instructions, from other repositories
rizzo-pii CLAUDE.md
Instructions for Rizzo-AI-Academy/rizzo-pii, covering claude.md, cos'è questo progetto, ambiente — vincoli critici e non ovvi, mappa della repo and tassonomia: 22 tag (dettaglio in tassonomiatag.md).
pii-guard AGENTS.md
Instructions for danyuchn/pii-guard, covering agents.md, project overview, tech stack, architecture and commands.
pii-guard CLAUDE.md
Instructions for danyuchn/pii-guard, a project described as: 繁體中文(台灣)個人資料去識別化工具,讓業務文件可以安全地送進 AI 處理 / Reversible Traditional-Chinese (Taiwan) PII de-identification for LLM workflows — fully local.
piighost CLAUDE.md
Claude Code instructions for Athroniaeth/piighost, covering claude.md, project overview, development commands, architecture and anonymization pipeline.
papyrus AGENTS.md
AGENTS.md instructions for abhichat85/papyrus, covering agents.md, what papyrus is, the one rule, core principles and layout.
papyrus CLAUDE.md
Claude Code instructions for abhichat85/papyrus: See AGENTS.md. It is the single source of truth for how to work in this repository — architecture rules, commands, how to add a parser, and the definition of done.