From director-mode-lite
Delegates simple file edits, bulk refactoring, code generation, and documentation updates to OpenAI Codex CLI to preserve Claude context for complex reasoning.
How this skill is triggered — by the user, by Claude, or both
Slash command
/director-mode-lite:handoff-codexThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Delegate tasks to OpenAI Codex CLI to save Claude context.
Delegate tasks to OpenAI Codex CLI to save Claude context.
| Use Codex For | Keep in Claude |
|---|---|
| Simple file edits | Complex reasoning |
| Bulk refactoring | Architecture decisions |
| Code generation from specs | Problem analysis |
| Documentation updates | Multi-step workflows |
npm install -g @openai/codex
## Task for Codex
**Goal**: [What needs to be done]
**Files**: [Which files to modify]
**Details**: [Specific requirements]
# Single file
codex "Update login function in src/auth.ts to add rate limiting"
# Multiple files
codex "Refactor console.log to logger in src/**/*.ts"
## Task: Update All Import Statements
**Command:**
codex "Update all imports from 'lodash' to 'lodash-es' in src/**/*.ts"
**Expected:**
- ~15 files modified
- Each import updated
**After:**
1. Run `npm test`
2. Return if issues arise
npx claudepluginhub claude-world/director-mode-liteDelegates batch edits, boilerplate, multi-file refactors, and test scaffolding from Claude to Codex CLI to save tokens on mechanical work.
Delegates coding tasks (debug, implement, refactor) to OpenAI Codex CLI via codex exec, skipping the Node companion runtime for faster execution. Codex writes code; Claude verifies.
Executes Codex CLI for code analysis, refactoring, and automated edits with structured JSON output, file references, and sandbox controls.