codex-guide

codex-guide is a skill for Claude Code, Codex from K9i-0/ccpocket. It costs 83 tokens per session (943 once invoked), scanned A, original, MIT.

A guide to using Codex, including its command-line app, editor tools, settings, permissions, hooks, reusable skills, subagents, and MCP connections. MCP is a way for an agent to use external tools through a standard connection.

In plain words
What is it for?
Use it when asking how Codex works, how to configure it, or how to verify rules, approvals, commands, and integrations.
Why use it?
It helps answer Codex and OpenAI product questions using current official documentation and checks permission behavior when needed.

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/k9i-0/ccpocket/codex-guide
Any agent
npx skills add K9i-0/ccpocket --skill codex-guide
Clone the repo
git clone --depth 1 https://github.com/K9i-0/ccpocket

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/k9i-0/ccpocket/codex-guide.svg)](https://agentmods.dev/skills/k9i-0/ccpocket/codex-guide)
Your own site
<a href="https://agentmods.dev/skills/k9i-0/ccpocket/codex-guide"><img src="https://agentmods.dev/badge/skills/k9i-0/ccpocket/codex-guide.svg" alt="Measured on agentmods" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 943 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.00083 $0.00943
Opus 5 $0.00042 $0.00472
Sonnet 5 $0.00017 $0.00189
Haiku 4.5 $0.00008 $0.00094

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

Security

Grade A, and why

codex-guide 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.

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.

.claude/skills/codex-guide/SKILL.md · 77 lines

What it actually says

Codex Guide

Codex の使い方や仕様を案内するときのガイド。

この skill を使う場面

  • ユーザーが Codex CLI / app / IDE extension の使い方を聞いたとき
  • rules, execpolicy, approvals, hooks, AGENTS.md, skills, subagents, MCP, config を説明するとき
  • Codex のモデル、設定、コマンド、slash command、運用方法を案内するとき
  • Codex について「本当にそういう仕様か」を確認したいとき

基本方針

  • 記憶で断定しない。 まず OpenAI の公式 Codex docs を確認する。
  • 仕様説明は一次情報優先。 非公式ブログや推測をベースにしない。
  • rules / approvals は docs だけで終わらせない。 codex execpolicy check で実際の判定を確認する。
  • コマンド挙動は再現確認する。 可能なら軽い実コマンドで allow / prompt / forbidden を確かめる。
  • 変わりやすい情報は公式 docs hub から辿る。 直リンクが変わっていそうなら Codex docs トップから探し直す。

標準ワークフロー

1. まず公式 docs を探す

用途ごとに references/official-sources.md の該当ページを開く。

  • Codex 全体像: docs hub / CLI / Academy
  • 設定: Config basics / advanced / reference / sample
  • approvals / rules: Rules
  • カスタマイズ: Skills / Subagents / AGENTS.md / Hooks / MCP
  • 実践例: Academy / Use cases / openai/codex

2. rules / execpolicy の相談なら必ず検証する

変更提案前に、少なくとも以下を実行する。

codex execpolicy check --pretty --rules <rules-file> -- <command...>

最低 2 パターン確認すること。

  • 許可したいコマンド
  • 止めたい、または prompt にしたいコマンド

部分許可を設計するときは、重なる rule も確認する。

3. 実運用に近いコマンドで再確認する

execpolicy check だけでなく、可能なら軽い実コマンドでも確認する。

例:

  • allow 想定の軽いコマンドを 1 本
  • prompt 想定の軽いコマンドを 1 本

特に注意すること

  • prefix_rule は複数一致する。最終判定は より厳しい decision が勝つ
  • 部分 allow を書いても、より広い prompt が同時一致すると最終的に prompt になる。
  • 迷ったら「広く allow、危ないサブコマンドだけ prompt」か、「全部明示列挙」のどちらかで設計する。
  • match / not_match を書ける場面では書く。意図ミスの早期発見に使う。

返答のしかた

  • 公式 docs を見てわかったことと、ローカルで検証したことを分けて書く。
  • 推測が混じる場合は、それが推測だと明示する。
  • ルール提案時は、提案内容だけでなく「なぜその rule が最終判定になるか」も書く。

参照先

詳細な URL と用途は references/official-sources.md を見る。

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 83 tokens per session scan A fe771d589dc4

Subscribe to this mod's changes

codex-guide is a skill published in the GitHub repository K9i-0/ccpocket (1,047 stars, last pushed 4d ago), licensed MIT. It adds 83 tokens to every session and 943 once invoked, about $0.0004 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

zmr-mobile-testing

Use when testing mobile apps with Zeno Mobile Runner, integrating app-local .zmr setup, driving Android or iOS simulator scenarios, using JSON-RPC or MCP agent sessions, exporting traces, or comparing mobile runner benchmarks.

johnmikel/zeno-mobile-runner · 50 tokens

cloudx-integrate

Integrate the CloudX SDK into a publisher app on any supported platform (Android, iOS, React Native, Flutter, Unity). Use when asked to integrate, add, install, or set up CloudX, CloudX ads, or CloudX mediation in an app, including alongside or replacing an existing mediation stack such as AppLovin MAX, LevelPlay, or…

cloudx-io/cloudx-sdk-agents · 82 tokens

cloudx-audit

Audit an existing CloudX SDK integration in a publisher app for correctness, staleness, lifecycle, coexistence, and privacy issues. Use when asked to check, audit, review, or validate a CloudX integration that already exists, or after upgrading the CloudX SDK version.

cloudx-io/cloudx-sdk-agents · 61 tokens

mobile

Mobile development with React Native, Flutter, and native patterns.

miles990/claude-software-skills · 13 tokens

android-e2e-readiness

Use when Android mobile E2E flows are flaky, Compose and View screens disagree with automation, hybrid screens are ambiguous, retries hide the real issue, or the team keeps collapsing the problem to selector-vs-timing without checking Android-specific readiness contracts.

shenyuexin/mobile-e2e-mcp · 57 tokens

ios-e2e-readiness

Use when iOS mobile E2E flows are flaky, SwiftUI and UIKit surfaces disagree with automation, mixed screens are ambiguous, retries hide the real issue, or the team keeps collapsing the problem to timing-only or SwiftUI-only without checking iOS-specific readiness contracts.

shenyuexin/mobile-e2e-mcp · 61 tokens