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/floodtide/dom-docx/agents-mdgit clone --depth 1 https://github.com/floodtide/dom-docxWrote 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/floodtide/dom-docx/agents-md)<a href="https://agentmods.dev/instructions/floodtide/dom-docx/agents-md"><img src="https://agentmods.dev/badge/instructions/floodtide/dom-docx/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.04041 | $0.04041 |
| Opus 5 | $0.02021 | $0.02021 |
| Sonnet 5 | $0.00808 | $0.00808 |
| Haiku 4.5 | $0.00404 | $0.00404 |
Grade A, and why
dom-docx 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 — 396 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent guide: HTML → DOCX (dom-docx)
Use this when an AI agent needs to produce editable Word documents from HTML. dom-docx converts semantic, inline-styled HTML into native OOXML (paragraphs, runs, lists, tables)—not screenshots or layout hacks.
Workflow: agent writes HTML fragment → convertHtmlToDocx(html) → .docx buffer → save or attach.
import { convertHtmlToDocx } from "./converter.js";
const docx = await convertHtmlToDocx(htmlFragment);
await writeFile("output.docx", docx);
Pass a body fragment only (no <html>, <head>, or <body> required). The converter wraps content in a letter-size document with 1″ margins and Arial 14pt body text.
Design goal for agents
Optimize for three properties (in order):
- Valid, native structure — paragraphs, list numbering, table rows/cells, hyperlinks
- Visual fidelity — layout that survives Word/LibreOffice rendering
- Simplicity — fewer nested wrappers, inline styles over external CSS, no JS
Think “Word-friendly semantic HTML,” not “web app layout.”
What converts best
Tier 1 — Excellent (~90–96% visual fidelity)
| Pattern | Notes |
|---|---|
| Headings + paragraphs | <h1>–<h3>, plain <p>, optional color, font-size, text-align |
| Lists | <ul>, <ol>, nested lists; one idea per <li> |
| Simple tables | border="1", cellpadding, width:100%, header row, text-align:right on numeric columns |
| Inline formatting | <strong>, <em>, <a href="…">, <code>, <br> |
| Inline highlights | <span style="background:#cfc">term</span> on short phrases |
| Blockquote | border-left:4px solid #333; padding-left:12px |
| Horizontal rule | <hr> between sections |
| Thematic breaks | Section headings, not layout divs |
Tier 2 — Good (~80–92%)
| Pattern | Notes |
|---|---|
| Shaded banner blocks | <div style="background:#eaeaea;padding:10px 16px"> with headings inside |
| Table row/cell styling | background, color on <tr> or <td>; subtotal rows with <strong> |
| Financial / KPI tables | Label column left-aligned, numbers right-aligned; pastel row bands |
| Flex rows/columns | display:flex; gap:8px with 2–4 child divs (converted to borderless tables) |
| Multi-side bordered boxes | border:1px solid #ccc; padding:12px on a div (uses a 1×1 table wrapper when needed) |
| Typography colors | color:#666 on subtitles, accent colors on deltas (#2a9d8f, #e76f51) |
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 · 396 lines · 4,041 tokens per session scan A 32caeb9d3728
dom-docx AGENTS.md is an instructions file published in the GitHub repository floodtide/dom-docx (484 stars, last pushed 11d ago), licensed MIT. It adds 4,041 tokens to every session, about $0.0202 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
wasp AGENTS.md
AGENTS.md instructions for wasp-lang/wasp, covering wasp monorepo, contribution policy, repository structure, build & development and code conventions.
mcp-ms-office-documents AGENTS.md
Instructions for ForLegalAI/mcp-ms-office-documents, covering agents.md, project overview, architecture, key conventions and filename generation.
sonicjs CLAUDE.md
Claude Code instructions for SonicJs-Org/sonicjs, covering sonicjs ai development guidelines, core technology stack, workspace boundary (conductor), architecture direction: document model (authoritative) and the 5 document tables (migration 0002documents.sql).
vkr-builder CLAUDE.md
Instructions for maxbarsukov/vkr-builder, covering vkr-builder, как себя вести and основные команды.
wasp CLAUDE.md
Claude Code instructions for wasp-lang/wasp, a project described as: The batteries-included full-stack framework for the AI era. Develop JS/TS web apps (React, Node.js, and Prisma) using declarative code that abstracts away complex full-stack features like auth, background jobs, RPC, email sending, end-to-end type…
ai AGENTS.md
AGENTS.md instructions for vercel/ai, covering agents.md, project overview, repository structure, key directories and core package dependencies.