Summary
Codex CLI (codex exec) を非対話的に呼び出す。実行時に利用可能な最新モデルによるコード実装、レビュー、設計分析に使用する。「codex で実装して」「codex でレビュー」「Codex に聞いて」などのリクエストで使用する。
schroneko/skills
Codex CLI (codex exec) を非対話的に呼び出す。実行時に利用可能な最新モデルによるコード実?
npx skills add schroneko/skills --skill codex
Codex CLI (codex exec) を非対話的に呼び出す。実行時に利用可能な最新モデルによるコード実装、レビュー、設計分析に使用する。「codex で実装して」「codex でレビュー」「Codex に聞いて」などのリクエストで使用する。
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Migrate supported instruction files, skills, agents, and MCP config into Codex project and glob…
1.9K installsCodex Pet generator on RunComfy. Build a Codex-compatible Codex Pet spritesheet.webp + pet.json…
378.4K installs>- Delegate a coding task to the OpenAI Codex CLI as a background implementer, then review its …
4.6K installsGenerate visually unified image-based PPT/PPTX decks from articles, reports, papers, notes, or …
4K installsUse when the user asks to run Codex CLI (codex exec, codex resume) or references OpenAI Codex f…
4K installsConnect a ChatGPT or Codex subscription via OAuth device-code login. Use when the user wants to…
2.5K installsOther skills from schroneko/skills · top by installs.
npx skills add schroneko/skills
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
main
Parsed from SKILL.md frontmatter.
Files included with this skill beyond the listing page.
SKILL.md
4,050 B
SUMMARY.md
303 B
You invoke OpenAI Codex CLI in headless (non-interactive) mode from within Claude Code using codex exec. Before each invocation, verify the latest model available from the active client or provider and use only that model for code implementation, review, architecture analysis, security checks, and other tasks.
codex CLI is installed and authenticated (codex login or OPENAIAPIKEY set)--skip-git-repo-check)For code review, analysis, second opinions. Codex cannot modify files.
codex exec --sandbox read-only --ephemeral [OPTIONS] "PROMPT"
For code generation and implementation. Codex can create and modify files in the workspace.
codex exec --full-auto --ephemeral [OPTIONS] "PROMPT"
--full-auto is equivalent to --sandbox workspace-write with auto-approval of file writes.
| Flag | Purpose |
|---|---|
--ephemeral |
Do not persist session to disk (always include) |
-m MODEL |
Use the latest model verified at invocation time |
--skip-git-repo-check |
Allow running outside a git repo |
-C DIR |
Set working directory |
-o FILE |
Write final message to a file |
--json |
Output JSON Lines event stream |
--output-schema FILE |
Force structured output with JSON Schema |
-i IMAGE |
Attach image file to the prompt |
-c key=value |
Override config (e.g. -c modelreasoningeffort="xhigh") |
codex exec --full-auto --ephemeral -C PROJECT_DIR "PROMPT" via Bash (timeout: 300000ms)codex exec --sandbox read-only --ephemeral "PROMPT" via Bash (timeout: 120000ms)codex exec review
Reviews the current diff against the base branch without needing a custom prompt.
codex exec calls (implementation takes longer)--dangerously-bypass-approvals-and-sandbox はサンドボックスを無効化し、ファイルシステム全体への書き込みを許可するため使わない--skip-git-repo-check for non-repo directories