@reinamaccredy/oh-my-opencode 3.0.0-beta.7 → 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 +5 -5
- package/dist/index.js +3 -3
- package/package.json +1 -1
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.
|
|
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
|
|
6768
|
-
agents["Momus (Plan Reviewer)"] = { model: "openai/gpt-5.2
|
|
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
|
|
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
|
|
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
|
|
238
|
+
model: "openai/gpt-5.2",
|
|
239
239
|
temperature: 0.1
|
|
240
240
|
},
|
|
241
241
|
artistry: {
|
|
@@ -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";
|
|
50145
50145
|
var ORACLE_PROMPT_METADATA = {
|
|
50146
50146
|
category: "advisor",
|
|
50147
50147
|
cost: "EXPENSIVE",
|
|
@@ -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";
|
|
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**:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reinamaccredy/oh-my-opencode",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
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",
|