compromise AGENTS.md

compromise AGENTS.md is an instructions file for Codex, OpenCode from spencermountain/compromise. It costs 1,249 tokens per session, scanned A, original, MIT.

A set of instructions for coding agents working with compromise, a rule-based JavaScript library for analysing and transforming English text. It points to the library’s concepts, matching syntax, tags, API methods, and common recipes.

In plain words
What is it for?
Use it before editing code that uses compromise, especially when matching text, identifying parts of speech, transforming documents, or choosing the correct API method.
Why use it?
It gives an agent the library’s documented mental model and supported syntax before it writes code. That reduces errors caused by guessing how text selections, transformations, or tags work.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/spencermountain/compromise/agents-md
Clone the repo
git clone --depth 1 https://github.com/spencermountain/compromise

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for compromise AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/spencermountain/compromise/agents-md.svg)](https://agentmods.dev/instructions/spencermountain/compromise/agents-md)
Your own site
<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>
Per session 1,249 This file is loaded in full into every session.
When invoked 1,249 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash 22f9f137adbd, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

AGENTS.md · 93 lines

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

  1. 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:
    let 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)
    
    Use .clone() to transform a copy without touching the original.

Read the full file on GitHub · 93 lines

Changes

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.

  1. 4d ago First seen · 93 lines · 1,249 tokens per session scan A 22f9f137adbd

Subscribe to this mod's changes

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.

Related

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.

huggingface/transformers · 773 tokens

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.

huggingface/transformers · 5 tokens

natural-japanese AGENTS.md

Instructions for coji/natural-japanese, covering agents.md, このスキルについて, openskills 経由で読み込む場合 and 検査スクリプトの実行.

coji/natural-japanese · 760 tokens

humanizer-ru AGENTS.md

AGENTS.md instructions for Vladimir-Human/humanizer-ru, covering agents.md — карта репозитория для агентов-редакторов, что это за репозиторий, инварианты (нарушение ломает ci), полный чек-лист одной командой and куда что класть.

Vladimir-Human/humanizer-ru · 1,795 tokens

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.

data-privacy-stack/presidio-research · 759 tokens

ai-microcore AGENTS.md

Instructions for Nayjest/ai-microcore, covering agents.md, commands, architecture and conventions.

Nayjest/ai-microcore · 1,454 tokens