unraid-code-mode-mcp AGENTS.md

unraid-code-mode-mcp AGENTS.md is an instructions file for Codex, OpenCode from jmpijll/unraid-code-mode-mcp. It costs 709 tokens per session, scanned A, original, MIT.

A repository instruction file for AI coding agents working on the unraid-code-mode-mcp project. It describes the project structure, coding style, and required development workflow.

In plain words
What is it for?
Guiding code changes, tests, scripts, and commits in the unraid-code-mode-mcp repository.
Why use it?
It helps agents follow the project's TypeScript conventions and avoid changing the deliberately small MCP interface without discussion.

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/jmpijll/unraid-code-mode-mcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/jmpijll/unraid-code-mode-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 unraid-code-mode-mcp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/jmpijll/unraid-code-mode-mcp/agents-md.svg)](https://agentmods.dev/instructions/jmpijll/unraid-code-mode-mcp/agents-md)
Your own site
<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>
Per session 709 This file is loaded in full into every session.
When invoked 709 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.00709 $0.00709
Opus 5 $0.00354 $0.00354
Sonnet 5 $0.00142 $0.00142
Haiku 4.5 $0.00071 $0.00071

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

Security

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.

AGENTS.md · 50 lines

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 under src/__tests__/. Scripts under scripts/. Cloudflare scaffold under cf-worker/.
  • The MCP server exposes exactly two tools: search and execute. 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) and connect (the future Unraid Connect cloud API). v0.1 only implements local. New code that needs a credential map should accept 'local' | 'connect' even if it only handles local today.

House style

  • Match the conventions in unifi-code-mode-mcp. When in doubt, look there first.
  • Prefer import type for type-only imports (ESLint enforces this).
  • No console.log in production code. Use console.error/console.warn for diagnostics; the lint config allows those.
  • Avoid as casts 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.md or the existing docs/*.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 newAsyncifiedFunction appear 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. dispatchOperation builds the query opName($a: A!) { field(a: $a) { selection } } string from introspected arg types. If you change IndexedOperation, double-check buildOperationDocument and the dispatch.test.ts snapshots.
  • TLS. A custom Dispatcher passed to undici bypasses MockAgent. 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.graphql is committed and refreshed by scripts/update-spec.ts. The Unraid SDL contains custom directives like @usePermissionsbuildSchema is called with assumeValidSDL: true. Don't strip that flag.

Read the full file on GitHub · 50 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. 3d ago First seen · 50 lines · 709 tokens per session scan A c6d4e08b9d74

Subscribe to this mod's changes

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.

Related

Other instructions, from other repositories