# Send Codex Orchestrator 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": "codex-orchestrator",
    "name": "Codex Orchestrator",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Microcarft/codex-orchestrator",
    "canonicalUrl": "https://clawhub.ai/Microcarft/codex-orchestrator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/codex-orchestrator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=codex-orchestrator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "codex-orchestrator",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T23:41:15.522Z",
      "expiresAt": "2026-05-08T23:41:15.522Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=codex-orchestrator",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=codex-orchestrator",
        "contentDisposition": "attachment; filename=\"codex-orchestrator-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "codex-orchestrator"
      },
      "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/codex-orchestrator"
    },
    "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/codex-orchestrator",
    "downloadUrl": "https://openagent3.xyz/downloads/codex-orchestrator",
    "agentUrl": "https://openagent3.xyz/skills/codex-orchestrator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/codex-orchestrator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/codex-orchestrator/agent.md"
  }
}
```
## Documentation

### Codex Orchestrator

This skill provides a workflow for supervising the Codex coding agent running in background processes.

### 1. Start (Launch)

Always launch Codex in a background PTY session to maintain interactivity without blocking the main agent.

bash pty:true workdir:<target_dir> background:true command:"codex exec --full-auto '<PROMPT>'"

Store the returned sessionId.
If sessionId is lost, find it via process action:list.

### 2. Monitor (Watch)

Check progress regularly (e.g., via cron or manual check).

# Get last 2KB of logs to see current status
process action:log sessionId:<id> limit:2000

Signs of life:

Spinner animations or progress bars updating.
"Working...", "Thinking...", "Running...".
File edits (Edit ...).

Signs of blockage:

Interactive prompts (e.g., "Select directory", "Approve change [y/n]").
No log output for >5 minutes (process might be hung or waiting for hidden input).

### 3. Intervene (Control)

If Codex is stuck at a prompt:

# Send 'y' and Enter
process action:submit sessionId:<id> data:"y"

# Send just Enter (default choice)
process action:submit sessionId:<id> data:""

If Codex is looping or hallucinating:

# Kill the session
process action:kill sessionId:<id>

### 4. Report (Notify)

When a significant milestone is reached or the task is done:

Summarize the work done (files changed, tests passed).
Notify the user.

### "The Stuck Agent" Protocol

Diagnose: Run process action:log sessionId:<id> limit:500.
Analyze: Is it asking a question? Is it downloading?
Action:

If asking: Provide answer via submit.
If downloading (slow): Wait.
If silent >10m: Send a "poke" (e.g. submit data:"\\n" to refresh prompt) or kill/resume.

### "The Resume" Protocol

If a session died or was killed:

Run codex resume --last or codex resume <session_id> in a new background process.
Verify it picked up the context.

### Logs & Artifacts

Codex logs are ephemeral in the PTY buffer.
For persistent logs, instruct Codex to write to a file: codex exec "task..." > codex.log 2>&1 (Note: buffering may delay output).
Better: Use process action:log to snapshot the buffer periodically.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Microcarft
- Version: 1.0.0
## 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-01T23:41:15.522Z
- Expires at: 2026-05-08T23:41:15.522Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/codex-orchestrator)
- [Send to Agent page](https://openagent3.xyz/skills/codex-orchestrator/agent)
- [JSON manifest](https://openagent3.xyz/skills/codex-orchestrator/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/codex-orchestrator/agent.md)
- [Download page](https://openagent3.xyz/downloads/codex-orchestrator)