skills/skills/orch
dan f24b2bb518 feat: add emes plugin structure to orch skill
- Add .claude-plugin/plugin.json with metadata
- Copy SKILL.md to skills/orch.md for auto-discovery
- Keep original SKILL.md for Nix backward compat
- Add emes-conversion-guide.md documenting the pattern

Part of skills-6x1 (emes plugin architecture epic)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-09 11:03:37 -08:00
..
.claude-plugin feat: add emes plugin structure to orch skill 2026-01-09 11:03:37 -08:00
skills feat: add emes plugin structure to orch skill 2026-01-09 11:03:37 -08:00
README.md fix(orch): update docs for globally installed CLI 2025-12-16 18:45:19 -08:00
SKILL.md docs: add conversational patterns to orch skill 2025-12-29 15:34:09 -05:00

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

  • orch CLI 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.