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/jmpijll/unraid-code-mode-mcp/agents-mdgit clone --depth 1 https://github.com/jmpijll/unraid-code-mode-mcpWrote 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/jmpijll/unraid-code-mode-mcp/agents-md)<a href="https://agentmods.dev/instructions/jmpijll/unraid-code-mode-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/jmpijll/unraid-code-mode-mcp/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.00709 | $0.00709 |
| Opus 5 | $0.00354 | $0.00354 |
| Sonnet 5 | $0.00142 | $0.00142 |
| Haiku 4.5 | $0.00071 | $0.00071 |
Grade A, and why
unraid-code-mode-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 3d 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 — 50 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Guidance for AI coding agents working on unraid-code-mode-mcp. This file is consumed by Cursor, Claude Code, and similar tools to set repo conventions.
Project shape
- TypeScript ESM, Node ≥ 20.
- Source under
src/. Tests undersrc/__tests__/. Scripts underscripts/. Cloudflare scaffold undercf-worker/. - The MCP server exposes exactly two tools:
searchandexecute. Don't add more without an architectural discussion — the whole point of "code mode" is the small surface. - Two namespaces are reserved in the type system:
local(the LAN GraphQL API) andconnect(the future Unraid Connect cloud API). v0.1 only implementslocal. New code that needs a credential map should accept'local' | 'connect'even if it only handleslocaltoday.
House style
- Match the conventions in
unifi-code-mode-mcp. When in doubt, look there first. - Prefer
import typefor type-only imports (ESLint enforces this). - No
console.login production code. Useconsole.error/console.warnfor diagnostics; the lint config allows those. - Avoid
ascasts in test files — write tiny type-narrowing helpers instead. - Don't add comments that narrate the code ("// loop over items"). Comment when the code's intent isn't obvious.
- Don't proactively add new docs files. Extend
README.mdor the existingdocs/*.md.
Required workflow
Before declaring work "done":
npm run lint
npm run typecheck
npm test
npm run build
All four must pass. The MCP Inspector smoke test in CI greps for search and execute in tools/list output — if you rename either tool, update the workflow.
Commits
Conventional Commits. When committing AI-assisted work, include a Co-authored-by: trailer. Example:
feat(sandbox): expose findOperationsByName in search executor
Co-authored-by: Cursor <[email protected]>
Areas that bite
- QuickJS asyncify. Host functions exposed via
newAsyncifiedFunctionappear synchronous inside the sandbox even though they're real promises in Node. Don't accidentally turn them into pure host promises in the prelude — the sandbox would deadlock. - GraphQL document synthesis.
dispatchOperationbuilds thequery opName($a: A!) { field(a: $a) { selection } }string from introspected arg types. If you changeIndexedOperation, double-checkbuildOperationDocumentand thedispatch.test.tssnapshots. - TLS. A custom
Dispatcherpassed toundicibypassesMockAgent. Tests that need the mock agent must not trigger the custom-dispatcher path. Unit-test the dispatcher builder in isolation instead. - SDL fallback.
src/spec/local-fallback.graphqlis committed and refreshed byscripts/update-spec.ts. The Unraid SDL contains custom directives like@usePermissions—buildSchemais called withassumeValidSDL: true. Don't strip that flag.
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.
- 3d ago First seen · 50 lines · 709 tokens per session scan A c6d4e08b9d74
unraid-code-mode-mcp AGENTS.md is an instructions file published in the GitHub repository jmpijll/unraid-code-mode-mcp (1 stars, last pushed 10d ago), licensed MIT. It adds 709 tokens to every session, about $0.0035 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.
Other instructions, from other repositories
agents AGENTS.md
AGENTS.md instructions for cloudflare/agents, covering agents.md, project overview, repository structure, nested agents.md files and setup.
payload AGENTS.md
AGENTS.md instructions for payloadcms/payload, a project described as: Payload is the open-source, fullstack Next.js framework, giving you instant backend superpowers. Get a full TypeScript backend and admin panel instantly. Use Payload as a headless CMS or for building powerful applications.
NornicDB AGENTS.md
Instructions for orneryd/NornicDB, covering nornicdb development guide for ai agents, core philosophy, 🎯 golden rules, 1. prove value before merging and 2. test-driven bug fixes.
cloudflare-workers-nextjs-saas-template AGENTS.md
Instructions for LubomirGeorgiev/cloudflare-workers-nextjs-saas-template, covering project context, vinext, general coding rules, control flow and comments.
fastify-boilerplate AGENTS.md
Instructions for marcoturi/fastify-boilerplate, covering agents.md, project overview, quick reference, architecture and layer boundaries (critical).
apollo-mcp-server AGENTS.md
Instructions for apollographql/apollo-mcp-server, covering claude.md, project overview, build & test commands, build and run all tests.