Browse Source

Author preset

Alvin Unreal 2 weeks ago
parent
commit
7330070cc9
1 changed files with 8 additions and 93 deletions
  1. 8 93
      docs/authors-preset.md

+ 8 - 93
docs/authors-preset.md

@@ -10,113 +10,28 @@ This is the exact configuration the author runs day-to-day. It mixes three provi
 {
   "preset": "best",
   "presets": {
-    "best": {
-      // High-reasoning orchestrator — needs to plan, delegate, and synthesize
-      "orchestrator": {
-        "model": "openai/gpt-5.4",
-        "skills": ["*"],
-        "mcps": ["*"]
-      },
-      // Strategic advisor — high variant for deep thinking
-      "oracle": {
-        "model": "openai/gpt-5.4",
-        "variant": "high",
-        "skills": [],
-        "mcps": []
-      },
-      // External knowledge retrieval — fast and cheap, with all search MCPs
-      "librarian": {
-        "model": "fireworks-ai/accounts/fireworks/routers/kimi-k2p5-turbo",
-        "variant": "low",
-        "skills": [],
-        "mcps": ["websearch", "context7", "grep_app"]
-      },
-      // Codebase recon — fast model, no external tools needed
-      "explorer": {
-        "model": "fireworks-ai/accounts/fireworks/routers/kimi-k2p5-turbo",
-        "variant": "low",
-        "skills": [],
-        "mcps": []
-      },
-      // UI/UX work — Gemini excels at visual reasoning and browser tasks
-      "designer": {
-        "model": "github-copilot/gemini-3.1-pro-preview",
-        "skills": ["agent-browser"],
-        "mcps": []
-      },
-      // Fast implementation — Kimi is quick and capable for focused coding tasks
-      "fixer": {
-        "model": "fireworks-ai/accounts/fireworks/routers/kimi-k2p5-turbo",
-        "variant": "low",
-        "skills": [],
-        "mcps": []
-      }
+    "best": { "orchestrator": { "model": "openai/gpt-5.4", "skills": [ "*" ], "mcps": [ "*"] },
+      "oracle": { "model": "openai/gpt-5.4", "variant": "high", "skills": [], "mcps": [] },
+      "librarian": { "model": "fireworks-ai/accounts/fireworks/routers/kimi-k2p5-turbo", "variant": "low", "skills": [], "mcps": [ "websearch", "context7", "grep_app" ] },
+      "explorer": { "model": "fireworks-ai/accounts/fireworks/routers/kimi-k2p5-turbo", "variant": "low", "skills": [], "mcps": [] },
+      "designer": { "model": "github-copilot/gemini-3.1-pro-preview", "skills": [ "agent-browser" ], "mcps": [] },
+      "fixer": { "model": "fireworks-ai/accounts/fireworks/routers/kimi-k2p5-turbo", "variant": "low", "skills": [], "mcps": [] }
     }
   },
-
-  // Real-time pane monitoring
   "tmux": {
     "enabled": true,
     "layout": "main-vertical",
     "main_pane_size": 60
   },
-
-  // Council: diverse providers for maximum perspective spread
   "council": {
     "master": { "model": "openai/gpt-5.4" },
     "presets": {
       "default": {
-        "alpha": { "model": "github-copilot/claude-opus-4.6" },
-        "beta":  { "model": "github-copilot/gemini-3.1-pro-preview" },
+        "alpha":  { "model": "github-copilot/claude-opus-4.6" },
+        "beta": { "model": "github-copilot/gemini-3.1-pro-preview" },
         "gamma": { "model": "fireworks-ai/accounts/fireworks/routers/kimi-k2p5-turbo" }
       }
     }
   }
 }
 ```
-
----
-
-## Why These Choices
-
-### Orchestrator & Oracle → `openai/gpt-5.4`
-
-The Orchestrator is the most important agent — it plans, delegates, and synthesizes results from the whole team. Oracle handles hard architectural questions. Both benefit from the strongest available reasoning model.
-
-### Librarian, Explorer, Fixer → Kimi K2P5 via Fireworks AI
-
-[Fireworks AI](https://fireworks.ai) offers Kimi K2P5 as a routed endpoint (`fireworks-ai/accounts/fireworks/routers/kimi-k2p5-turbo`). The model is fast and highly capable for coding tasks. These three agents do high-volume breadth work (searching, reading, writing), so speed and cost matter more than raw reasoning power.
-
-To authenticate with Fireworks AI:
-```bash
-opencode auth login
-# Select "fireworks-ai" provider
-```
-
-### Designer → `github-copilot/gemini-3.1-pro-preview`
-
-Gemini has strong multimodal and visual reasoning — good fit for UI/UX work and browser-based tasks. GitHub Copilot subscription gives access to it alongside Claude and Grok.
-
-### Council → Three Providers
-
-The council uses one model each from Anthropic (Claude), Google (Gemini), and Fireworks/Kimi — three architecturally different models. The more diverse the perspectives, the more useful the synthesis. GPT-5.4 as master keeps synthesis coherent.
-
----
-
-## Required Authentication
-
-This preset requires three providers to be authenticated:
-
-```bash
-opencode auth login  # run once per provider
-
-# Authenticate:
-# → openai
-# → github-copilot
-# → fireworks-ai
-```
-
-Verify all agents are responding after setup:
-```
-ping all agents
-```