Codex Conductor

PassAudited by ClawScan on May 1, 2026.

Overview

No malicious behavior is evident; this is a transparent coding-workflow orchestrator, but it can run external coding agents in full-auto/background modes and store project workflow state.

Use this skill like you would use a powerful coding automation tool: start with gated mode for high-value repositories, keep changes in version control, review AGENTS.md and generated docs, and only enable full-auto/background execution for agents and projects you trust.

Findings (5)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A coding agent may make project changes and run commands as part of the delivery workflow.

Why it was flagged

The helper can launch external coding-agent CLIs from the project root, including Codex full-auto mode. This is central to the skill's purpose, but it gives the selected agent practical ability to modify and test the project.

Skill content
cmd = ["codex", "exec"] ... if args.full_auto: cmd.append("--full-auto") ... run(cmd, cwd=str(root))
Recommendation

Prefer gated mode for important or unfamiliar repositories, review generated prompts, and run in a clean version-controlled working tree.

What this means

Users may need to supply and trust their own installed coding-agent tools even though the registry metadata does not list them.

Why it was flagged

The registry metadata declares no required binaries, while the skill documentation and scripts use Python plus optional coding-agent CLIs. This is an under-declared dependency/provenance clarity issue, not evidence of hidden installation.

Skill content
Required binaries (all must exist): none ... Primary credential: none
Recommendation

Install coding-agent CLIs only from official sources and confirm which agent will be used before allowing execution.

What this means

Project workflow files can shape future coding-agent decisions and should be treated as trusted project state.

Why it was flagged

The skill persists workflow instructions, gate state, and project context that future agent runs will rely on. This is expected for orchestration, but stale or edited project docs could influence later agent behavior.

Skill content
This creates/updates: - `AGENTS.md` ... - `.orchestrator/status.json` ... - `.orchestrator/context.json`
Recommendation

Keep generated docs and .orchestrator files under review, especially before advancing gates or switching to autonomous mode.

What this means

A delegated agent can notify the orchestrator that work is ready for review.

Why it was flagged

The workflow instructs a delegated coding agent to signal OpenClaw through a gateway wake message. This is a disclosed handoff mechanism, but completion messages should not be treated as verification by themselves.

Skill content
openclaw gateway wake --text 'Done: <gate> | task: <summary> | handoff: see docs/agent-handoff.md for CLI+Browser checks' --mode now
Recommendation

Treat wake messages as notifications only; verify the listed CLI, browser, and test evidence before accepting completion.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

Long-running agent processes may continue working while the user is not actively watching.

Why it was flagged

The skill recommends background execution for long-running coding-agent work. This is disclosed and purpose-aligned, but background agents require monitoring so they do not continue beyond the intended task.

Skill content
OpenClaw execution recommendation: - `pty:true` for interactive CLIs - `background:true` for long-running work
Recommendation

Use background mode only when needed, monitor running jobs, and stop any agent process that exceeds the intended task.