@devshop/crew 0.11.0 → 0.11.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.11.1](https://github.com/devshop-software/crew/compare/v0.11.0...v0.11.1) (2026-05-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **indie-agent:** timestamp workflow folders, commit progress log on run-done ([c9c8c35](https://github.com/devshop-software/crew/commit/c9c8c35c00c080f363c33c62595d6440b446547e))
7
+
1
8
  # [0.11.0](https://github.com/devshop-software/crew/compare/v0.10.1...v0.11.0) (2026-05-09)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devshop/crew",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "Project-agnostic Claude Code skills for spec → implement → qa → review → ship",
5
5
  "bin": {
6
6
  "crew": "scripts/cli.js"
@@ -58,9 +58,9 @@ The input may include a natural-language breakpoint instruction like "stop after
58
58
 
59
59
  ## Step 1W — Worktree Setup (new features only)
60
60
 
61
- 1. **Derive the folder name:** Short, scannable kebab-case name (2–5 words) derived from the input. No timestamp prefix in the directory name. Example: `dark-mode`, `auth-refactor`, `db-seed-script`
62
- 2. **Derive the branch name:** `<branch-prefix>YYYYMMDD-HHMM-<folder-name>` using the current timestamp. Example: `feature/20260413-1423-dark-mode`. The timestamp lives in the branch name, not the directory.
63
- 3. **Determine the worktree path:** `../../wt/<folder-name>` — inside the `wt/` subdirectory at the project root. Example: if you're running from `~/projects/rival.sale/main`, the worktree goes to `~/projects/rival.sale/wt/dark-mode`.
61
+ 1. **Derive the folder name:** `YYYYMMDD-HHMM-<kebab>` using the current local timestamp + a short kebab-case description (2–5 words) derived from the input. Example: `20260509-1932-competitor-monitoring-toggle`. The timestamped form is the single name used for the workflow folder, the worktree directory, and the branch suffix — folders sort chronologically when listed.
62
+ 2. **Derive the branch name:** `<branch-prefix><folder-name>`. Example: `feature/20260509-1932-competitor-monitoring-toggle`.
63
+ 3. **Determine the worktree path:** `../../wt/<folder-name>` — inside the `wt/` subdirectory at the project root. Example: if you're running from `~/projects/rival.sale/main`, the worktree goes to `~/projects/rival.sale/wt/20260509-1932-competitor-monitoring-toggle`.
64
64
  4. **Create the worktree:** `mkdir -p ../../wt && git worktree add <worktree-path> -b <branch-name> <base-branch>`
65
65
  5. **Copy local environment files:** Copy `.env` (and `.env.local` if it exists) from the current worktree into the new worktree. These are gitignored and won't exist in the fresh checkout.
66
66
  6. **Switch context:** all subsequent steps run inside the worktree directory
@@ -445,9 +445,12 @@ Write `05-indie-summary.md` in the workflow folder:
445
445
 
446
446
  After writing the summary:
447
447
 
448
- 1. Stage `05-indie-summary.md`: `git add <workflow-dir>/<folder-name>/05-indie-summary.md`
449
- 2. Commit: `docs: add indie agent run summary for <feature-name>`
450
- 3. Push to the same branch
448
+ 1. Append a final `[orchestrator] <ISO-8601 UTC> — run done` line to `<workflow-dir>/<folder-name>/_progress.log`.
449
+ 2. Stage both the summary and the progress log: `git add <workflow-dir>/<folder-name>/05-indie-summary.md <workflow-dir>/<folder-name>/_progress.log`
450
+ 3. Commit: `docs: add indie agent run summary for <feature-name>`
451
+ 4. Push to the same branch
452
+
453
+ Why both files: ship's own log lines (commit, push, PR creation) are written *after* ship's commit and never make it into the PR otherwise. This step is the catch-all that ensures the full run is recorded in git.
451
454
 
452
455
  Present the final report to the user: PR URL, check status, iteration counts, and worktree path. Remind: "After merge, clean up with: `git worktree remove <path> && rm -rf <path>`"
453
456
 
@@ -462,7 +465,7 @@ Present the final report to the user: PR URL, check status, iteration counts, an
462
465
  - Dispatch implementation, QA, and fix-loop phases with `run_in_background: true` so the orchestrator stays responsive
463
466
  - Verify the output artifact after every agent returns before proceeding
464
467
  - Create a dedicated worktree for each new feature
465
- - Use short, scannable folder names in `wt/` (timestamp goes in the branch name, not the directory)
468
+ - Timestamp the workflow folder, worktree directory, and branch with the same `YYYYMMDD-HHMM-<kebab>` form so workflows sort chronologically
466
469
  - Check artifact state before each phase — never re-run completed phases
467
470
  - On "status" queries from the user while a subagent is running, read `_progress.log` — never peek into the subagent's thinking (you can't)
468
471
  - Reinforce the progress-log mandate in every phase's task instructions — the log is the only signal the orchestrator has