zugzbot-sdd 1.5.2 → 1.5.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/README.md CHANGED
@@ -9,13 +9,16 @@ Sistema multi-agente de 6 fases (Explorador → Planner → Builder → Tester
9
9
  ## Instalación Rápida
10
10
 
11
11
  ```bash
12
- # 1. Ejecuta npx (descarga + init automático):
12
+ # 1. Instala el paquete:
13
+ npm install zugzbot-sdd
14
+
15
+ # 2. Ejecuta el init:
13
16
  npx zugzbot-sdd
14
17
 
15
- # 2. Inicia opencode:
18
+ # 3. Inicia opencode:
16
19
  opencode
17
20
 
18
- # 3. Invoca al orquestador:
21
+ # 4. Invoca al orquestador:
19
22
  @zugzbot
20
23
  ```
21
24
 
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zugzbot-sdd",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
4
4
  "description": "Zugzbot SDD Swarm - Spec-Driven Development Harness for OpenCode",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/zugz-models.json CHANGED
@@ -1,23 +1,14 @@
1
1
  {
2
- "official": "minimax-coding-plan/MiniMax-M2.7",
3
- "presets": {
4
- "default": {
5
- "all": "minimax-coding-plan/MiniMax-M2.7"
6
- },
7
- "free": {
8
- "all": "opencode/deepseek-v4-flash-free"
9
- },
10
- "balanced": {
11
- "all": "google/gemini-3.5-flash"
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": "minimax-coding-plan/MiniMax-M2.7",
4
+ "sdd-explorer": "minimax-coding-plan/MiniMax-M2.7",
5
+ "sdd-planner": "minimax-coding-plan/MiniMax-M2.7",
6
+ "sdd-builder": "anthropic/claude-3.5-sonnet",
7
+ "sdd-tester": "minimax-coding-plan/MiniMax-M2.7",
8
+ "sdd-deployer": "minimax-coding-plan/MiniMax-M2.7",
9
+ "sdd-archiver": "minimax-coding-plan/MiniMax-M2.7",
10
+ "aux-handyman": "minimax-coding-plan/MiniMax-M2.7",
11
+ "aux-oracle": "minimax-coding-plan/MiniMax-M2.7"
18
12
  },
19
- "notes": {
20
- "official": "Modelo oficial del arnés Zugzbot SDD",
21
- "turbo_builder": "Solo el builder usa Sonnet en preset turbo para mayor capacidad de codificación"
22
- }
23
- }
13
+ "default": "minimax-coding-plan/MiniMax-M2.7"
14
+ }