codex-subagents-mcp AGENTS.md

codex-subagents-mcp AGENTS.md is an instructions file for Codex, OpenCode from leonardsellem/codex-subagents-mcp. It costs 887 tokens per session, scanned B, original, MIT.

Instructions for an MCP server that loads custom AI sub-agents from Markdown or JSON files. A sub-agent is a configured helper with its own task instructions.

In plain words
What is it for?
Use it to set the agents directory, define agent profiles and personas, configure approval and sandbox settings, and register agents by their filenames.
Why use it?
It lets developers add or update specialized helpers by editing files in an agents directory instead of changing the server’s code.

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/leonardsellem/codex-subagents-mcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/leonardsellem/codex-subagents-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 codex-subagents-mcp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/leonardsellem/codex-subagents-mcp/agents-md.svg)](https://agentmods.dev/instructions/leonardsellem/codex-subagents-mcp/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/leonardsellem/codex-subagents-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/leonardsellem/codex-subagents-mcp/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 887 This file is loaded in full into every session.
When invoked 887 The same file — it is already loaded in full.
Security scan B 1 finding. 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.00887 $0.00887
Opus 5 $0.00443 $0.00443
Sonnet 5 $0.00177 $0.00177
Haiku 4.5 $0.00089 $0.00089

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

Security

Grade B, and why

codex-subagents-mcp AGENTS.md scanned grade B with 1 finding 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

- Align metadata with Codex profiles you run under; enforce behavior in `~/.codex/config.toml`.
AGENTS.md · 77 lines

How it starts

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

Agents

Author custom sub‑agents without code changes by adding files to an agents registry directory. The MCP server loads definitions from agents/*.md and agents/*.json. Agent names map to file basenames (e.g., agents/perf.md registers agent perf). The server may include a few example built‑ins for demos, but prefer files on disk (or use an ad‑hoc inline agent when both persona and profile are provided).

  • Point the server to your agents directory via --agents-dir or CODEX_SUBAGENTS_DIR. It also auto-detects ./agents or ./.codex-subagents/agents when not provided.
  • Keep personas task‑oriented and concise; avoid generic, unfocused instructions.

Markdown agent (frontmatter + persona)

Create agents/<name>.md:

---
profile: debugger
approval_policy: on-request   # never | on-request | on-failure | untrusted
sandbox_mode: workspace-write # read-only | workspace-write | danger-full-access
---
You are a pragmatic performance analyst. Identify hotspots, propose minimal, measurable fixes, and outline validation steps with lightweight metrics.

Required: profile (loader defaults to default if omitted). Optional: approval_policy, sandbox_mode. The body is the persona text injected for the sub‑agent.

JSON agent

Create agents/<name>.json:

{
  "profile": "debugger",
  "persona": "You plan and validate safe DB migrations with rollbacks.",
  "approval_policy": "on-request",
  "sandbox_mode": "workspace-write"
}

Required: profile, persona. Optional: approval_policy, sandbox_mode.

Tips

  • Validate registry: tools.call name=validate_agents (optionally pass { "dir": "/abs/path" }).
  • List available agents: tools.call name=list_agents.
  • Align metadata with Codex profiles you run under; enforce behavior in ~/.codex/config.toml.
  • Keep personas short, specific, and action‑biased; prefer concrete checklists over philosophy.
  • See also: docs/OPERATIONS.md.

Usage Hint

When a task matches a sub‑agent specialty, call the MCP tool:

Read the full file on GitHub · 77 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 · 77 lines · 887 tokens per session scan B a2d41709d145

Subscribe to this mod's changes

codex-subagents-mcp AGENTS.md is an instructions file published in the GitHub repository leonardsellem/codex-subagents-mcp (160 stars, last pushed 8mo ago), licensed MIT. It adds 887 tokens to every session, about $0.0044 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). 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

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

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

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,182 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,345 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

next.js 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