delegate.yaml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # ~/.claude/delegate.yaml
  2. # Configuration for /delegate command - Multi-LLM task dispatch
  3. # API Keys (preferred over environment variables)
  4. # Uncomment and add your keys:
  5. # api_keys:
  6. # gemini: "your-gemini-api-key"
  7. # openai: "your-openai-api-key"
  8. # perplexity: "your-perplexity-api-key"
  9. # Provider Configuration
  10. providers:
  11. gemini:
  12. model: gemini-2.5-pro # Recommended: 1M context, best for code analysis
  13. # model: gemini-2.5-flash # Faster, still 1M context
  14. # model: gemini-3-pro # Requires Ultra subscription (waitlist for free tier)
  15. default_flags:
  16. - --output-format
  17. - text
  18. # IMPORTANT: Use stdin piping for file content, not @file.md syntax
  19. # Example: cat file.md | gemini -m gemini-2.5-pro "prompt"
  20. openai:
  21. model: gpt-5.2 # Strongest (requires ChatGPT login)
  22. # model: gpt-5.1-codex-max # Default for Pro subscription
  23. # model: gpt-4o # API key only (pay per token)
  24. auth: chatgpt # chatgpt (subscription) or api-key
  25. default_flags:
  26. - --json
  27. perplexity:
  28. model: sonar-pro # Best balance: complex queries, more citations
  29. # model: sonar # Fast, cost-effective for quick facts
  30. # model: sonar-reasoning # Multi-step problem solving
  31. # model: sonar-reasoning-pro # Deep reasoning (DeepSeek-R1 based)
  32. default_flags: []
  33. # Unique: returns web citations with every response
  34. # Get API key at: https://www.perplexity.ai/settings/api
  35. # Conclave (Multi-Model) Settings
  36. conclave:
  37. providers: [gemini, openai] # Which providers participate
  38. # providers: [gemini, openai, perplexity] # Include Perplexity for web-grounded consensus
  39. require_consensus: true # All must agree for YES/NO verdicts
  40. # Default behavior
  41. defaults:
  42. provider: gemini # Default provider when none specified
  43. output: text # text or json
  44. verbosity: default # brief, default, or detailed