zugzbot-sdd 1.5.0 → 1.5.1

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.
Files changed (2) hide show
  1. package/README.md +5 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,15 +9,11 @@ Sistema multi-agente de 6 fases (Explorador → Planner → Builder → Tester
9
9
  ## Instalación Rápida
10
10
 
11
11
  ```bash
12
- # 1. En tu proyecto, instala el paquete:
12
+ # 1. Instala el paquete:
13
13
  npm install zugzbot-sdd
14
14
 
15
- # 2. Listo! El postinstall crea automáticamente:
16
- # - opencode.json (configuración de agentes)
17
- # - tui.json (configuración de interfaz)
18
- # - .openspec/ (estado del ciclo SDD)
19
- # - .opencode/plugins/ (plugins de opencode)
20
- # - ./sdd (comando local para ver status)
15
+ # 2. Ejecuta el postinstall para crear los archivos de configuración:
16
+ node node_modules/zugzbot-sdd/bin/zugzbot.js
21
17
 
22
18
  # 3. Inicia opencode:
23
19
  opencode
@@ -26,6 +22,8 @@ opencode
26
22
  @zugzbot
27
23
  ```
28
24
 
25
+ > El postinstall debería ejecutarse automáticamente, pero si no lo hace, usa el paso 2.
26
+
29
27
  ---
30
28
 
31
29
  ## Uso
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zugzbot-sdd",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Zugzbot SDD Swarm - Spec-Driven Development Harness for OpenCode",
5
5
  "main": "index.js",
6
6
  "type": "module",