codex_local adapter runs OpenAI’s Codex CLI locally. It supports session persistence via previous_response_id chaining and skills injection through the global Codex skills directory.
Prerequisites
- Codex CLI installed (
codexcommand available) OPENAI_API_KEYset in the environment or agent config
Configuration Fields
| Field | Type | Required | Description |
|---|---|---|---|
cwd | string | Yes | Working directory for the agent process (absolute path; created automatically if missing when permissions allow) |
model | string | No | Model to use |
promptTemplate | string | No | Prompt used for all runs |
env | object | No | Environment variables (supports secret refs) |
timeoutSec | number | No | Process timeout (0 = no timeout) |
graceSec | number | No | Grace period before force-kill |
dangerouslyBypassApprovalsAndSandbox | boolean | No | Skip safety checks (dev only) |
Session Persistence
Codex usesprevious_response_id for session continuity. The adapter serializes and restores this across heartbeats, allowing the agent to maintain conversation context.
Skills Injection
The adapter symlinks FideliOS skills into the global Codex skills directory (~/.codex/skills). Existing user skills are not overwritten.
When FideliOS is running inside a managed worktree instance (FIDELIOS_IN_WORKTREE=true), the adapter instead uses a worktree-isolated CODEX_HOME under the FideliOS instance so Codex skills, sessions, logs, and other runtime state do not leak across checkouts. It seeds that isolated home from the user’s main Codex home for shared auth/config continuity.
For manual local CLI usage outside heartbeat runs (for example running as codexcoder directly), use:
Instructions Resolution
IfinstructionsFilePath is configured, FideliOS reads that file and prepends it to the stdin prompt sent to codex exec on every run.
This is separate from any workspace-level instruction discovery that Codex itself performs in the run cwd. FideliOS does not disable Codex-native repo instruction files, so a repo-local AGENTS.md may still be loaded by Codex in addition to the FideliOS-managed agent instructions.
Environment Test
The environment test checks:- Codex CLI is installed and accessible
- Working directory is absolute and available (auto-created if missing and permitted)
- Authentication signal (
OPENAI_API_KEYpresence) - A live hello probe (
codex exec --json -with promptRespond with hello.) to verify the CLI can actually run