← スキル一覧に戻る

codex-qa
by FunnelEnvy
⭐ 1🍴 0📅 2026年1月16日
SKILL.md
name: codex-qa description: Use OpenAI Codex CLI to answer questions about code, analyze files, or perform read-only codebase exploration. Invoke this skill when the user asks to use Codex, wants a second opinion from another AI agent, or wants to compare Claude's answer with Codex's response.
Codex Q&A
Use OpenAI's Codex CLI to answer questions about the codebase.
Prerequisites
Codex CLI must be installed and configured:
npm install -g @openai/codex
# or
brew install --cask codex
An OpenAI API key must be configured (OPENAI_API_KEY environment variable or via codex initial setup).
Usage
Spawn the codex-qa subagent to handle the question:
Use the Task tool to spawn the codex-qa agent with the user's question.
The subagent will:
- Formulate a clear prompt for Codex
- Run
codex exec "question"in read-only mode - Return Codex's response
Direct Usage (without subagent)
If you prefer to run Codex directly:
codex exec "your question here"
Command Options
- Basic query:
codex exec "question" - With image:
codex -i image.png exec "question about image" - JSON output:
codex exec --json "question" - Longer timeout:
codex exec --timeout 300000 "complex question"
Common Use Cases
- Code explanation: "What does this function do?"
- Architecture questions: "How is the database layer structured?"
- Finding patterns: "Where is error handling implemented?"
- Code review: "Review this file for potential issues"
- Comparison: Get a second opinion on a code question
Notes
- Codex exec runs in read-only mode by default - it cannot modify files
- Activity streams to stderr, final answer goes to stdout
- For complex questions, use the subagent for better context isolation
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です