codex-bridge

codex-bridge is a skill for Claude Code, Codex from bahayonghang/my-ai-cli-toolkit. It costs 102 tokens per session (884 once invoked), scanned A, original, MIT.

A workflow for asking the Codex command-line tool to review a plan, implement approved code changes, revise an implementation, or check findings. The command-line tool is a separate coding-agent interface that can work in controlled read-only or workspace-writing modes.

In plain words
What is it for?
Use it for plan reviews, approved implementation stages, focused review rounds, and verification of conclusions based on extrapolated examples.
Why use it?
It gives a structured way to pass project context and instructions to Codex, then check and combine its response. This reduces missing files, unclear decisions, and unverified handoffs between agents.

Skill for Claude CodeCodex

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 skills/bahayonghang/my-ai-cli-toolkit/codex-bridge
Any agent
npx skills add bahayonghang/my-ai-cli-toolkit --skill codex-bridge
Clone the repo
git clone --depth 1 https://github.com/bahayonghang/my-ai-cli-toolkit

Made for: Claude Code, Codex.

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-bridge

README.md
[![agentmods](https://agentmods.dev/badge/skills/bahayonghang/my-ai-cli-toolkit/codex-bridge.svg)](https://agentmods.dev/skills/bahayonghang/my-ai-cli-toolkit/codex-bridge)
Your own site
<a href="https://agentmods.dev/skills/bahayonghang/my-ai-cli-toolkit/codex-bridge"><img src="https://agentmods.dev/badge/skills/bahayonghang/my-ai-cli-toolkit/codex-bridge.svg" alt="Measured on agentmods" height="20"></a>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 884 The whole file, excluding the scripts and references it only reads on demand.
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.00102 $0.00884
Opus 5 $0.00051 $0.00442
Sonnet 5 $0.00020 $0.00177
Haiku 4.5 $0.00010 $0.00088

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

Security

Grade A, and why

codex-bridge 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 4d ago.

The scan reads SKILL.md. This mod also ships 5 executable files (scripts/bundle_common.py, scripts/create_bundle.py, scripts/run_bundle.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/development-workflows/codex-bridge/SKILL.md · 61 lines

How it starts

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

Codex Bridge

Package context, run Codex with a fixed sandbox, validate its response, and synthesize verified findings.

Replace <skill-dir> with this skill's literal directory. On Windows, py -3 may replace python.

Scenarios

Scenario Purpose Sandbox Default model
plan-review Review an explicit plan read-only gpt-5.6-sol
codify Implement approved work workspace-write gpt-5.6-sol
review-iteration Apply focused review; round 2 is final workspace-write gpt-5.6-terra
verification-round Verify extrapolated instances read-only gpt-5.6-sol

Sandbox is code-owned. Only model and effort accept project or CLI overrides.

Workflow

  1. Confirm explicit Codex intent and select one scenario.
  2. Create a round: python "<skill-dir>/scripts/create_bundle.py" <scenario> "<project-root>".
  3. Distill decisions, rejected approaches, unknowns, and session provenance into conversation.md.
  4. Copy required sources into files/ as a file-backed fixture.
  5. Fill every placeholder in request.md. Do not omit referenced plans, conventions, or reviewed files.
  6. Set manifest session, previous-round, and verification-purpose fields.
  7. Run python "<skill-dir>/scripts/validate_bundle.py" "<bundle>" --phase preflight; fix every failure.
  8. For workspace-write, preserve unrelated changes and enforce the authorized scope.
  9. Run python "<skill-dir>/scripts/run_bundle.py" "<bundle>". Add --output-schema only when the active Codex endpoint supports protocol-level schema validation.
  10. Run python "<skill-dir>/scripts/validate_bundle.py" "<bundle>" --phase post-response.
  11. Compare files_changed with the working tree; synthesize accepted, rejected, and uncertain points.
  12. Record pattern extraction; verify only concrete lateral candidates. Never recurse or create round 3.

Read workflow detail, bundle conventions, and the scenario prompt-notes.md before filling a bundle. Use checklist.md before execution and jsonl-guide.md when locating source conversations. Routing review cases live under evals/ and load only for route evaluation.

Read the full file on GitHub · 61 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 · 61 lines · 102 tokens per session scan A 9a80c1b19f6c

Subscribe to this mod's changes

codex-bridge is a skill published in the GitHub repository bahayonghang/my-ai-cli-toolkit (16 stars, last pushed 2d ago), licensed MIT. It adds 102 tokens to every session and 884 once invoked, about $0.0005 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-30.

Related

Other skills, from other repositories

bridge-pattern-implementor

Implement the Bridge pattern to decouple an abstraction from its implementation so both can vary independently. Use when you want to avoid a permanent binding between abstraction and implementation, when both abstractions and implementations should be extensible by subclassing, when implementation changes should not…

bookforge-ai/bookforge-skills · 98 tokens

collaboration-proposal-writer

Writes a structured proposal for a co-production, editorial partnership, or cross-platform collaboration between two or more media organisations, clearly articulating the mutual benefit and division of responsibilities.

ur-grue/autopunk-media-skills · 41 tokens

algorithmic-art

Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright…

ThinkInAIXYZ/deepchat · 62 tokens

git-commit

Generate well-formatted git commit messages following conventional commit standards.

ThinkInAIXYZ/deepchat · 15 tokens

gitnexus-impact-analysis

Use when the user wants to know what will break if they change something, or needs safety analysis before editing code. Examples: "Is it safe to change X?", "What depends on this?", "What will break?".

TabularisDB/tabularis · 50 tokens

doc-coauthoring

Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers.…

ThinkInAIXYZ/deepchat · 77 tokens