@reinamaccredy/oh-my-opencode 3.0.0-beta.4 → 3.0.0-beta.6
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 +37 -21
- package/dist/index.js +1 -1
- 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.6",
|
|
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
|
-
|
|
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
|
-
|
|
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
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.6",
|
|
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",
|