[DEPRECATED] Use the standalone Conclave CLI instead: https://github.com/0xDarkMatter/conclave
Directs users to install the standalone Conclave CLI for multi-LLM consensus instead of this deprecated command.
/plugin marketplace add 0xDarkMatter/claude-mods/plugin install 0xdarkmatter-claude-mods@0xDarkMatter/claude-modsThis command has been deprecated. Conclave is now a standalone CLI tool.
The /conclave command has been replaced by the Conclave CLI - a standalone, universal multi-LLM consensus tool that works from any context (Claude Code, OpenCode, Gemini CLI, terminal, CI/CD).
# macOS/Linux
curl -fsSL https://raw.githubusercontent.com/0xDarkMatter/conclave/main/install.sh | bash
# Or with Go
go install github.com/0xDarkMatter/conclave@latest
# Query multiple LLMs with a judge for synthesis
conclave gemini,openai,glm "Is this code secure?" --judge claude
# Pipe file content
cat src/auth.ts | conclave gemini,openai "Review this" --judge claude
# Multiple files
conclave gemini,openai "Compare these" --file a.go --file b.go --judge claude
# Raw results (no synthesis)
conclave gemini,openai "Analyze this" --no-judge --json
The original /conclave command was 877 lines of documentation that Claude had to parse and manually execute every time. The new CLI:
GitHub: https://github.com/0xDarkMatter/conclave
See the repository for full documentation, configuration options, and provider support.