Browse Source

Readme updates

Alvin Unreal 3 months ago
parent
commit
299b5c8432
3 changed files with 47 additions and 14 deletions
  1. 6 7
      README.md
  2. 7 7
      docs/authors-preset.md
  3. 34 0
      docs/thirty-dollars-preset.md

+ 6 - 7
README.md

@@ -38,6 +38,9 @@ bunx oh-my-opencode-slim@latest install --reset
 
 The default configuration uses OpenAI. To use Kimi, GitHub Copilot, or ZAI Coding Plan, see **[Provider Configurations](docs/provider-configurations.md)** for step-by-step instructions and config examples.
 
+> [!TIP]
+> Want to see the latest models OpenCode knows about? Run `opencode models --refresh` to refresh the cache and list currently available models.
+
 ### JSON Schema
 
 An official JSON Schema is included in the package for editor validation and autocomplete. Add a `$schema` reference to your config file:
@@ -406,11 +409,12 @@ If any agent fails to respond, check your provider authentication and config fil
 
 Slim only intercepts `apply_patch` before native execution. It rewrites recoverable stale patches, canonizes safe tolerant matches against the real file when unicode/trim drift is the only mismatch, keeps the authored `new_lines` bytes intact, preserves existing file EOL/final-newline state for updates, validates malformed patches strictly before helper execution, uses a conservative bounded LCS fallback, supports sequential `Update File` hunks on the same path through accumulated helper state, and blocks `apply_patch` before the native tool runs if any patch path falls outside the allowed root/worktree. This rescue does not extend to `edit` or `write`.
 
-### 💡 Author's Setup
+### 💡 Presets
 
 | Doc | Contents |
 |-----|----------|
-| **[Author's Preset](docs/authors-preset.md)** | The exact config the author runs daily — OpenAI + Fireworks AI + GitHub Copilot |
+| **[Author's Preset](docs/authors-preset.md)** | The exact config the author runs daily — OpenAI Pro + GitHub Copilot |
+| **[$30 Preset](docs/thirty-dollars-preset.md)** | A mixed setup using Codex Plus ($20) + GitHub Copilot Pro ($10) for about $30/month total |
 
 ---
 
@@ -499,8 +503,3 @@ Slim only intercepts `apply_patch` before native execution. It rewrites recovera
 MIT
 
 ---
-
-<!-- MoltFounders Banner -->
-<a href="https://moltfounders.com/jobs/09d1c6e7-9e0e-4683-8d78-e2376aaa2333">
-  <img src="img/moltfounders-banner.png" alt="MoltFounders - The Agent Co-Founder Network">
-</a>

+ 7 - 7
docs/authors-preset.md

@@ -8,14 +8,14 @@ This is the exact configuration the author runs day-to-day. It mixes three provi
 
 ```jsonc
 {
-  "preset": "best",
+  "preset": "openai",
   "presets": {
-    "best": { "orchestrator": { "model": "openai/gpt-5.4-fast", "skills": [ "*" ], "mcps": [ "*"] },
-      "oracle": { "model": "openai/gpt-5.4-fast", "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": [] }
+    "openai": { "orchestrator": { "model": "openai/gpt-5.4-fast", "skills": [ "*" ], "mcps": [ "*", "websearch"] },
+        "oracle": { "model": "openai/gpt-5.4-fast", "variant": "high", "skills": [], "mcps": [] },
+        "librarian": { "model": "openai/gpt-5.3-codex-spark", "variant": "low", "skills": [], "mcps": [ "websearch", "context7", "grep_app" ] },
+        "explorer": { "model": "openai/gpt-5.3-codex-spark", "variant": "low", "skills": [], "mcps": [] },
+        "designer": { "model": "github-copilot/gemini-3.1-pro-preview", "skills": [ "agent-browser" ], "mcps": [] },
+        "fixer": { "model": "openai/gpt-5.3-codex-spark", "variant": "low", "skills": [], "mcps": [] }
     }
   },
   "multiplexer": {

+ 34 - 0
docs/thirty-dollars-preset.md

@@ -0,0 +1,34 @@
+# $30 Preset
+
+This preset is for people who want a strong setup built around **Codex Plus ($20/month)** and **GitHub Copilot Pro ($10/month)**.
+
+It uses Codex Plus for the OpenAI models and GitHub Copilot for the premium council/design models, giving you a mixed-provider setup for about **$30/month total**.
+
+---
+
+## The Config
+
+```jsonc
+{
+    "preset": "thirtydollars",
+    "presets": {
+      "best": { "orchestrator": { "model": "openai/gpt-5.4", "skills": [ "*" ], "mcps": [ "*", "websearch"] },
+        "oracle": { "model": "openai/gpt-5.4", "variant": "high", "skills": [], "mcps": [] },
+        "librarian": { "model": "openai/gpt-5.4-mini", "variant": "low", "skills": [], "mcps": [ "websearch", "context7", "grep_app" ] },
+        "explorer": { "model": "openai/gpt-5.4-mini", "variant": "low", "skills": [], "mcps": [] },
+        "designer": { "model": "github-copilot/gemini-3.1-pro-preview", "skills": [ "agent-browser" ], "mcps": [] },
+        "fixer": { "model": "openai/gpt-5.4-mini", "variant": "low", "skills": [], "mcps": [] }
+      }
+    },
+   "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" },
+          "gamma": { "model": "openai/gpt-5.4" }
+        }
+      }
+    }
+  }
+```