Delegate coding tasks to Codex CLI (OpenAI gpt-5-codex via JetBrains AI). Use when a task involves repetitive code generation, refactoring, or analysis that can be offloaded.
Delegates repetitive coding tasks like large-scale refactoring or boilerplate generation to Codex CLI with JetBrains AI. Use this when you need parallel processing for mechanical code work across many files, keeping complex architectural decisions in Claude.
/plugin marketplace add ashchupliak/dream-team/plugin install dream-team@dream-team-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
README.mdUse Codex CLI to delegate coding tasks that benefit from parallel AI processing.
GOOD for Codex:
KEEP in Claude:
Codex is pre-configured with JetBrains AI staging:
jbai-staginggpt-4o-2024-11-20, o1-2024-12-17, o3-mini-2025-01-31codex exec -c model_provider=jbai-staging --model "gpt-4o-2024-11-20" \
--sandbox read-only \
"Analyze the codebase and list all REST endpoints" 2>/dev/null
codex exec -c model_provider=jbai-staging --model "gpt-4o-2024-11-20" \
--sandbox workspace-write --full-auto \
"Generate unit tests for UserService.kt" 2>/dev/null
codex exec -c model_provider=jbai-staging --model "o3-mini-2025-01-31" \
--sandbox read-only \
"Review security vulnerabilities in auth module" 2>/dev/null
echo "continue with the refactoring" | codex exec --skip-git-repo-check resume --last 2>/dev/null
Before delegating to Codex, consider:
| Factor | Use Codex | Keep in Claude |
|---|---|---|
| File count | Many files | Few files |
| Task type | Repetitive/mechanical | Creative/strategic |
| Context needed | Self-contained | Requires conversation context |
| User interaction | None needed | Back-and-forth required |
gpt-4o-2024-11-20 for fast taskso1-2024-12-17 / o3-mini-2025-01-31 for complex reasoningread-only for analysisworkspace-write for edits2>/dev/null to suppress thinking tokens--skip-git-repo-check flagread-only sandbox unless edits neededdanger-full-access without explicit user permission2>/dev/null by defaultThis skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.