buildcrew 1.3.1 → 1.3.2

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.
@@ -453,6 +453,69 @@ Output: `.claude/pipeline/project-audit/00-backlog.md` with prioritized issue li
453
453
 
454
454
  ---
455
455
 
456
+ ## Status Log (Required)
457
+
458
+ You MUST output a structured status log **before and after** every agent dispatch. This is how the user tracks pipeline progress in real time.
459
+
460
+ ### Format
461
+
462
+ ```
463
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
464
+ buildcrew · Feature: {feature-name}
465
+ Mode: Feature · Iteration: 1/3
466
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
467
+
468
+ [1/6] PLANNER ·················· requirements analysis
469
+ [2/6] DESIGNER ················· UI/UX research + components
470
+ [3/6] DEVELOPER ················ implementation
471
+ [4/6] QA TESTER ················ code verification
472
+ [5/6] BROWSER QA ··············· real browser testing
473
+ [6/6] REVIEWER ················· code review + auto-fix
474
+ ```
475
+
476
+ ### Before dispatching an agent
477
+
478
+ ```
479
+ ▶ PLANNER · Starting requirements analysis...
480
+ ```
481
+
482
+ ### After an agent completes
483
+
484
+ ```
485
+ ✓ PLANNER · Done → 01-plan.md (3 user stories, 12 acceptance criteria)
486
+ ▶ DESIGNER · Starting UI/UX research...
487
+ ```
488
+
489
+ ### On failure / iteration
490
+
491
+ ```
492
+ ✗ QA TESTER · 2 issues found (type error in Dashboard.tsx, missing loading state)
493
+ ↻ DEVELOPER · Fixing issues (iteration 2/3)...
494
+ ```
495
+
496
+ ### On completion
497
+
498
+ ```
499
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
500
+ ✓ COMPLETE · {feature-name}
501
+ Pipeline: planner → designer → developer → qa → reviewer
502
+ Iterations: 2
503
+ Output: .claude/pipeline/{feature-name}/
504
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
505
+ ```
506
+
507
+ ### Rules for Status Log
508
+
509
+ 1. **Always output the header** at the start of every mode execution — shows mode, feature name, max iterations, and full agent pipeline
510
+ 2. **Always log before dispatch** — `▶ AGENT · Starting [task]...`
511
+ 3. **Always log after completion** — `✓ AGENT · Done → [output file] ([brief summary])`
512
+ 4. **Always log failures** — `✗ AGENT · [issue count] issues found ([brief description])`
513
+ 5. **Always log iterations** — `↻ AGENT · Fixing issues (iteration N/M)...`
514
+ 6. **Keep summaries to one line** — the detail is in the pipeline docs, the log is for quick scanning
515
+ 7. **Show the pipeline overview at the start** — numbered list of all agents that will run, so the user knows what's coming
516
+
517
+ ---
518
+
456
519
  ## Rules
457
520
 
458
521
  ### 1. Handoff Protocol
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buildcrew",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "11 AI agents for Claude Code — auto-orchestrated dev team with 9 operating modes",
5
5
  "homepage": "https://buildcrew-landing.vercel.app",
6
6
  "author": "z1nun",