@reinamaccredy/oh-my-opencode 3.0.0-beta.5 → 3.0.0-beta.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli/index.js CHANGED
@@ -2253,7 +2253,7 @@ var require_picocolors = __commonJS((exports, module) => {
2253
2253
  var require_package = __commonJS((exports, module) => {
2254
2254
  module.exports = {
2255
2255
  name: "@reinamaccredy/oh-my-opencode",
2256
- version: "3.0.0-beta.5",
2256
+ version: "3.0.0-beta.7",
2257
2257
  description: "Fork of oh-my-opencode with Maestro workflow integration - Multi-Model Orchestration, Parallel Background Agents, Design Phases, and TDD Methodology",
2258
2258
  main: "dist/index.js",
2259
2259
  types: "dist/index.d.ts",
@@ -6738,31 +6738,39 @@ function generateOmoConfig(installConfig) {
6738
6738
  config.google_auth = false;
6739
6739
  }
6740
6740
  const agents = {};
6741
- if (!installConfig.hasClaude) {
6742
- agents["Sisyphus"] = { model: "opencode/glm-4.7-free" };
6743
- }
6744
- agents["librarian"] = { model: "opencode/glm-4.7-free" };
6745
6741
  if (installConfig.hasGemini) {
6742
+ agents["Sisyphus"] = { model: "proxypal/gemini-claude-opus-4-5-thinking" };
6743
+ agents["librarian"] = { model: "proxypal/gemini-claude-opus-4-5-thinking" };
6746
6744
  agents["explore"] = { model: "proxypal/gemini-3-flash-preview" };
6747
- } else if (installConfig.hasClaude && installConfig.isMax20) {
6748
- agents["explore"] = { model: "anthropic/claude-haiku-4-5" };
6749
- } else {
6750
- agents["explore"] = { model: "opencode/glm-4.7-free" };
6751
- }
6752
- if (!installConfig.hasChatGPT) {
6753
- agents["oracle"] = {
6754
- model: installConfig.hasClaude ? "anthropic/claude-opus-4-5" : "opencode/glm-4.7-free"
6755
- };
6756
- }
6757
- if (installConfig.hasGemini) {
6758
6745
  agents["frontend-ui-ux-engineer"] = { model: "proxypal/gemini-3-pro-preview" };
6759
6746
  agents["document-writer"] = { model: "proxypal/gemini-3-flash-preview" };
6760
6747
  agents["multimodal-looker"] = { model: "proxypal/gemini-3-flash-preview" };
6748
+ agents["orchestrator-sisyphus"] = { model: "proxypal/gemini-claude-sonnet-4-5-thinking" };
6749
+ agents["Prometheus (Planner)"] = { model: "proxypal/gemini-claude-opus-4-5-thinking" };
6750
+ agents["Metis (Plan Consultant)"] = { model: "proxypal/gemini-claude-opus-4-5-thinking" };
6751
+ } else if (installConfig.hasClaude) {
6752
+ agents["Sisyphus"] = { model: "anthropic/claude-opus-4-5" };
6753
+ agents["librarian"] = { model: "anthropic/claude-sonnet-4-5" };
6754
+ agents["explore"] = { model: installConfig.isMax20 ? "anthropic/claude-haiku-4-5" : "opencode/glm-4.7-free" };
6755
+ agents["frontend-ui-ux-engineer"] = { model: "anthropic/claude-opus-4-5" };
6756
+ agents["document-writer"] = { model: "anthropic/claude-opus-4-5" };
6757
+ agents["multimodal-looker"] = { model: "anthropic/claude-opus-4-5" };
6758
+ } else {
6759
+ agents["Sisyphus"] = { model: "opencode/glm-4.7-free" };
6760
+ agents["librarian"] = { model: "opencode/glm-4.7-free" };
6761
+ agents["explore"] = { model: "opencode/glm-4.7-free" };
6762
+ agents["frontend-ui-ux-engineer"] = { model: "opencode/glm-4.7-free" };
6763
+ agents["document-writer"] = { model: "opencode/glm-4.7-free" };
6764
+ agents["multimodal-looker"] = { model: "opencode/glm-4.7-free" };
6765
+ }
6766
+ if (installConfig.hasChatGPT) {
6767
+ agents["oracle"] = { model: "openai/gpt-5.2-medium" };
6768
+ agents["Momus (Plan Reviewer)"] = { model: "openai/gpt-5.2-medium" };
6769
+ } else if (installConfig.hasClaude) {
6770
+ agents["oracle"] = { model: "anthropic/claude-opus-4-5" };
6771
+ agents["Momus (Plan Reviewer)"] = { model: "anthropic/claude-opus-4-5" };
6761
6772
  } else {
6762
- const fallbackModel = installConfig.hasClaude ? "anthropic/claude-opus-4-5" : "opencode/glm-4.7-free";
6763
- agents["frontend-ui-ux-engineer"] = { model: fallbackModel };
6764
- agents["document-writer"] = { model: fallbackModel };
6765
- agents["multimodal-looker"] = { model: fallbackModel };
6773
+ agents["oracle"] = { model: "opencode/glm-4.7-free" };
6766
6774
  }
6767
6775
  if (Object.keys(agents).length > 0) {
6768
6776
  config.agents = agents;
@@ -6770,8 +6778,16 @@ function generateOmoConfig(installConfig) {
6770
6778
  if (installConfig.hasGemini) {
6771
6779
  config.categories = {
6772
6780
  "visual-engineering": { model: "proxypal/gemini-3-pro-preview" },
6781
+ ultrabrain: { model: "openai/gpt-5.2-medium" },
6773
6782
  artistry: { model: "proxypal/gemini-3-pro-preview" },
6774
- writing: { model: "proxypal/gemini-3-flash-preview" }
6783
+ quick: { model: "proxypal/gemini-3-flash-preview" },
6784
+ "most-capable": { model: "proxypal/gemini-claude-opus-4-5-thinking" },
6785
+ writing: { model: "proxypal/gemini-3-flash-preview" },
6786
+ general: { model: "proxypal/gemini-claude-opus-4-5-thinking" }
6787
+ };
6788
+ } else if (installConfig.hasChatGPT) {
6789
+ config.categories = {
6790
+ ultrabrain: { model: "openai/gpt-5.2-medium" }
6775
6791
  };
6776
6792
  }
6777
6793
  return config;
package/dist/index.js CHANGED
@@ -235,7 +235,7 @@ var init_constants = __esm(() => {
235
235
  temperature: 0.7
236
236
  },
237
237
  ultrabrain: {
238
- model: "openai/gpt-5.2",
238
+ model: "openai/gpt-5.2-medium",
239
239
  temperature: 0.1
240
240
  },
241
241
  artistry: {
@@ -49548,7 +49548,7 @@ ${patterns.join(`
49548
49548
  }
49549
49549
 
49550
49550
  // src/agents/sisyphus.ts
49551
- var DEFAULT_MODEL = "anthropic/claude-opus-4-5";
49551
+ var DEFAULT_MODEL = "proxypal/gemini-claude-opus-4-5-thinking";
49552
49552
  var SISYPHUS_ROLE_SECTION = `<Role>
49553
49553
  You are "Sisyphus" - Powerful AI Agent with orchestration capabilities from OhMyOpenCode.
49554
49554
  Named by [YeonGyu Kim](https://github.com/code-yeongyu).
@@ -50141,7 +50141,7 @@ function createSisyphusAgent(model = DEFAULT_MODEL, availableAgents, availableTo
50141
50141
  var sisyphusAgent = createSisyphusAgent();
50142
50142
 
50143
50143
  // src/agents/oracle.ts
50144
- var DEFAULT_MODEL2 = "openai/gpt-5.2";
50144
+ var DEFAULT_MODEL2 = "openai/gpt-5.2-medium";
50145
50145
  var ORACLE_PROMPT_METADATA = {
50146
50146
  category: "advisor",
50147
50147
  cost: "EXPENSIVE",
@@ -50254,7 +50254,7 @@ function createOracleAgent(model = DEFAULT_MODEL2) {
50254
50254
  var oracleAgent = createOracleAgent();
50255
50255
 
50256
50256
  // src/agents/librarian.ts
50257
- var DEFAULT_MODEL3 = "anthropic/claude-sonnet-4-5";
50257
+ var DEFAULT_MODEL3 = "proxypal/gemini-claude-opus-4-5-thinking";
50258
50258
  var LIBRARIAN_PROMPT_METADATA = {
50259
50259
  category: "exploration",
50260
50260
  cost: "CHEAP",
@@ -51318,7 +51318,7 @@ var metisRestrictions = createAgentToolRestrictions([
51318
51318
  "task",
51319
51319
  "sisyphus_task"
51320
51320
  ]);
51321
- var DEFAULT_MODEL8 = "anthropic/claude-opus-4-5";
51321
+ var DEFAULT_MODEL8 = "proxypal/gemini-claude-opus-4-5-thinking";
51322
51322
  function createMetisAgent(model = DEFAULT_MODEL8) {
51323
51323
  return {
51324
51324
  description: "Pre-planning consultant that analyzes requests to identify hidden intentions, ambiguities, and AI failure points.",
@@ -52737,7 +52737,7 @@ function buildDynamicOrchestratorPrompt(ctx) {
52737
52737
  const skillsSection = buildSkillsSection(skills);
52738
52738
  return ORCHESTRATOR_SISYPHUS_SYSTEM_PROMPT.replace("{CATEGORY_SECTION}", categorySection).replace("{AGENT_SECTION}", agentSection).replace("{DECISION_MATRIX}", decisionMatrix).replace("{SKILLS_SECTION}", skillsSection);
52739
52739
  }
52740
- var DEFAULT_MODEL9 = "anthropic/claude-sonnet-4-5";
52740
+ var DEFAULT_MODEL9 = "proxypal/gemini-claude-sonnet-4-5-thinking";
52741
52741
  function createOrchestratorSisyphusAgent(ctx) {
52742
52742
  const restrictions = createAgentToolRestrictions([
52743
52743
  "task",
@@ -52756,7 +52756,7 @@ function createOrchestratorSisyphusAgent(ctx) {
52756
52756
  var orchestratorSisyphusAgent = createOrchestratorSisyphusAgent();
52757
52757
 
52758
52758
  // src/agents/momus.ts
52759
- var DEFAULT_MODEL10 = "openai/gpt-5.2";
52759
+ var DEFAULT_MODEL10 = "openai/gpt-5.2-medium";
52760
52760
  var MOMUS_SYSTEM_PROMPT = `You are a work plan review expert. You review the provided work plan (.sisyphus/plans/{name}.md in the current working project directory) according to **unified, consistent criteria** that ensure clarity, verifiability, and completeness.
52761
52761
 
52762
52762
  **CRITICAL FIRST RULE**:
@@ -56084,7 +56084,7 @@ function createConfigHandler(deps) {
56084
56084
  const prometheusOverride = pluginConfig.agents?.["Prometheus (Planner)"];
56085
56085
  const defaultModel = config3.model;
56086
56086
  const prometheusBase = {
56087
- model: defaultModel ?? "anthropic/claude-opus-4-5",
56087
+ model: defaultModel ?? "proxypal/gemini-claude-opus-4-5-thinking",
56088
56088
  mode: "primary",
56089
56089
  prompt: PROMETHEUS_SYSTEM_PROMPT,
56090
56090
  permission: PROMETHEUS_PERMISSION,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reinamaccredy/oh-my-opencode",
3
- "version": "3.0.0-beta.5",
3
+ "version": "3.0.0-beta.7",
4
4
  "description": "Fork of oh-my-opencode with Maestro workflow integration - Multi-Model Orchestration, Parallel Background Agents, Design Phases, and TDD Methodology",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",