OpenAI Codex Operator

PassAudited by ClawScan on May 1, 2026.

Overview

This skill is a straightforward wrapper for running OpenAI Codex on a project, but using it means Codex may modify and run code in the chosen repository under your OpenAI account.

Before installing, confirm you trust and have installed the official Codex CLI, sign in only with the intended OpenAI account or API key, run it only in the target repository, and review Codex output and file diffs before committing or deploying changes.

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

If the wrong repository path or task is supplied, Codex could operate on the wrong project files.

Why it was flagged

The skill directs OpenClaw to use the exec tool to launch Codex. This is central to the skill's purpose and scoped by workdir, but it is still a powerful local tool invocation.

Skill content
Always run Codex through OpenClaw `exec` with `pty:true`.
Recommendation

Invoke it only for the intended repository, set an exact workdir, and review Codex logs and diffs before relying on changes.

What this means

Codex may run project commands such as tests or scripts and may change files in the selected repository.

Why it was flagged

The referenced behavior includes local code execution and file mutation. This is expected for a coding-agent operator, but it affects the user's local environment.

Skill content
Codex CLI runs locally in terminal and can read/change/run code in selected directory.
Recommendation

Use version control or backups, run it in the intended project, and review changes before committing or deploying.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

A Codex task may continue running after the initial command until it finishes or is stopped.

Why it was flagged

The skill supports long-running background Codex sessions. This is disclosed and includes tracking, so it is not hidden persistence, but users should notice it.

Skill content
For long tasks, use `background:true` and track via `process`.
Recommendation

Keep the returned session ID, poll logs, and stop the process if it is no longer needed.

What this means

Codex activity may use the user's OpenAI account or API key, including any account permissions, usage limits, or billing implications.

Why it was flagged

The skill relies on OpenAI/Codex account authentication. That is expected for this integration, and the artifacts do not show credential logging or hardcoded secrets.

Skill content
First run requires sign-in (ChatGPT account or API key).
Recommendation

Use the intended OpenAI account or API key, avoid exposing secrets in prompts or logs, and rotate credentials if they are accidentally disclosed.

What this means

The installed Codex CLI version and its updates are controlled outside this skill package.

Why it was flagged

The documentation points users to a global npm install for Codex, without a pinned version in this skill package. This is a normal setup path for the CLI but leaves package provenance/version management to the user.

Skill content
Install command: `npm i -g @openai/codex`
Recommendation

Install Codex from the official source, verify `codex --version`, and consider pinning or managing the package version in controlled environments.