Collaborate with Codex (GPT-5.2) via named sessions. Trigger: user asks to work with Codex, use Codex, ask Codex, involve Codex, etc. CRITICAL: Use subcodex CLI via Bash, NOT the Task subagent tool.
Named Codex sessions that persist across conversation compacts.
# New session
./skills/subcodex/subcodex new <name> "prompt"
# Resume session
./skills/subcodex/subcodex resume <session-name> "prompt"
# List sessions (shows last 25, use --all for all)
./skills/subcodex/subcodex list
# Code review
./skills/subcodex/subcodex review --uncommitted <name>
./skills/subcodex/subcodex review --base main <name> "focus on security..."
ALWAYS use run_in_background: true — Codex takes 1-30+ minutes.
After starting a background command:
<task-notification> when Codex is doneCodex can read, write, and execute — just like you. Tell it to make changes directly, not to provide diffs or suggestions.
Options:
--reasoning low|medium|high|xhigh (default: high)--read-only — read-only sandbox--dangerous — full system accessSession names get a random suffix: my-task becomes my-task-x7k2.
Use the full name (with suffix) when resuming:
./skills/subcodex/subcodex resume my-task-x7k2 "continue with..."
subcodex list shows: status (running/stopped), tool_calls, cwd, duration.
# Review uncommitted changes
./skills/subcodex/subcodex review --uncommitted my-review
# Review against branch
./skills/subcodex/subcodex review --base main my-review
# Review specific commit
./skills/subcodex/subcodex review --commit HEAD my-review
# Add instructions
./skills/subcodex/subcodex review --uncommitted my-review "read these relevant docs first, focus on security, suggest simplifications, .."
Reviews use --reasoning xhigh and read-only mode by default.
Claude leads, Codex executes. Use Codex to review designs and implement complex tasks. Push back on over-engineering.
Typical flow:
Push for simple code: less abstraction, fail-fast, no "just in case" code.
下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer