call-codex

📁 dotneet/claude-code-marketplace 📅 Jan 21, 2026
25
总安装量
14
周安装量
#15042
全站排名
安装命令
npx skills add https://github.com/dotneet/claude-code-marketplace --skill call-codex

Agent 安装分布

claude-code 11
opencode 9
gemini-cli 9
antigravity 8
windsurf 5

Skill 文档

Call codex to perform a task

Call codex to perform a task.

Checking for the Existence of codex

# Check if codex is installed. Exit code 0 means success, 1 means failure.
# If not installed, skip the subsequent steps of the skill.
which codex
if [ $? -ne 0 ]; then
  echo "codex is not installed"
fi

Requesting a Task to codex

This task may take a long time. If the timeout value of the Bash tool can be set, please specify the maximum timeout value.

codex exec --sandbox danger-full-access <<EOT
{task_description}
EOT