docs-to-mcp: Instructions file for Codex

AGENTS.md

docs-to-mcp AGENTS.md is an instructions file for Codex, OpenCode from gabrielassisxyz/docs-to-mcp. It costs 776 tokens per session, scanned A, original, MIT.

Repository instructions for docs-to-mcp, a project that turns a documentation website into a searchable local service for coding agents. AGENTS.md explains how to build, run, test, and maintain that project.

In plain words
What is it for?
It guides documentation crawling, Markdown ingestion, SQLite full-text indexing, local serving, testing, and release checks.
Why use it?
It helps keep the documentation index accurate for the software version in use and defines the checks required before changes are published.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions AGENTS.md.

This is gabrielassisxyz/docs-to-mcp's own configuration. It tells Codex and OpenCode how to work on docs-to-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything docs-to-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to gabrielassisxyz/docs-to-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/gabrielassisxyz/docs-to-mcp/master/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/gabrielassisxyz/docs-to-mcp

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 docs-to-mcp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/gabrielassisxyz/docs-to-mcp/agents-md.svg)](https://agentmods.dev/instructions/gabrielassisxyz/docs-to-mcp/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/gabrielassisxyz/docs-to-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/gabrielassisxyz/docs-to-mcp/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 776 This file is loaded in full into every session.
When invoked 776 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00776 $0.00776
Opus 5 $0.00388 $0.00388
Sonnet 5 $0.00155 $0.00155
Haiku 4.5 $0.00078 $0.00078

Measured 7d ago against content hash 45517515c597, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

docs-to-mcp 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 7d 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 · 35 lines

How it starts

The opening of the file, as written. The whole thing — 35 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AGENTS.md — read this first

docs-to-mcp turns a documentation site into a searchable local MCP server: Firecrawl captures the pages, an ingester normalizes them into a Markdown corpus with frontmatter, an SQLite FTS5 index makes them searchable, and a FastMCP stdio server exposes search_docs / get_doc / list_docs / refresh_docs to a coding agent. The point is that the agent answers from the real docs of the version in use, not from whatever version it memorized in training. README.md is the user-facing reference — commands, discovery rules, ranking rationale, known limitations; this file is only what an agent needs to work on the repo.

Build / run / test

Python 3.11+, managed with uv. There is no build step beyond dependency sync.

uv sync                                    # install deps (incl. dev group: pytest)
uv run pytest                              # full test suite — offline, fast, no Firecrawl needed
uv run docs-to-mcp --help                  # CLI: crawl | categories | reindex | serve
bin/ci                                     # the exact pre-PR gate: gitleaks + shellcheck + pytest
  • Tests are hermetic: they exercise ingestion, indexing, sitemap parsing, the pipeline, and a server smoke test against fixtures. A test that needs a live Firecrawl or network access does not belong in the suite.
  • Only crawl, categories, and refresh_docs need a Firecrawl API (FIRECRAWL_API_URL, optionally FIRECRAWL_API_KEY); serve, reindex, and search work entirely offline against data/docs/<slug>/.
  • data/ is git-ignored regenerable output, never source. Do not commit captured corpora.

Conventions

  • Default branch: master. Never commit to it directly — branch, then PR.
  • Work in your own worktree, never in the main tree. Before your first write, run bin/worktree new <type>/<kebab-desc> and do everything in the directory it prints. It branches off a fresh origin/master and keeps the worktree outside the repo. The main tree stays on master as a clean reference. Remove the worktree with bin/worktree rm <task> once the branch is merged.
  • After clone, run bin/install-hooks once. It points git at .githooks/: a gitleaks pre-commit secret scan and a commit-msg gate that rejects assistant attribution.
  • Commits follow Conventional Commits (<type>(scope): <description>); branches follow <type>/<kebab-description>. One logical change per commit.
  • No assistant attribution in commits or PRs — no Co-Authored-By: naming an assistant, no "Generated with", no robot emoji. The commit-msg hook enforces it; do not bypass it.
  • bin/ci green before opening a PR. It is the whole gate: "green locally" is the same claim as "green in CI".
  • PR bodies explain what + why: a short summary of the change, then the decisions and trade-offs behind it. The diff already shows the what.
  • Comments explain intent (why), not mechanics (what). Keep existing comments — they carry the reasoning behind non-obvious choices (chrome stripping, lead-only indexing, sitemap-first discovery).

Read the full file on GitHub · 35 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. 7d ago First seen · 35 lines · 776 tokens per session scan A 45517515c597

Subscribe to this mod's changes

docs-to-mcp AGENTS.md is an instructions file published in the GitHub repository gabrielassisxyz/docs-to-mcp (0 stars, last pushed 11d ago), licensed MIT. It adds 776 tokens to every session, about $0.0039 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-31.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens