zugzbot-sdd 1.5.3 → 1.5.5
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/bin/zugzbot.js +7 -0
- package/package.json +1 -1
- package/zugz-models.json +12 -21
package/bin/zugzbot.js
CHANGED
|
@@ -197,6 +197,13 @@ function init() {
|
|
|
197
197
|
yellow("brain.md ya existe, preservado")
|
|
198
198
|
}
|
|
199
199
|
|
|
200
|
+
const modelsPath = path.join(INSTALL_DIR, "zugz-models.json")
|
|
201
|
+
const templateModelsPath = path.join(PKG_ROOT, "zugz-models.json")
|
|
202
|
+
if (!fs.existsSync(modelsPath) && fs.existsSync(templateModelsPath)) {
|
|
203
|
+
fs.copyFileSync(templateModelsPath, modelsPath)
|
|
204
|
+
green("zugz-models.json copiado")
|
|
205
|
+
}
|
|
206
|
+
|
|
200
207
|
const gitignorePath = path.join(INSTALL_DIR, ".gitignore")
|
|
201
208
|
if (fs.existsSync(gitignorePath)) {
|
|
202
209
|
const content = fs.readFileSync(gitignorePath, "utf-8")
|
package/package.json
CHANGED
package/zugz-models.json
CHANGED
|
@@ -1,23 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
},
|
|
13
|
-
"turbo": {
|
|
14
|
-
"zugzbot": "anthropic/claude-3.5-sonnet",
|
|
15
|
-
"sdd-builder": "anthropic/claude-3.5-sonnet",
|
|
16
|
-
"default": "google/gemini-3.5-flash"
|
|
17
|
-
}
|
|
2
|
+
"agents": {
|
|
3
|
+
"zugzbot": "deepseek/deepseek-v4-pro",
|
|
4
|
+
"sdd-explorer": "deepseek/deepseek-v4-flash",
|
|
5
|
+
"sdd-planner": "deepseek/deepseek-v4-pro",
|
|
6
|
+
"sdd-builder": "minimax-coding-plan/MiniMax-M2.7",
|
|
7
|
+
"sdd-tester": "minimax-coding-plan/MiniMax-M2.7-highspeed",
|
|
8
|
+
"sdd-deployer": "minimax-coding-plan/MiniMax-M2.7-highspeed",
|
|
9
|
+
"sdd-archiver": "deepseek/deepseek-v4-flash",
|
|
10
|
+
"aux-handyman": "deepseek/deepseek-v4-flash",
|
|
11
|
+
"aux-oracle": "deepseek/deepseek-v4-flash"
|
|
18
12
|
},
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
"turbo_builder": "Solo el builder usa Sonnet en preset turbo para mayor capacidad de codificación"
|
|
22
|
-
}
|
|
23
|
-
}
|
|
13
|
+
"default": "deepseek/deepseek-v4-flash"
|
|
14
|
+
}
|