You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 1, 2026. It is now read-only.
Multi-model code review for [Claude Code](https://claude.com/claude-code). Run reviews across multiple AI CLI tools in parallel and get consensus-driven feedback.
5
+
Multi-model AI collaboration for [Claude Code](https://claude.com/claude-code). Get consensus-driven code reviews and second opinions from multiple AI models in parallel.
6
+
7
+
## Commands
8
+
9
+
| Command | Purpose |
10
+
|---------|---------|
11
+
|`/review`| Multi-model code review on your staged changes |
12
+
|`/consult`| Get a second opinion when stuck on a problem |
You can define multiple entries for the same provider with different models (e.g., `claude-opus` and `claude-sonnet`).
88
+
#### Tool Fields
89
+
90
+
| Field | Required | Description |
91
+
|-------|----------|-------------|
92
+
|`enabled`| Yes | Whether to use this tool |
93
+
|`scope`| No | Array of commands: `["review"]`, `["consult"]`, or `["review", "consult"]`. If omitted, tool is used for all commands |
94
+
|`command`| Yes | CLI command to run |
95
+
|`model`| No | Model to use (injected via `--model` or `-m` flag) |
96
+
|`description`| No | Human-readable description |
116
97
117
-
The `model` field is optional for most tools. If omitted, each tool uses its default model. **Exception:** Ollama requires an explicit `model` since it has no default.
98
+
You can define multiple entries for the same provider with different models (e.g., `claude-opus` and `claude-sonnet`).
118
99
119
100
**Supported models:**
120
101
@@ -134,13 +115,14 @@ The `model` field is optional for most tools. If omitted, each tool uses its def
134
115
135
116
> **Note:** Grok uses the community CLI ([`@vibe-kit/grok-cli`](https://github.com/superagent-ai/grok-cli)) until xAI releases the official "Grok Build" CLI.
136
117
137
-
### Prompt (`~/.config/conclave/prompt.md`)
118
+
### Prompts
138
119
139
-
Customize review instructions with template variables:
@@ -156,16 +138,36 @@ Customize review instructions with template variables:
156
138
157
139
## Usage
158
140
141
+
### Code Review
142
+
159
143
```bash
144
+
# Review staged changes
145
+
git add -p
160
146
/review
161
147
```
162
148
149
+
### Second Opinion
150
+
151
+
```bash
152
+
# When stuck on a problem
153
+
/consult "why is the table rendering broken after paste?"
154
+
155
+
# When going in circles
156
+
/consult "I've tried X, Y, Z but none work"
157
+
158
+
# Validate an approach
159
+
/consult "is this the right way to handle state here?"
160
+
```
161
+
162
+
`/consult` passes your Claude Code conversation history to external models, so they can see what's already been tried and avoid suggesting the same things.
0 commit comments