返回 Skill 列表
extension
分类: 内容与媒体无需 API Key

council-chat

当用户想要向AI委员会提问、获取多个AI的观点或同时咨询Codex和Gemini时使用。触发短语包括“ask council”、“council opinion”、“what do the AIs think”、“ask both models”。

person作者: jakexiaohubgithub

Council Chat Skill

General consultation with both Codex (GPT-5.2) and Gemini for questions, opinions, and analysis.

When to Use

  • User asks for the council's opinion
  • User wants multiple AI perspectives
  • User explicitly mentions "council" or "both models"
  • User asks for consultation on a technical question

Reasoning Level

Default: high

If user mentions "quick" or "brief", use medium. If user mentions "deep" or "thorough", use xhigh.

Execution

  1. Identify the question or topic

  2. Gather relevant context (read files if needed)

  3. Run BOTH commands in parallel:

    Codex:

    codex exec --sandbox read-only -c model_reasoning_effort="high" "<question with context>"
    

    Gemini:

    gemini -s -y -o json "<question with context>"
    
  4. Collect both responses

  5. Synthesize into unified response

Response Format

## AI Council Response

### Codex (GPT-5.2) Says:
[Codex's analysis]

### Gemini Says:
[Gemini's analysis]

### Council Synthesis:
**Agreement:** [Points both models agree on]
**Divergence:** [Where they differ]
**Recommendation:** [Synthesized recommendation based on both]

---
*Session IDs: Codex=[id], Gemini=[id]*