@reinamaccredy/oh-my-opencode 3.0.0-beta.6 → 3.0.0-beta.8

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.6",
2256
+ version: "3.0.0-beta.8",
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",
@@ -6764,8 +6764,8 @@ function generateOmoConfig(installConfig) {
6764
6764
  agents["multimodal-looker"] = { model: "opencode/glm-4.7-free" };
6765
6765
  }
6766
6766
  if (installConfig.hasChatGPT) {
6767
- agents["oracle"] = { model: "openai/gpt-5.2-medium" };
6768
- agents["Momus (Plan Reviewer)"] = { model: "openai/gpt-5.2-medium" };
6767
+ agents["oracle"] = { model: "openai/gpt-5.2" };
6768
+ agents["Momus (Plan Reviewer)"] = { model: "openai/gpt-5.2" };
6769
6769
  } else if (installConfig.hasClaude) {
6770
6770
  agents["oracle"] = { model: "anthropic/claude-opus-4-5" };
6771
6771
  agents["Momus (Plan Reviewer)"] = { model: "anthropic/claude-opus-4-5" };
@@ -6778,7 +6778,7 @@ function generateOmoConfig(installConfig) {
6778
6778
  if (installConfig.hasGemini) {
6779
6779
  config.categories = {
6780
6780
  "visual-engineering": { model: "proxypal/gemini-3-pro-preview" },
6781
- ultrabrain: { model: "openai/gpt-5.2-medium" },
6781
+ ultrabrain: { model: "openai/gpt-5.2" },
6782
6782
  artistry: { model: "proxypal/gemini-3-pro-preview" },
6783
6783
  quick: { model: "proxypal/gemini-3-flash-preview" },
6784
6784
  "most-capable": { model: "proxypal/gemini-claude-opus-4-5-thinking" },
@@ -6787,7 +6787,7 @@ function generateOmoConfig(installConfig) {
6787
6787
  };
6788
6788
  } else if (installConfig.hasChatGPT) {
6789
6789
  config.categories = {
6790
- ultrabrain: { model: "openai/gpt-5.2-medium" }
6790
+ ultrabrain: { model: "openai/gpt-5.2" }
6791
6791
  };
6792
6792
  }
6793
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-medium",
238
+ model: "openai/gpt-5.2",
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).
@@ -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",
@@ -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.6",
3
+ "version": "3.0.0-beta.8",
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",