一键导入
codex
Use when the user asks to run Codex CLI (codex exec, codex resume) or references OpenAI Codex for code analysis, refactoring, or automated editing
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when the user asks to run Codex CLI (codex exec, codex resume) or references OpenAI Codex for code analysis, refactoring, or automated editing
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Survey a repo and ground externally on the relevant parts of the internet. Local manifest scan + CLAUDE.md/AGENTS.md + recent git activity, then external grounding via WebSearch, WebFetch, and gh — synthesized into a terse, dated, sourced briefing cached at docs/ground/<fingerprint>.md with a 7-day freshness window. Composable: invoked standalone or embedded as a pre-flight phase in other skills. Triggers: ground, ground yourself, ground myself, survey and ground, pre-flight grounding, research the stack, what's new in.
Collaborative discovery before planning. Explore the problem space, evaluate approaches, surface past work, and produce a structured brainstorm document. Triggers: brainstorm, explore, discovery, ideate, think through, what should we build, explore approaches.
Strategic planning with auto-calibrated detail, decision rationale, and dependency ordering. Use when starting a new feature, bug fix, refactor, or any non-trivial work. Produces a plan document with tasks, reasoning, and acceptance criteria. Triggers: plan, planning, create plan, implementation plan, feature plan, work plan.
Execute a plan from start to ship — read tasks, implement in dependency order, test continuously, commit incrementally, run quality checks, and push. The plan's checkboxes are the tracker. Triggers: work, execute plan, implement, start work, build, ship, finalize, release, push, ready to ship, done building.
Capture a footgun the agent just hit (or the user just spotted) as a proposed trigger via `quellis teach`. Guided flow: gather the finding, run the CLI, surface the proposed trigger, leave activation to the user. Triggers: teach quellis, capture this footgun, add a trigger, remember this rule.
Review and manage evidence contracts in this repo. Subcommands: `show` (default, print the active contract), `list` (all contracts + which is active), `complete` (mark active contract completed), `abandon` (mark active contract abandoned). Triggers: contract, show contract, list contracts, mark contract complete, what's active.
| name | codex |
| description | Use when the user asks to run Codex CLI (codex exec, codex resume) or references OpenAI Codex for code analysis, refactoring, or automated editing |
| Model | Best for |
|---|---|
gpt-5.5 | Flagship (released 2026-04-23) — complex coding, computer use, knowledge work, research workflows. ChatGPT sign-in only — not available with API-key auth. Fall back to gpt-5.4 if not in the user's model picker yet. |
gpt-5.4 | Professional coding with strong reasoning + tool use. Default fallback when gpt-5.5 is unavailable. |
gpt-5.4-mini | Faster/cheaper for lighter coding tasks and subagents |
gpt-5.3-codex | Complex software engineering with industry-leading coding capabilities |
gpt-5.3-codex-spark | Near-instant real-time coding iteration (ChatGPT Pro research preview) |
Default recommendation: gpt-5.5 for complex tasks (with gpt-5.4 fallback), gpt-5.4-mini for speed.
AskUserQuestion) which model to use (default: gpt-5.5, fallback gpt-5.4) AND which reasoning effort (xhigh, high, medium, or low) in a single prompt with two questions.--sandbox read-only unless edits or network access are necessary.-m, --model <MODEL>--config model_reasoning_effort="<xhigh|high|medium|low>"--sandbox <read-only|workspace-write|danger-full-access>--full-auto-C, --cd <DIR>--skip-git-repo-check"your prompt here" (as final positional argument)--skip-git-repo-check.2>/dev/null to all codex exec commands to suppress thinking tokens (stderr). Only show stderr if the user explicitly requests to see thinking tokens or if debugging is needed.| Use case | Sandbox mode | Key flags |
|---|---|---|
| Read-only review or analysis | read-only | --sandbox read-only 2>/dev/null |
| Apply local edits | workspace-write | --sandbox workspace-write --full-auto 2>/dev/null |
| Permit network or broad access | danger-full-access | --sandbox danger-full-access --full-auto 2>/dev/null |
| Resume recent session | Inherited from original | echo "prompt" | codex exec --skip-git-repo-check resume --last 2>/dev/null |
| Run from another directory | Match task needs | -C <DIR> plus other flags 2>/dev/null |
codex command, immediately use AskUserQuestion to confirm next steps, collect clarifications, or decide whether to resume with codex exec resume --last.echo "new prompt" | codex exec --skip-git-repo-check resume --last 2>/dev/null. The resumed session automatically uses the same model, reasoning effort, and sandbox mode from the original session.echo "follow-up prompt" | codex exec --skip-git-repo-check resume --last 2>/dev/nullexec and resume.Codex is powered by OpenAI models with their own knowledge cutoffs and limitations. Treat Codex as a colleague, not an authority.
echo "This is Claude (<your current model name>) following up. I disagree with [X] because [evidence]. What's your take?" | codex exec --skip-git-repo-check resume --last 2>/dev/null
codex --version or a codex exec command exits non-zero; request direction before retrying.--full-auto, --sandbox danger-full-access, --skip-git-repo-check) ask the user for permission using AskUserQuestion unless already given.AskUserQuestion.Codex ships a built-in image_gen tool that uses OpenAI's gpt-image-2 under the user's ChatGPT OAuth — no OPENAI_API_KEY required. To invoke it:
codex exec --skip-git-repo-check --sandbox workspace-write --full-auto \
"Use your built-in image_gen tool to generate: <PROMPT>. After it returns, copy the file to <OUT_PATH> and print the path."
gpt-image-2 (default, newest), gpt-image-1.5 (only one supporting background=transparent), gpt-image-1, gpt-image-1-mini.low | medium | high | auto. Sizes: auto or WxH with max edge ≤ 3840px, edges multiples of 16, 655k–8.3M total pixels.$CODEX_HOME/generated_images/<session>/<hash>.png — ask the agent to copy to the user's target.~/.claude/skills/image-gen/scripts/generate_image_codex.sh; the image-gen skill documents the full UX. Prefer that wrapper over hand-rolling the codex invocation.scripts/image_gen.py — it requires an OPENAI_API_KEY, which is precisely what the built-in path avoids.