Agent Skills: Call codex to perform a task

Call codex to perform a task.

UncategorizedID: dotneet/claude-code-marketplace/call-codex

Install this agent skill to your local

pnpm dlx add-skill https://github.com/dotneet/claude-code-marketplace/tree/HEAD/agent-call/skills/call-codex

Skill Files

Browse the full folder contents for call-codex.

Download Skill

Loading file tree…

agent-call/skills/call-codex/SKILL.md

Skill Metadata

Name
call-codex
Description
Call codex to perform a task.

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