orch is now installed via home-manager, no longer needs to be run from source directory with uv run.
1.1 KiB
1.1 KiB
Orch Skill
Multi-model AI consensus skill for Claude Code and OpenCode agents.
Purpose
Enables agents to query multiple AI models simultaneously and aggregate their perspectives for:
- Second opinions on reasoning
- Architectural/design decisions
- Devil's advocate analysis
- Brainstorming from diverse viewpoints
- Code review with multiple perspectives
Quick Start
# Get consensus on a decision
orch consensus "Should we use SQLite or PostgreSQL for this use case?" flash gemini claude
# Devil's advocate
orch consensus "Should we adopt microservices?" gpt5:for claude:against flash:neutral
# Code review with file context
orch consensus "Is this approach correct?" flash gemini --file src/handler.py --mode critique
Files
SKILL.md- Agent instructions and usage patterns (loaded by Claude Code)README.md- Human documentation (this file)
Prerequisites
orchCLI installed (via home-manager or system packages)- API keys for model providers (OPENROUTER_KEY, GOOGLE_API_KEY, OPENAI_API_KEY)
Installation
Add orch to your project's .skills file:
orch
Then run direnv reload.