@reinamaccredy/oh-my-opencode 3.0.0-beta.3 → 3.0.0-beta.4

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.3",
2256
+ version: "3.0.0-beta.4",
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",
@@ -6743,7 +6743,7 @@ function generateOmoConfig(installConfig) {
6743
6743
  }
6744
6744
  agents["librarian"] = { model: "opencode/glm-4.7-free" };
6745
6745
  if (installConfig.hasGemini) {
6746
- agents["explore"] = { model: "google/antigravity-gemini-3-flash" };
6746
+ agents["explore"] = { model: "proxypal/gemini-3-flash-preview" };
6747
6747
  } else if (installConfig.hasClaude && installConfig.isMax20) {
6748
6748
  agents["explore"] = { model: "anthropic/claude-haiku-4-5" };
6749
6749
  } else {
@@ -6755,9 +6755,9 @@ function generateOmoConfig(installConfig) {
6755
6755
  };
6756
6756
  }
6757
6757
  if (installConfig.hasGemini) {
6758
- agents["frontend-ui-ux-engineer"] = { model: "google/antigravity-gemini-3-pro-high" };
6759
- agents["document-writer"] = { model: "google/antigravity-gemini-3-flash" };
6760
- agents["multimodal-looker"] = { model: "google/antigravity-gemini-3-flash" };
6758
+ agents["frontend-ui-ux-engineer"] = { model: "proxypal/gemini-3-pro-preview" };
6759
+ agents["document-writer"] = { model: "proxypal/gemini-3-flash-preview" };
6760
+ agents["multimodal-looker"] = { model: "proxypal/gemini-3-flash-preview" };
6761
6761
  } else {
6762
6762
  const fallbackModel = installConfig.hasClaude ? "anthropic/claude-opus-4-5" : "opencode/glm-4.7-free";
6763
6763
  agents["frontend-ui-ux-engineer"] = { model: fallbackModel };
@@ -6769,9 +6769,9 @@ function generateOmoConfig(installConfig) {
6769
6769
  }
6770
6770
  if (installConfig.hasGemini) {
6771
6771
  config.categories = {
6772
- "visual-engineering": { model: "google/gemini-3-pro-high" },
6773
- artistry: { model: "google/gemini-3-pro-high" },
6774
- writing: { model: "google/gemini-3-flash-high" }
6772
+ "visual-engineering": { model: "proxypal/gemini-3-pro-preview" },
6773
+ artistry: { model: "proxypal/gemini-3-pro-preview" },
6774
+ writing: { model: "proxypal/gemini-3-flash-preview" }
6775
6775
  };
6776
6776
  }
6777
6777
  return config;
package/dist/index.js CHANGED
@@ -231,7 +231,7 @@ The more explicit your prompt, the better the results.
231
231
  var init_constants = __esm(() => {
232
232
  DEFAULT_CATEGORIES = {
233
233
  "visual-engineering": {
234
- model: "google/gemini-3-pro-preview",
234
+ model: "proxypal/gemini-3-pro-preview",
235
235
  temperature: 0.7
236
236
  },
237
237
  ultrabrain: {
@@ -239,23 +239,23 @@ var init_constants = __esm(() => {
239
239
  temperature: 0.1
240
240
  },
241
241
  artistry: {
242
- model: "google/gemini-3-pro-preview",
242
+ model: "proxypal/gemini-3-pro-preview",
243
243
  temperature: 0.9
244
244
  },
245
245
  quick: {
246
- model: "anthropic/claude-haiku-4-5",
246
+ model: "proxypal/gemini-3-flash-preview",
247
247
  temperature: 0.3
248
248
  },
249
249
  "most-capable": {
250
- model: "anthropic/claude-opus-4-5",
250
+ model: "proxypal/gemini-claude-opus-4-5-thinking",
251
251
  temperature: 0.1
252
252
  },
253
253
  writing: {
254
- model: "google/gemini-3-flash-preview",
254
+ model: "proxypal/gemini-3-flash-preview",
255
255
  temperature: 0.5
256
256
  },
257
257
  general: {
258
- model: "anthropic/claude-sonnet-4-5",
258
+ model: "proxypal/gemini-claude-sonnet-4-5-thinking",
259
259
  temperature: 0.3
260
260
  }
261
261
  };
@@ -16941,11 +16941,11 @@ var HOOK_NAME_MAP = {
16941
16941
  "anthropic-auto-compact": "anthropic-context-window-limit-recovery"
16942
16942
  };
16943
16943
  var MODEL_TO_CATEGORY_MAP = {
16944
- "google/gemini-3-pro-preview": "visual-engineering",
16944
+ "proxypal/gemini-3-pro-preview": "visual-engineering",
16945
16945
  "openai/gpt-5.2": "ultrabrain",
16946
- "anthropic/claude-haiku-4-5": "quick",
16947
- "anthropic/claude-opus-4-5": "most-capable",
16948
- "anthropic/claude-sonnet-4-5": "general"
16946
+ "proxypal/gemini-3-flash-preview": "quick",
16947
+ "proxypal/gemini-claude-opus-4-5-thinking": "most-capable",
16948
+ "proxypal/gemini-claude-sonnet-4-5-thinking": "general"
16949
16949
  };
16950
16950
  function migrateAgentNames(agents) {
16951
16951
  const migrated = {};
@@ -50687,7 +50687,7 @@ Flood with parallel calls. Cross-validate findings across multiple tools.`
50687
50687
  var exploreAgent = createExploreAgent();
50688
50688
 
50689
50689
  // src/agents/frontend-ui-ux-engineer.ts
50690
- var DEFAULT_MODEL5 = "google/gemini-3-pro-preview";
50690
+ var DEFAULT_MODEL5 = "proxypal/gemini-3-pro-preview";
50691
50691
  var FRONTEND_PROMPT_METADATA = {
50692
50692
  category: "specialist",
50693
50693
  cost: "CHEAP",
@@ -50787,7 +50787,7 @@ Interpret creatively and make unexpected choices that feel genuinely designed fo
50787
50787
  var frontendUiUxEngineerAgent = createFrontendUiUxEngineerAgent();
50788
50788
 
50789
50789
  // src/agents/document-writer.ts
50790
- var DEFAULT_MODEL6 = "google/gemini-3-flash-preview";
50790
+ var DEFAULT_MODEL6 = "proxypal/gemini-3-flash-preview";
50791
50791
  var DOCUMENT_WRITER_PROMPT_METADATA = {
50792
50792
  category: "specialist",
50793
50793
  cost: "CHEAP",
@@ -51002,7 +51002,7 @@ You are a technical writer who creates documentation that developers actually wa
51002
51002
  var documentWriterAgent = createDocumentWriterAgent();
51003
51003
 
51004
51004
  // src/agents/multimodal-looker.ts
51005
- var DEFAULT_MODEL7 = "google/gemini-3-flash";
51005
+ var DEFAULT_MODEL7 = "proxypal/gemini-3-flash-preview";
51006
51006
  var MULTIMODAL_LOOKER_PROMPT_METADATA = {
51007
51007
  category: "utility",
51008
51008
  cost: "CHEAP",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reinamaccredy/oh-my-opencode",
3
- "version": "3.0.0-beta.3",
3
+ "version": "3.0.0-beta.4",
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",