specrails-core 4.0.6 → 4.0.7

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": "specrails-core",
3
- "version": "4.0.6",
3
+ "version": "4.0.7",
4
4
  "description": "AI agent workflow system for Claude Code — installs 12 specialized agents, orchestration commands, and persona-driven product discovery into any repository",
5
5
  "bin": {
6
6
  "specrails-core": "bin/specrails-core.js"
@@ -555,6 +555,24 @@ For each entry in `DEVELOPER_ROUTING`, launch the assigned developer agent using
555
555
 
556
556
  Wait for all developers to complete.
557
557
 
558
+ **Summary timing (multi-feature mode):** When running multiple background developer agents, individual `task_notification` completions MUST NOT trigger a final Phase 3b summary. As each agent completes, emit only a brief one-line acknowledgment:
559
+ ```
560
+ [phase-3b] Developer for <feature> ✓ (<N> tool uses, <duration>)
561
+ ```
562
+ Only after the LAST background agent sends its completion notification, emit the consolidated summary:
563
+ ```
564
+ ## Phase 3b Complete
565
+
566
+ | Feature | Agent | Tool uses | Duration |
567
+ |---------|-------|-----------|----------|
568
+ | <feature-a> | sr-developer | 64 | 8m 02s |
569
+ | <feature-b> | sr-developer | 50 | 7m 35s |
570
+
571
+ All N developers complete. Proceeding to Phase 3c.
572
+ ```
573
+
574
+ This prevents stale "still waiting" text from appearing as the terminal result when the job completes.
575
+
558
576
  **Pipeline state:** update `developer` → `done`. Also update `implemented_files` in the state file with the complete list of files created or modified by the developer agent(s). If developer failed: update `developer` → `failed` with error context `"<agent-id> failed: <exit code or error description>"`.
559
577
 
560
578
  ## Phase 3c: Write Tests