yogirk/agent-council

82 stars · Last commit 2026-04-07

A skill that convenes a panel of CLI-based AI agents (Claude Code, Codex, Gemini CLI) to deliberate on engineering problems through structured multi-stage discussion, peer review, and synthesis

README preview

# Agent Council

Convene a panel of CLI-based AI agents to deliberate on your questions. Three models answer independently, review each other's work, and the invoking agent synthesizes the verdict as chairman.

Works with **Claude Code**, **Codex CLI**, and **Gemini CLI**. Whichever tool you invoke from becomes the chairman. The others are council members.

Inspired by [Karpathy's LLM Council](https://github.com/karpathy/llm-council), adapted for the CLI agent ecosystem.

```
/council "Should we use Postgres or DynamoDB for our event sourcing system?"
```

```
Dispatching Stage 1 to 3 agents in parallel...
  - claude (timeout: 120s)
  - codex (timeout: 120s)
  - gemini (timeout: 180s)
  claude responded (38.2s)
  codex responded (52.1s)
  Quorum reached (2/3). Giving stragglers 30s grace...

View full repository on GitHub →