# Send OpenAI Codex Operator to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openai-codex-operator",
    "name": "OpenAI Codex Operator",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/cecwxf/openai-codex-operator",
    "canonicalUrl": "https://clawhub.ai/cecwxf/openai-codex-operator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openai-codex-operator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openai-codex-operator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/codex-doc-summary.md",
      "references/codex-usage-recipes.md",
      "scripts/run-codex-example.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openai-codex-operator",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T09:42:33.736Z",
      "expiresAt": "2026-05-13T09:42:33.736Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openai-codex-operator",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openai-codex-operator",
        "contentDisposition": "attachment; filename=\"openai-codex-operator-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openai-codex-operator"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openai-codex-operator"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openai-codex-operator",
    "downloadUrl": "https://openagent3.xyz/downloads/openai-codex-operator",
    "agentUrl": "https://openagent3.xyz/skills/openai-codex-operator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openai-codex-operator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openai-codex-operator/agent.md"
  }
}
```
## Documentation

### OpenAI Codex Operator

Use this skill to reliably call Codex CLI from OpenClaw.

### Core rules

Verify Codex CLI exists (codex --version) before first task.
Always run Codex through OpenClaw exec with pty:true.
Always set explicit workdir to the target repository.
For long tasks, use background:true and track via process.
Report clear milestones: started, waiting-input, finished/failed.

### One-shot coding task

Use:

exec.command: codex exec "<task>"
exec.pty: true
exec.workdir: <repo path>

### Interactive session

Use:

exec.command: codex
exec.pty: true
exec.workdir: <repo path>

### Long-running background task

Start with exec(background:true, pty:true, workdir, command:"codex exec ...")
Record returned sessionId.
Poll with process action:poll.
Read output with process action:log.
If Codex asks for input, use process action:submit.

### Recommended prompts

"Implement <feature> with tests, run tests, and summarize changed files."
"Find root cause for failing CI in this repo and propose minimal fix."
"Review current branch diff and list high-risk issues first."

### Guardrails

Do not claim files were changed unless logs show completion.
If codex is missing or auth fails, return exact remediation steps.
Keep OpenClaw tool config (pty/workdir/background) separate from CLI args.

### References

references/codex-doc-summary.md
references/codex-usage-recipes.md
scripts/run-codex-example.sh
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: cecwxf
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T09:42:33.736Z
- Expires at: 2026-05-13T09:42:33.736Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openai-codex-operator)
- [Send to Agent page](https://openagent3.xyz/skills/openai-codex-operator/agent)
- [JSON manifest](https://openagent3.xyz/skills/openai-codex-operator/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openai-codex-operator/agent.md)
- [Download page](https://openagent3.xyz/downloads/openai-codex-operator)