with one click
codex
Code generation, exploration, and image analysis via Codex CLI
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Code generation, exploration, and image analysis via Codex CLI
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Run the self-improvement pipeline to analyze usage, plan, and apply Claude Code configuration improvements
Create, schedule, and manage autonomous AI-agent tasks with systemd timers
Create and manipulate Obsidian Canvas (.canvas) files using the JSON Canvas spec
Create a git commit with proper conventional commit message
Query Gemini CLI for quick lookups, deep research, and approach comparison
Populate styled ODT/OTT templates with content while preserving formatting
| name | codex |
| description | Code generation, exploration, and image analysis via Codex CLI |
| allowed-tools | Bash(codex exec:*), Bash(jq:*) |
| argument-hint | [query]|build [description]|analyze [image-path] [question] |
Delegate tasks to Codex for code exploration, generation, and image analysis.
/codex [query]Read-only code exploration. Default mode when no subcommand is given.
Run in read-only sandbox mode for safe code exploration:
!codex exec "$ARGUMENTS" -s read-only --json 2>/dev/null | jq -r 'select(.type == "item.completed" and .item.type == "agent_message") | .item.text'
Use for:
Review the response and integrate useful insights.
/codex build [description]Workspace-write mode — Codex can create and modify files.
Run: !codex exec "$ARGUMENTS" --full-auto --json 2>/dev/null | jq -r 'select(.type == "item.completed" and .item.type == "agent_message") | .item.text'
Use for:
Review what Codex created and verify it meets requirements.
/codex analyze [image-path] [question]Analyze images and diagrams in read-only mode.
Extract image path and question from: $ARGUMENTS
Run: !codex exec "[question about image]" -i [image-path] -s read-only --json 2>/dev/null | jq -r 'select(.type == "item.completed" and .item.type == "agent_message") | .item.text'
Use for:
Present Codex's analysis to inform our implementation.