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/spencermountain/compromise/agents-mdgit clone --depth 1 https://github.com/spencermountain/compromiseWrote 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/spencermountain/compromise/agents-md)<a href="https://agentmods.dev/instructions/spencermountain/compromise/agents-md"><img src="https://agentmods.dev/badge/instructions/spencermountain/compromise/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.01249 | $0.01249 |
| Opus 5 | $0.00624 | $0.00624 |
| Sonnet 5 | $0.00250 | $0.00250 |
| Haiku 4.5 | $0.00125 | $0.00125 |
Grade A, and why
compromise 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 — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — using compromise
Guidance for AI coding agents (and humans) writing code with compromise, a rule-based English NLP library. This file is the map; the linked docs are the territory. Prefer them over guessing — the published docs at observablehq.com are interactive notebooks and do not render as readable text.
Read these first
| File | What's in it |
|---|---|
| docs/concepts.md | the document/View/Term model, mutability, build tiers — the mental model |
| docs/match-syntax.md | the .match() mini-language (#Tag, [capture], (a|b), ~fuzzy~, {root}, …) |
| docs/tags.md | the complete, valid part-of-speech tagset |
| docs/api.md | every method, signature, and one-line description |
| docs/recipes.md | copy-paste solutions to common tasks |
| llms-full.txt | all of the above concatenated into one file |
| docs/SKILL.md | example skill for using compromise in a coding agent |
30-second mental model
import nlp from 'compromise'
let doc = nlp('she sells seashells by the seashore.') // parse → a View of the whole document
doc.verbs().toPastTense() // select verbs, transform them (mutates doc)
doc.text() // 'she sold seashells by the seashore.'
nlp(text)returns a View. Almost every method returns a View, so calls chain.- Find with
.match(),.has(),.if(), or named selections like.people(),.numbers(). - Transform with
.toPastTense(),.replace(),.tag(),.normalize(), etc. - Output with
.text(),.json(),.out('array'),.debug().
Rules that prevent most mistakes
- Transforms mutate the document in place. The View they return is the selection, not the
whole doc. Read the final result from the original variable:
Uselet doc = nlp('I walk to work') doc.verbs().toPastTense() doc.text() // ✅ 'I walked to work' // ❌ nlp('I walk to work').verbs().toPastTense().text() → 'walked work' (selection only).clone()to transform a copy without touching the original.
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 · 93 lines · 1,249 tokens per session scan A 22f9f137adbd
compromise AGENTS.md is an instructions file published in the GitHub repository spencermountain/compromise (12,151 stars, last pushed 10d ago), licensed MIT. It adds 1,249 tokens to every session, about $0.0062 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
transformers copilot-instructions.md
Instructions for huggingface/transformers, covering copilot-instructions.md guide for hugging face transformers, core project structure, coding conventions for hugging face transformers, copying and inheritance and testing.
transformers AGENTS.md
Instructions for huggingface/transformers, a project described as: 🤗 Transformers: the model-definition framework for state-of-the-art machine learning models in text, vision, audio, and multimodal models, for both inference and training.
natural-japanese AGENTS.md
Instructions for coji/natural-japanese, covering agents.md, このスキルについて, openskills 経由で読み込む場合 and 検査スクリプトの実行.
humanizer-ru AGENTS.md
AGENTS.md instructions for Vladimir-Human/humanizer-ru, covering agents.md — карта репозитория для агентов-редакторов, что это за репозиторий, инварианты (нарушение ломает ci), полный чек-лист одной командой and куда что класть.
presidio-research AGENTS.md
AGENTS.md instructions for data-privacy-stack/presidio-research, covering agents.md — codebase patterns, project setup, canonicalmapper, five issue types (issuetype enum) and resolution dataclass fields.
ai-microcore AGENTS.md
Instructions for Nayjest/ai-microcore, covering agents.md, commands, architecture and conventions.