opencode-ultra 0.9.1 → 0.9.2
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/index.js +10 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14801,7 +14801,7 @@ function loadConfig(projectDir) {
|
|
|
14801
14801
|
// src/agents/index.ts
|
|
14802
14802
|
var BUILTIN_AGENTS = {
|
|
14803
14803
|
sisyphus: {
|
|
14804
|
-
model: "openai
|
|
14804
|
+
model: "openai/gpt-5.3-codex",
|
|
14805
14805
|
description: "Primary orchestrator \u2014 analyzes requests, reads code directly, delegates implementation to specialists",
|
|
14806
14806
|
prompt: "__DYNAMIC__",
|
|
14807
14807
|
maxTokens: 64000,
|
|
@@ -14816,7 +14816,7 @@ var BUILTIN_AGENTS = {
|
|
|
14816
14816
|
}
|
|
14817
14817
|
},
|
|
14818
14818
|
oracle: {
|
|
14819
|
-
model: "
|
|
14819
|
+
model: "zai-coding-plan/glm-5",
|
|
14820
14820
|
description: "Design architect and debugger \u2014 conventional problem solving, architecture review",
|
|
14821
14821
|
prompt: "You are Oracle, a design architect and debugging specialist. Focus on architecture decisions, debugging complex issues, and providing well-reasoned technical solutions.",
|
|
14822
14822
|
mode: "subagent",
|
|
@@ -14824,49 +14824,49 @@ var BUILTIN_AGENTS = {
|
|
|
14824
14824
|
maxTokens: 32000
|
|
14825
14825
|
},
|
|
14826
14826
|
explore: {
|
|
14827
|
-
model: "
|
|
14827
|
+
model: "openai/gpt-5.3-codex-spark",
|
|
14828
14828
|
description: "Fast codebase explorer \u2014 finds patterns, files, and implementations quickly",
|
|
14829
14829
|
prompt: "You are Explore, a fast codebase search specialist. Use grep, glob, and file reading to find relevant code patterns, implementations, and file structures. Be thorough but fast. Return file paths with brief descriptions.",
|
|
14830
14830
|
mode: "subagent",
|
|
14831
14831
|
maxTokens: 16000
|
|
14832
14832
|
},
|
|
14833
14833
|
librarian: {
|
|
14834
|
-
model: "
|
|
14834
|
+
model: "openai/gpt-5.3-codex-spark",
|
|
14835
14835
|
description: "Documentation researcher \u2014 finds official docs, best practices, and examples",
|
|
14836
14836
|
prompt: "You are Librarian, a documentation research specialist. Find official documentation, production-quality examples, best practices, and common pitfalls for technologies and libraries. Skip beginner tutorials.",
|
|
14837
14837
|
mode: "subagent",
|
|
14838
14838
|
maxTokens: 32000
|
|
14839
14839
|
},
|
|
14840
14840
|
"multimodal-looker": {
|
|
14841
|
-
model: "
|
|
14841
|
+
model: "kimi-for-coding/k2p5",
|
|
14842
14842
|
description: "Visual analyzer \u2014 inspects images, screenshots, and visual content",
|
|
14843
14843
|
prompt: "You are Multimodal Looker, a visual analysis specialist. Analyze images, screenshots, UI mockups, and other visual content. Provide detailed observations about layout, design, and any issues found.",
|
|
14844
14844
|
mode: "subagent",
|
|
14845
14845
|
maxTokens: 16000
|
|
14846
14846
|
},
|
|
14847
14847
|
metis: {
|
|
14848
|
-
model: "
|
|
14848
|
+
model: "kimi-for-coding/k2p5",
|
|
14849
14849
|
description: "Strategic planner \u2014 breaks down complex tasks into parallel execution waves",
|
|
14850
14850
|
prompt: "You are Metis, a strategic planning specialist. Break complex tasks into structured, parallelizable work plans. Identify dependencies between tasks and group independent tasks into parallel execution waves.",
|
|
14851
14851
|
mode: "subagent",
|
|
14852
14852
|
maxTokens: 32000
|
|
14853
14853
|
},
|
|
14854
14854
|
momus: {
|
|
14855
|
-
model: "
|
|
14855
|
+
model: "openai/gpt-5.3-codex",
|
|
14856
14856
|
description: "Code reviewer \u2014 finds bugs, quality issues, and suggests improvements",
|
|
14857
14857
|
prompt: "You are Momus, a code review specialist. Analyze code for bugs, logic errors, security vulnerabilities, code quality issues, and adherence to conventions. Be critical but constructive.",
|
|
14858
14858
|
mode: "subagent",
|
|
14859
14859
|
maxTokens: 32000
|
|
14860
14860
|
},
|
|
14861
14861
|
atlas: {
|
|
14862
|
-
model: "
|
|
14862
|
+
model: "minimax-coding-plan/MiniMax-M2.5",
|
|
14863
14863
|
description: "Task orchestrator \u2014 manages project tasks and coordinates agent work",
|
|
14864
14864
|
prompt: "You are Atlas, a task orchestration specialist. Manage project tasks, coordinate agent work, track progress, and ensure all tasks are completed to specification.",
|
|
14865
14865
|
mode: "subagent",
|
|
14866
14866
|
maxTokens: 32000
|
|
14867
14867
|
},
|
|
14868
14868
|
hephaestus: {
|
|
14869
|
-
model: "
|
|
14869
|
+
model: "zai-coding-plan/glm-5",
|
|
14870
14870
|
description: "Deep autonomous worker \u2014 handles complex implementation tasks independently",
|
|
14871
14871
|
prompt: "You are Hephaestus, an autonomous implementation specialist. Handle complex coding tasks independently with high precision. Write clean, well-tested code that follows existing patterns.",
|
|
14872
14872
|
mode: "subagent",
|
|
@@ -14874,7 +14874,7 @@ var BUILTIN_AGENTS = {
|
|
|
14874
14874
|
maxTokens: 64000
|
|
14875
14875
|
},
|
|
14876
14876
|
scout: {
|
|
14877
|
-
model: "
|
|
14877
|
+
model: "openai/gpt-5.3-codex-spark",
|
|
14878
14878
|
description: "Plugin ecosystem researcher \u2014 discovers features and techniques from other OpenCode plugins",
|
|
14879
14879
|
prompt: `You are Scout, an OpenCode plugin ecosystem researcher.
|
|
14880
14880
|
|