원클릭으로
codex
Code generation, exploration, and image analysis via Codex CLI
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Code generation, exploration, and image analysis via Codex CLI
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.