원클릭으로
codex-cli
Shell out to codex CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Shell out to codex CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Shell out to claude CLI.
Run a multi-agent debate to compare options and converge on a decision.
Run the same task with multiple agents for reviews, critiques, or model comparison.
Autonomous large-task delivery agent. Use for long-running coding work that should go from objective or plan to implemented code, review fixes, PR/MR, and green CI with minimal human-in-the-loop gates.
Manage ClickUp tasks.
Generate a project template for Coolify
| name | codex-cli |
| description | Shell out to codex CLI. |
| allowed-tools | Bash(codex *) |
Use the codex CLI to run one-shot prompts or diff-based reviews through OpenAI models.
codex must be installed and authenticated (codex --version should succeed).
codex exec)codex exec --ephemeral "Your prompt here"
Key flags:
--ephemeral — run without persisting a session; use for one-shot tasks.-c model="<name>" — override the model only when the user explicitly requests one.Capture output to a file for aggregation:
codex exec --ephemeral "Prompt text" > .tmp/codex-output.txt 2>&1
codex review)codex review --base <branch> > .tmp/codex-review.txt 2>&1
--base <branch> — required; the branch to diff against.--ephemeral.dangerouslyDisableSandbox: true) because Codex writes session files during review runs.codex review writes session files to ~/.codex/; run it unsandboxed from Claude Code.codex exec with --ephemeral is generally safe inside the sandbox for short prompts.codex reports authentication errors, ask the user to re-authenticate (codex login).