mit einem Klick
codex-cli
Shell out to codex CLI.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Shell out to codex CLI.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
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).