Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计异常

codexCodex 编程助手

Agent Skill

codex 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

890

周安装

36

GitHub Stars

14

下载量

279
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:codex(Codex 编程助手)
来源仓库:https://github.com/bahayonghang/my-claude-code-settings
仓库路径:skills/codex
安装命令:
npx skills add https://github.com/bahayonghang/my-claude-code-settings --skill codex
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/bahayonghang/my-claude-code-settings --skill codex

简介

codex 运行 Codex CLI 执行编程任务,默认使用 GPT-5.4 模型。

  • 支持代码审查、通用编程操作及自动化变更提交。codex 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 优先 review-only 模式,仅在用户明确请求时写入修改。
  • 需配置 API 密钥并遵守沙箱策略,避免绕过审批流程。
  • 依赖网络连接,建议验证 CLI 安装与模型访问权限。

SKILL.md

Run Codex CLI for $ARGUMENTS.

Defaults

  • Primary review command: codex review
  • Primary general command: codex exec
  • Default model: gpt-5.4 (referred to as $MODEL in recipes below)
  • Default review / consult reasoning config: -c model_reasoning_effort=xhigh
  • Default research reasoning config: -c model_reasoning_effort=high
  • Default research search path: top-level --search
  • Default posture: review-only first, write only when the user explicitly wants Codex to apply changes
  • Preferred automation path for writes: --full-auto before --dangerously-bypass-approvals-and-sandbox
  • Keep sandbox bypass available for exceptional cases, but only after explicit user confirmation for that specific run
  • Resume path: codex exec resume <session_id> "<follow-up>"

Prerequisites

  1. Verify Codex CLI is installed.

- Bash / zsh: command -v codex - PowerShell: Get-Command codex - If missing, tell the user to install it manually: npm install -g @openai/codex

  1. Verify authentication: codex login status

- If not authenticated, tell the user to run codex login

  1. If Codex is unavailable and the task is mainly research or docs lookup, fall back to the host's native web or documentation tools instead of blocking.

Current CLI Compatibility

Treat current local CLI help as the source of truth before constructing commands:

  • Check codex --help, codex exec --help, codex review --help, and codex resume --help when a recipe looks stale.
  • Never emit a --reasoning flag. Current Codex CLI exposes reasoning through -c model_reasoning_effort=<level>.
  • codex review accepts either a review target flag (--uncommitted, --base, --commit) or a custom prompt, not both in the same command.
  • If the user wants a targeted review plus custom instructions, switch from codex review to codex exec with an explicit prompt over the repo or files.
  • Do not rely on undocumented commands like codex sessions list or codex --print-config; prefer codex resume --all, the session id printed by codex exec, or reading ~/.codex/config.toml directly.

Bypass Confirmation Gate

Keep danger-full-access and --dangerously-bypass-approvals-and-sandbox available, but never use them by default.

Before using either bypass path:

  1. Try read-only, workspace-write, or --full-auto first.
  2. State why the narrower sandbox is insufficient.
  3. Show the exact Codex command that would run with bypass.
  4. Ask the user to confirm this specific bypassed run.
  5. Only proceed after an explicit yes.

Use this confirmation shape:

Codex needs <danger-full-access | full bypass> for this run to <reason>.
This would allow <scope>. Proceed?

Scope Boundary

This skill wraps the local Codex CLI (codex command). It is distinct from the OMC orchestration layer's ask_codex MCP tool, which delegates to Codex as an agent role (architect, planner, critic, etc.) via the MCP protocol.

  • This skill: user explicitly wants codex review, codex exec, or Codex CLI features
  • OMC ask_codex: orchestrator delegates analysis/review to Codex as a reasoning backend

If the user says "ask codex about X" without specifying CLI usage, defer to OMC's MCP delegation. This skill activates on /codex invocation or explicit CLI intent.

Mode Router

If $ARGUMENTS is empty, ask the user for the task description.

Choose one primary mode:

  • review: PR, diff, branch, commit, uncommitted changes, merge readiness, or review-style second opinion. Prefer codex review.
  • challenge: adversarial probing for edge cases, race conditions, security issues, or failure modes. Use codex exec with a read-only posture and an attack-minded prompt.
  • consult: second opinion on a file, module, architecture decision, migration, or plan. Use codex exec without write access.
  • research: latest docs, current product comparisons, citations, release notes, or vendor landscape. Use top-level --search with codex exec.
  • apply/fix: generation, refactoring, debugging, or fixing approved findings. Only use when the user explicitly wants Codex to make changes.
  • resume: follow-up on a previous non-interactive session via codex exec resume.

If a task spans multiple modes, do them in this order:

  1. review or challenge
  2. consult
  3. research
  4. apply/fix

Keyword Signals

Keywords in $ARGUMENTS→ Mode
review, PR, diff, merge, branch, commit, changesreview
challenge, break, attack, adversarial, scarychallenge
consult, second opinion, what do you think, @fileconsult
research, compare, latest, docs, citationsresearch
fix, apply, refactor, implement, write, generateapply/fix
resume, continue, follow-up, sessionresume

If ambiguous, prefer read-only modes (review/challenge/consult) over write modes (apply/fix).

Planned Run Header

Before any Codex invocation, emit this block exactly once:

Planned AI Run
- Tool: Codex CLI
- Mode: <review | challenge | consult | research | apply/fix | resume>
- Model: <literal model id>
- Runtime: <model_reasoning_effort=xhigh | model_reasoning_effort=high | model_reasoning_effort=<level>; sandbox=<mode>>
- Search: <off | live>
- Access: <review-safe | workspace-write | confirmed danger-full-access | confirmed bypassed sandbox/approvals>
- Workdir: <path or current>

Rules:

  • Keep the header and the final command aligned.
  • Use the same literal model id in the header and the actual Codex invocation when you override the model explicitly.
  • For codex review, pass model or sandbox overrides as top-level Codex options before the subcommand, for example codex -m $MODEL -s read-only review....
  • If you set reasoning, surface it as -c model_reasoning_effort=<level> in the final command. Never invent a --reasoning flag.
  • Do not combine codex review target selectors with a prompt. Use codex exec when the user needs both a fixed scope and custom focus.
  • Use Search: live only for runs started with top-level --search.
  • review, challenge, and consult should default to read-only or another review-safe posture.
  • apply/fix should default to workspace-write / --full-auto.
  • Use danger-full-access or full bypass only after explicit confirmation for that exact run.
  • If -C is omitted, show current for Workdir.

Quick Reference

ModeCommandDefault flags
Reviewcodex review-m $MODEL -s read-only
Challengecodex exec-s read-only -c model_reasoning_effort=xhigh
Consultcodex exec-s read-only -c model_reasoning_effort=xhigh
Researchcodex --search exec--skip-git-repo-check -c model_reasoning_effort=high
Apply/Fixcodex exec--full-auto -c model_reasoning_effort=xhigh
Resumecodex exec resume <id> "<msg>"inherits previous session

For full command recipes, prompt templates, and shell-quoting notes, read $SKILL_DIR/references/REFERENCE.md.

Reference

Read $SKILL_DIR/references/REFERENCE.md for:

  • review, challenge, consult, and research prompt templates (with output format instructions)
  • target-specific command recipes
  • query-splitting guidance
  • citation and shell-quoting notes
  • session ID retrieval for resume
  • post-run safety checklist

Sandbox & Git Permissions

Codex runs commands inside a sandbox that restricts file system access. This is the single most common source of "Permission denied" errors, especially for git operations.

Why git fails in the sandbox

Even in workspace-write mode, Codex force-mounts .git/ as read-only after writable roots are applied. Any git command that writes metadata — fetch, commit, pull, push, checkout, merge, rebase, stash — will fail with:

error: cannot open '.git/FETCH_HEAD': Permission denied

Quick fix: choose the right sandbox mode

Sandbox modegit readgit writeWhen to use
read-only (default)YesNoreview, challenge, consult
workspace-writeYesNo (.git/ stays read-only)editing files only
--full-autoYesNo (same sandbox; sets -a on-request + -s workspace-write)low-friction file edits
danger-full-accessYesYesapply/fix that needs git write
--dangerously-bypass-approvals-and-sandboxYesYeslast resort, unrestricted

For any mode that needs git write access (commit, push, pull), you must use danger-full-access or --dangerously-bypass-approvals-and-sandbox. Do not switch to either mode until the user has explicitly confirmed the bypassed run.

Recommended sandbox flags by mode

  • Review / Challenge / Consult: -s read-only (default, safe)
  • Research: --skip-git-repo-check (no repo context needed)
  • Apply/Fix without git writes: --full-auto (low-friction, sandboxed)
  • Apply/Fix with git writes: danger-full-access after confirmation; use full bypass only as a confirmed last resort

Platform-specific sandbox issues

Windows:

  • Git Bash (bash.exe) fails inside Windows sandbox with "couldn't create signal pipe, Win32 error 5" (issue #15016).
  • Workaround: use PowerShell as the shell, or disable sandbox: # ~/.codex/config.toml [windows] sandbox = "off"

Linux (bubblewrap):

  • .git/ and resolved gitdir: targets are force-mounted read-only after writable roots, and --add-dir cannot override this (issue #14338).
  • AppArmor unprivileged_userns restriction can prevent the sandbox from starting entirely (issue #9273).

macOS:

  • Git fsmonitor IPC socket is blocked by sandbox network policy (issue #14372).
  • Workaround: disable fsmonitor before running Codex: git config --local core.fsmonitor false

Pre-trusting a workspace

To avoid the trust prompt on every run, add the project to config.toml:

# ~/.codex/config.toml
[projects."/path/to/your/project"]
trust_level = "trusted"

Diagnosing sandbox denials

Use the built-in sandbox diagnostic to see what is being blocked:

codex sandbox <platform> --log-denials <command>
# Example:
codex sandbox macos --log-denials git diff
codex sandbox linux --log-denials git commit -m "test"

For full sandbox configuration details, read $SKILL_DIR/references/REFERENCE.md.

Error Handling

  • codex: command not found: tell the user to install @openai/codex
  • codex login status fails or shows no auth: tell the user to run codex login
  • rate limit or timeout: retry with a smaller scope, lower reasoning, or a lighter model
  • research output lacks citations: rerun with --search and an explicit request for URLs
  • review task accidentally ran in write mode: stop, surface the mismatch, and switch back to review-safe mode
  • Codex unavailable: fall back to native tools when the task does not strictly require Codex
  • sandbox permission denied on .git/: switch to danger-full-access or --dangerously-bypass-approvals-and-sandbox; see the Sandbox section above
  • Windows bash signal pipe error: switch to PowerShell or disable Windows sandbox
  • git fsmonitor IPC error (macOS): run git config --local core.fsmonitor false
  • sandbox fails to start (Linux AppArmor): check kernel.apparmor_restrict_unprivileged_userns sysctl

Notes

  • codex exec is the preferred general non-interactive entrypoint.
  • codex review is the preferred review entrypoint for branch, diff, commit, and uncommitted review.
  • Read-only and review-safe paths are the default. Writing is opt-in.
  • For current Codex configuration semantics, project-scoped overrides, and web search modes, rely on ~/.codex/config.toml and current CLI help.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

25.25%
按下载量换算70

Claude Code

24.45%
按下载量换算68

windsurf

15.57%
按下载量换算43

OpenCode

11.81%
按下载量换算33

Antigravity

8.69%
按下载量换算24

Gemini CLI

3.05%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/bahayonghang/my-claude-code-settings --skill codex;npx skills add bahayonghang/my-claude-code-settings --skill "codex" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills