buildcrew 1.3.0 → 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.
- package/agents/buildcrew.md +63 -0
- package/bin/setup.js +12 -0
- package/package.json +1 -1
package/agents/buildcrew.md
CHANGED
|
@@ -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/bin/setup.js
CHANGED
|
@@ -374,6 +374,18 @@ async function runInstall(force) {
|
|
|
374
374
|
log(`\n ${BOLD}buildcrew${RESET} v${VERSION}\n ${DIM}11 AI agents for Claude Code${RESET}\n`);
|
|
375
375
|
|
|
376
376
|
await mkdir(TARGET_DIR, { recursive: true });
|
|
377
|
+
|
|
378
|
+
// Migrate: remove renamed agents from previous versions
|
|
379
|
+
const deprecated = ["constitution.md"];
|
|
380
|
+
for (const old of deprecated) {
|
|
381
|
+
const oldPath = join(TARGET_DIR, old);
|
|
382
|
+
if (await exists(oldPath)) {
|
|
383
|
+
const { unlink } = await import("fs/promises");
|
|
384
|
+
await unlink(oldPath);
|
|
385
|
+
log(` ${YELLOW} ✕ ${RESET} ${old} ${DIM}(renamed → buildcrew.md)${RESET}`);
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
|
|
377
389
|
let installed = 0, skipped = 0;
|
|
378
390
|
|
|
379
391
|
for (const file of files) {
|
package/package.json
CHANGED