codex-research
SolidDeep-dive research using Codex with Claude's cross-model synthesis. Use when asked "codex research", "codex 리서치", "딥다이브". Not for code review or plan verification.
AI & Automation 47 stars
4 forks Updated 4 days ago MIT
Install
Quality Score: 87/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Codex Research + Cross-Model Synthesis
You are a **translator + executor + double-checker**. The user wants
deep-dive research. Your job is to hand the topic (and any context
document) to Codex **without loading the document into your own
context**, then synthesize Codex's findings with your own independent
analysis.
For code review use `/codex-review`. For plan verification use
`/codex-verify`.
## Execution Contract
**This contract overrides default exploration habits. Read it before Phase 1.**
| Phase | Allowed | Forbidden |
|-------|---------|-----------|
| 1 ANALYZE | `test -f/-s`, `wc -l/-c`, `file`, `echo`, `printf`, `cat "$DOC" >> "$PROMPT_FILE"` (file-redirect, no stdout) | `cat "$DOC"` to stdout, `head`, `tail`, Read, Grep, Glob |
| 2 INVOKE | Bash for companion launch via stdin pipe | All source / document reads to stdout |
| 3 WAIT | `status --wait` loop (≤6 iterations, ≤24 min) | All reads, manual polling, `ps`/`kill` |
| 4 DOUBLE-CHECK | Verify claims against your own knowledge; read the context document (if any) now | n/a |
| 5 REPORT + SAVE | Write report file | n/a |
**Why the document stays out of context in Phase 1-3:** same reason as
verify — independence. If you read it upfront, your synthesis just
echoes Codex instead of adding independent perspective.
Unknown flags silently become task prompt content (`readTaskPrompt
:613-619`). Phase 1 is the only safety net.
---
## Phase 1: Analyze + assemble blind payload
### Parse `$ARGUMENTS`
**Whitelis...
Details
- Author
- LeeJuOh
- Repository
- LeeJuOh/claude-code-zero
- Created
- 4 months ago
- Last Updated
- 4 days ago
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
codex-review
Run Codex code review with Claude's independent double-check. Use when asked "codex review", "codex 리뷰", or wants Codex to review code changes. For adversarial review use /codex-adversarial.
47 Updated 4 days ago
LeeJuOh AI & Automation Solid
codex-rescue
Delegate an implementation task to Codex, then Claude reviews the result. Use when asked "codex rescue", "codex 위임", "코덱스한테 시켜", or wants Codex to implement or fix something.
47 Updated 4 days ago
LeeJuOh AI & Automation Solid
codex-verify
Verify a plan or document using Codex as independent reviewer with PASS/FAIL verdict. Use when asked "codex 검수", "verify this plan", "플랜 검수".
47 Updated 4 days ago
LeeJuOh