codex-gemini-mcp AGENTS.md

codex-gemini-mcp AGENTS.md is an instructions file for Codex, OpenCode from donghae0414/codex-gemini-mcp. It costs 1,226 tokens per session, scanned A, original, MIT.

Project instructions for a TypeScript server that lets an agent use local Codex and Gemini command-line tools. They describe the code layout, conventions, validation, job handling and logging.

In plain words
What is it for?
Finding the right files, following project conventions, and understanding how tool requests, background jobs, saved prompts and logs work.
Why use it?
They give an agent the project knowledge it needs before changing code, reducing guesswork and misplaced edits.

Instructions file for CodexOpenCode

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/donghae0414/codex-gemini-mcp/agents-md.svg)](https://agentmods.dev/instructions/donghae0414/codex-gemini-mcp/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/donghae0414/codex-gemini-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/donghae0414/codex-gemini-mcp/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,226 This file is loaded in full into every session.
When invoked 1,226 The same file — it is already loaded in full.
Security scan A 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.1 $0.01226 $0.01226
Opus 5 $0.00613 $0.00613
Sonnet 5 $0.00245 $0.00245
Haiku 4.5 $0.00123 $0.00123

Measured 5d ago against content hash b1da1ee575ae, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

codex-gemini-mcp AGENTS.md scanned grade A 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 5d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

│ ├── runtime/ # foreground/background child_process execution
AGENTS.md · 89 lines

How it starts

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

PROJECT KNOWLEDGE BASE

Generated: 2026-02-25T19:13:00+09:00 Commit: 2dadb48 Branch: main Project: codex-gemini-mcp

OVERVIEW

CLI-only TypeScript MCP server that proxies local codex and gemini CLIs. Main concerns are strict input validation, foreground/background execution, file-backed job persistence, and structured JSONL logging.

STRUCTURE

./
├── src/
│   ├── mcp/            # MCP server registration + stdio entrypoints
│   ├── tools/          # zod schemas + provider handlers
│   ├── providers/      # CLI argument builders per provider
│   ├── runtime/        # foreground/background child_process execution
│   ├── logger/         # JSONL request/response/error logging
│   ├── config.ts       # env defaults, caps, path resolution
│   ├── prompt-store.ts # jobs/prompts file persistence helpers
│   ├── job-management.ts
│   └── types.ts
├── src/AGENTS.md       # src-specific map and constraints
├── README.md
├── package.json
└── tsconfig.json

WHERE TO LOOK

Task Location Notes
Codex MCP tools src/mcp/codex-server.ts registers ask_codex + job tools
Gemini MCP tools src/mcp/gemini-server.ts registers ask_gemini + job tools
Stdio startup src/mcp/codex-stdio-entry.ts, src/mcp/gemini-stdio-entry.ts stdio transport + startup logs to stderr
Input validation src/tools/schema.ts model regex, job-id schema, enum constraints
Ask orchestration src/tools/codex-handlers.ts, src/tools/gemini-handlers.ts foreground/background branch point
Provider command mapping src/providers/codex.ts, src/providers/gemini.ts CLI args and provider defaults
Foreground runtime src/runtime/run-cli.ts timeout, output cap, terminal error mapping
Background runtime src/runtime/run-cli-background.ts detached process + status transitions
Job persistence src/prompt-store.ts atomic JSON writes, file discovery by job id
Job APIs src/job-management.ts wait/check/kill/list behavior
Logging pipeline src/logger/index.ts, src/logger/file-sink.ts, src/logger/event.ts JSONL file write + stderr mirror
Runtime/env config src/config.ts timeout clamp, output cap, runtime paths

Read the full file on GitHub · 89 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. 5d ago First seen · 89 lines · 1,226 tokens per session scan A b1da1ee575ae

Subscribe to this mod's changes

codex-gemini-mcp AGENTS.md is an instructions file published in the GitHub repository donghae0414/codex-gemini-mcp (5 stars, last pushed 6mo ago), licensed MIT. It adds 1,226 tokens to every session, about $0.0061 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.