specweave 1.0.513 → 1.0.514

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specweave",
3
- "version": "1.0.513",
3
+ "version": "1.0.514",
4
4
  "description": "100+ domain-expert AI skills — PM, Architect, Frontend, QA, Security and more. Skills learn your team's patterns permanently. Spec-first planning, autonomous execution, multi-agent teams, synced to GitHub/JIRA. Claude Code, Cursor, Copilot & more.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -299,7 +299,7 @@ Delegate via TeamCreate + team-scoped Agent() calls. Each agent gets its own tmu
299
299
  - Copy/paste spec content into Write() calls
300
300
  - "Summarize" what an agent would produce
301
301
  - Skip any of the 3 Agent() calls
302
- - Use standalone Agent() without team_name — agents MUST be in a team for tmux visibility
302
+ - Use standalone Agent() without team_name for Phase 1/2 delegation — agents MUST be in a team for tmux visibility (exception: Deep Interview in Step 3a is standalone because it's interactive + sequential)
303
303
  - Use Skill() for these — team agents provide memory + resumability + visibility
304
304
 
305
305
  ## Step 3a: Deep Interview Mode (if enabled)
@@ -330,6 +330,16 @@ Each agent runs in its own tmux pane for visibility. Agents preload their corres
330
330
 
331
331
  ### 4a. Create Planning Team (REQUIRED — before spawning any agents)
332
332
 
333
+ **Cleanup first** — if you previously created a planning team in this session, shut down those agents before proceeding:
334
+ ```typescript
335
+ // Only if a previous plan-* team exists from this session:
336
+ SendMessage({ type: "shutdown_request", recipient: "pm" })
337
+ SendMessage({ type: "shutdown_request", recipient: "architect" })
338
+ SendMessage({ type: "shutdown_request", recipient: "planner" })
339
+ TeamDelete()
340
+ ```
341
+
342
+ Then create the new team:
333
343
  ```typescript
334
344
  TeamCreate({ team_name: "plan-XXXX-name", description: "Planning: <feature description>" })
335
345
  ```
@@ -480,7 +490,8 @@ Created increment 0003-user-authentication
480
490
 
481
491
  - `.specweave/` not found: "Run specweave init first"
482
492
  - Vague description: Ask clarifying questions
483
- - Subagent fails: Fall back to invoking `/sw:pm` or `/sw:architect` skills directly (skills still work standalone)
493
+ - TeamCreate fails: Fall back to standalone Agent() calls without team_name (loses tmux panes but still works)
494
+ - Agent fails: Fall back to invoking `/sw:pm` or `/sw:architect` skills directly (skills still work standalone)
484
495
 
485
496
  ---
486
497