Back to Skills

call-codex

verified

Call codex to perform a task.

View on GitHub

Marketplace

dotneet-marketplace

dotneet/claude-code-marketplace

Plugin

agent-call

Repository

dotneet/claude-code-marketplace

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

Last Verified

January 23, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/dotneet/claude-code-marketplace/blob/main/agent-call/skills/call-codex/SKILL.md -a claude-code --skill call-codex

Installation paths:

Claude
.claude/skills/call-codex/
Powered by add-skill CLI

Instructions

# Call codex to perform a task

Call codex to perform a task.

## Checking for the Existence of codex

```bash
# 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.

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

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
548 chars