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.
npx claudepluginhub claude-world/director-mode-liteThis skill uses the workspace's default tool permissions.
Delegate tasks to OpenAI Codex CLI to save Claude context.
Delegates repetitive multi-file coding tasks like batch edits, boilerplate generation, large refactors, and test scaffolding to Codex CLI under Claude supervision.
Delegates coding tasks (debug, implement feature, refactor) to OpenAI Codex CLI via `codex exec`. Skips Node runtime overhead; Claude verifies output. Use for direct, fast execution.
Invokes OpenAI Codex CLI for coding tasks including code review, refactoring, bug fixes, CI repairs, feature implementation, and codebase exploration with local filesystem access.
Share bugs, ideas, or general feedback.
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