pi-crew 0.8.13 → 0.9.0
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 +296 -0
- package/README.md +118 -2
- package/docs/FEATURE_INTAKE.md +1 -1
- package/docs/HARNESS.md +20 -19
- package/docs/PROJECT_REVIEW.md +132 -133
- package/docs/PROJECT_REVIEW_FIXES.md +130 -131
- package/docs/actions-reference.md +127 -121
- package/docs/architecture.md +1 -1
- package/docs/code-review-2026-05-11.md +134 -134
- package/docs/commands-reference.md +108 -106
- package/docs/comparison-pi-subagents-vs-pi-crew.md +105 -105
- package/docs/deep-review-report.md +1 -1
- package/docs/dynamic-workflows.md +90 -0
- package/docs/fixes/BATCH_A_H1_H2.md +17 -17
- package/docs/fixes/bug-007-async-notifier-stale-ctx.md +23 -23
- package/docs/followup-plan-2026-05-12.md +135 -135
- package/docs/followup-review-2026-05-12.md +86 -86
- package/docs/followup-review-round3-2026-05-12.md +123 -123
- package/docs/goals.md +59 -0
- package/docs/implementation-plan-top3.md +4 -4
- package/docs/issue-29-analysis.md +2 -2
- package/docs/oh-my-pi-research.md +154 -154
- package/docs/optimization-plan.md +2 -0
- package/docs/perf/baseline-2026-05.md +9 -9
- package/docs/perf/final-report-2026-05.md +2 -2
- package/docs/perf/sprint-1-report.md +2 -2
- package/docs/perf/sprint-2-report.md +1 -1
- package/docs/perf/upgrade-plan-2026-05.md +72 -72
- package/docs/pi-crew-bugs.md +230 -230
- package/docs/pi-crew-investigation-report.md +102 -102
- package/docs/pi-crew-test-round5.md +4 -4
- package/docs/runtime-analysis-child-vs-live.md +57 -57
- package/docs/runtime-migration-in-process-analysis.md +97 -97
- package/install.mjs +3 -2
- package/package.json +2 -4
- package/skills/orchestration/SKILL.md +11 -11
- package/src/agents/agent-config.ts +4 -0
- package/src/config/config.ts +39 -0
- package/src/config/types.ts +11 -0
- package/src/extension/action-suggestions.ts +2 -1
- package/src/extension/async-notifier.ts +10 -0
- package/src/extension/help.ts +14 -0
- package/src/extension/project-init.ts +7 -20
- package/src/extension/registration/commands.ts +27 -0
- package/src/extension/team-tool/destructive-gate.ts +1 -1
- package/src/extension/team-tool/goal-wrap.ts +288 -0
- package/src/extension/team-tool/goal.ts +405 -0
- package/src/extension/team-tool/run.ts +103 -4
- package/src/extension/team-tool/workflow-manage.ts +194 -0
- package/src/extension/team-tool.ts +20 -0
- package/src/hooks/types.ts +3 -1
- package/src/runtime/async-runner.ts +24 -2
- package/src/runtime/background-runner.ts +68 -19
- package/src/runtime/child-pi.ts +6 -1
- package/src/runtime/completion-guard.ts +1 -1
- package/src/runtime/dynamic-workflow-context.ts +450 -0
- package/src/runtime/dynamic-workflow-runner.ts +180 -0
- package/src/runtime/global-worker-cap.ts +96 -0
- package/src/runtime/goal-evaluator.ts +294 -0
- package/src/runtime/goal-loop-runner.ts +612 -0
- package/src/runtime/goal-state-store.ts +209 -0
- package/src/runtime/pi-args.ts +10 -2
- package/src/runtime/result-extractor.ts +32 -0
- package/src/runtime/team-runner.ts +11 -1
- package/src/runtime/verification-gates.ts +85 -5
- package/src/runtime/verification-integrity.ts +110 -0
- package/src/runtime/verification-worktree.ts +136 -0
- package/src/runtime/workspace-lock.ts +448 -0
- package/src/schema/config-schema.ts +26 -0
- package/src/schema/team-tool-schema.ts +39 -4
- package/src/state/atomic-write.ts +9 -0
- package/src/state/contracts.ts +14 -0
- package/src/state/crew-init.ts +18 -5
- package/src/state/event-log.ts +7 -1
- package/src/state/state-store.ts +2 -0
- package/src/state/types.ts +82 -0
- package/src/state/worker-atomic-writer.ts +176 -0
- package/src/utils/redaction.ts +104 -24
- package/src/workflows/discover-workflows.ts +25 -1
- package/src/workflows/workflow-config.ts +13 -0
- package/teams/parallel-research.team.md +1 -1
- package/workflows/examples/hello.dwf.ts +24 -0
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
# Follow-up Review — pi-crew (2026-05-12, round 2)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Author: Droid (Factory) | Related: `docs/followup-plan-2026-05-12.md`, commit `926e6ee`.
|
|
4
4
|
|
|
5
|
-
Review
|
|
5
|
+
Review after commit `926e6ee` applied the B1–B9 + A1–A2 fixes from `followup-plan-2026-05-12.md`.
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Result summary
|
|
8
8
|
|
|
9
9
|
- `npm run typecheck` → Passed
|
|
10
|
-
- `npm run test:unit` → **1411 tests / 1408 pass / 0 fail / 3 skip** (
|
|
11
|
-
- `npm run check:lazy-imports` → **
|
|
10
|
+
- `npm run test:unit` → **1411 tests / 1408 pass / 0 fail / 3 skip** (previously: 1389/1400 with 8 bash-on-Windows failures)
|
|
11
|
+
- `npm run check:lazy-imports` → **FAILS on Windows** (details below)
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## Per-item status
|
|
14
14
|
|
|
15
|
-
| # | Item |
|
|
15
|
+
| # | Item | Status | Notes |
|
|
16
16
|
|---|---|---|---|
|
|
17
|
-
| B1 | bash portability | ✅ Done | `resolveShellForScript` + `resolveBashCmd`
|
|
18
|
-
| B2 | `worktree-manager.test.ts` | ⚠️ Partial |
|
|
17
|
+
| B1 | bash portability | ✅ Done | `resolveShellForScript` + `resolveBashCmd` in `src/utils/resolve-shell.ts`. Applied to `post-checks.ts` + `iteration-hooks.ts`. The 8 previously failing tests pass. |
|
|
18
|
+
| B2 | `worktree-manager.test.ts` | ⚠️ Partial | Has 3 tests (branch recovery, reuse, clean leader). Missing the `linkNodeModulesIfPresent` reject-file test. |
|
|
19
19
|
| B3 | `artifact-store.test.ts` | ✅ Done | Hash integrity + path traversal + nested dirs. |
|
|
20
|
-
| B4 | lock parity test | ✅ Done | 2
|
|
21
|
-
| B5 | setup-hook env filter | ⚠️ Partial | `sanitizeEnvSecrets`
|
|
20
|
+
| B4 | lock parity test | ✅ Done | 2 new tests: stale recovery sync+async, active lock throws. |
|
|
21
|
+
| B5 | setup-hook env filter | ⚠️ Partial | `sanitizeEnvSecrets` applied. Uses a deny-list `SECRET_KEY_PATTERN` instead of the allow-list proposed in the plan. |
|
|
22
22
|
| B6 | worktree checked-out hint | ✅ Done | try/catch + actionable error message. |
|
|
23
|
-
| B7 | LAZY marker | ✅ Done | Marker
|
|
24
|
-
| B8 | redaction roundtrip | ✅ Done | 3
|
|
25
|
-
| B9 | CI grep-check | ❌ Broken on Windows | Script
|
|
26
|
-
| A1 | branchExists remote-tracking | ✅ Done |
|
|
23
|
+
| B7 | LAZY marker | ✅ Done | Marker at `team-tool.ts:58`. |
|
|
24
|
+
| B8 | redaction roundtrip | ✅ Done | 3 tests (api_key, bearer, on-disk). |
|
|
25
|
+
| B9 | CI grep-check | ❌ Broken on Windows | Script uses `sed`, fails on Windows. |
|
|
26
|
+
| A1 | branchExists remote-tracking | ✅ Done | Returns `{ local, remoteOnly }`. |
|
|
27
27
|
| A2 | jiti fallback robust | ✅ Done | 3 candidates: `lib/jiti-register.mjs`, `register.mjs`, `dist/register.mjs`. |
|
|
28
|
-
| A3 | test alias cleanup | ⏭️ Skipped | Plan
|
|
28
|
+
| A3 | test alias cleanup | ⏭️ Skipped | Plan noted "not urgent". |
|
|
29
29
|
|
|
30
30
|
---
|
|
31
31
|
|
|
32
|
-
##
|
|
32
|
+
## Issues to address next
|
|
33
33
|
|
|
34
|
-
### C1 — (Medium, ~10
|
|
34
|
+
### C1 — (Medium, ~10 minutes) `scripts/check-lazy-imports.mjs` doesn't run on Windows
|
|
35
35
|
|
|
36
36
|
**File:** `scripts/check-lazy-imports.mjs`
|
|
37
37
|
|
|
38
|
-
**
|
|
39
|
-
-
|
|
40
|
-
-
|
|
41
|
-
- `npm run ci`
|
|
38
|
+
**Problem:**
|
|
39
|
+
- The script uses `execSync("sed -n '...' ...")` to read the preceding line → `sed` isn't available on Windows by default.
|
|
40
|
+
- When sed fails, every line falls into the `catch` block → `bad.push(line)` → 13 false positives.
|
|
41
|
+
- `npm run ci` will always fail on a Windows dev machine.
|
|
42
42
|
|
|
43
|
-
**
|
|
43
|
+
**Proposed fix:** use plain Node instead of sed.
|
|
44
44
|
|
|
45
45
|
```js
|
|
46
46
|
import { execSync } from "node:child_process";
|
|
@@ -68,15 +68,15 @@ if (bad.length) {
|
|
|
68
68
|
console.log("All dynamic imports have `// LAZY:` marker.");
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
-
**Test:**
|
|
71
|
+
**Test:** run `npm run check:lazy-imports` on both Linux and Windows → both should print "All dynamic imports have `// LAZY:` marker."
|
|
72
72
|
|
|
73
73
|
---
|
|
74
74
|
|
|
75
|
-
### C2 — (Medium, ~20
|
|
75
|
+
### C2 — (Medium, ~20 minutes) `sanitizeEnvSecrets` uses a deny-list, not meeting the defense-in-depth goal of plan B5
|
|
76
76
|
|
|
77
77
|
**File:** `src/utils/env-filter.ts`
|
|
78
78
|
|
|
79
|
-
**
|
|
79
|
+
**Current state:**
|
|
80
80
|
```ts
|
|
81
81
|
export function sanitizeEnvSecrets(env: NodeJS.ProcessEnv): Record<string, string> {
|
|
82
82
|
const filtered: Record<string, string> = {};
|
|
@@ -87,15 +87,15 @@ export function sanitizeEnvSecrets(env: NodeJS.ProcessEnv): Record<string, strin
|
|
|
87
87
|
}
|
|
88
88
|
```
|
|
89
89
|
|
|
90
|
-
**
|
|
91
|
-
-
|
|
92
|
-
-
|
|
90
|
+
**Problem:**
|
|
91
|
+
- The deny-list only blocks keys matching `SECRET_KEY_PATTERN`. Variables whose names don't match (e.g. `DB_PASS`, `MY_KEY_FOO`, `INTERNAL_TOKEN_LEGACY`) will leak into the setup hook.
|
|
92
|
+
- The original plan B5 proposed an allow-list `["PATH", "HOME", "USERPROFILE", "TEMP", "TMP", "LANG", "PI_*"]` → much safer for user-provided hooks.
|
|
93
93
|
|
|
94
|
-
**
|
|
94
|
+
**Proposed fix:** add an overload with an allow-list, keeping the deny-list as the default for `buildChildPiSpawnOptions` (backward-compat).
|
|
95
95
|
|
|
96
96
|
```ts
|
|
97
97
|
export interface SanitizeOptions {
|
|
98
|
-
allowList?: string[]; // glob-like,
|
|
98
|
+
allowList?: string[]; // glob-like, supports trailing * (e.g. "PI_*")
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
export function sanitizeEnvSecrets(env: NodeJS.ProcessEnv, options?: SanitizeOptions): Record<string, string> {
|
|
@@ -117,7 +117,7 @@ export function sanitizeEnvSecrets(env: NodeJS.ProcessEnv, options?: SanitizeOpt
|
|
|
117
117
|
}
|
|
118
118
|
```
|
|
119
119
|
|
|
120
|
-
**Apply
|
|
120
|
+
**Apply at `worktree-manager.ts:runSetupHook`:**
|
|
121
121
|
|
|
122
122
|
```ts
|
|
123
123
|
env: sanitizeEnvSecrets(process.env, {
|
|
@@ -125,50 +125,50 @@ env: sanitizeEnvSecrets(process.env, {
|
|
|
125
125
|
}),
|
|
126
126
|
```
|
|
127
127
|
|
|
128
|
-
**
|
|
129
|
-
- Allow-list pass-through
|
|
130
|
-
- Glob `PI_*`
|
|
131
|
-
- Default deny-list
|
|
128
|
+
**Tests to add:** `test/unit/env-filter.test.ts`:
|
|
129
|
+
- Allow-list pass-through for matching keys + reject the rest.
|
|
130
|
+
- Glob `PI_*` matches `PI_HOME`, `PI_CREW_X` but not `PIPELINE`.
|
|
131
|
+
- Default deny-list keeps old behavior.
|
|
132
132
|
|
|
133
133
|
---
|
|
134
134
|
|
|
135
|
-
### C3 — (Low, ~10
|
|
135
|
+
### C3 — (Low, ~10 minutes) `resolveShellForScript` doesn't handle `.cmd/.bat` correctly on Windows
|
|
136
136
|
|
|
137
137
|
**File:** `src/utils/resolve-shell.ts`
|
|
138
138
|
|
|
139
|
-
**
|
|
139
|
+
**Current state:**
|
|
140
140
|
```ts
|
|
141
141
|
if (scriptPath.endsWith(".cmd") || scriptPath.endsWith(".bat")) {
|
|
142
142
|
return { command: scriptPath, args: [] };
|
|
143
143
|
}
|
|
144
144
|
```
|
|
145
145
|
|
|
146
|
-
**
|
|
147
|
-
- Node ≥ 20
|
|
148
|
-
-
|
|
146
|
+
**Problem:**
|
|
147
|
+
- Node ≥ 20 blocks spawning `.bat/.cmd` directly without `shell: true` (CVE-2024-27980). The `execFileSync/spawn` code path will throw `EINVAL` or `ENOENT`.
|
|
148
|
+
- Consequence: post-check / iteration-hook written as `.cmd/.bat` will fail silently on Node 20+.
|
|
149
149
|
|
|
150
|
-
**
|
|
150
|
+
**Proposed fix:**
|
|
151
151
|
```ts
|
|
152
152
|
if (scriptPath.endsWith(".cmd") || scriptPath.endsWith(".bat")) {
|
|
153
153
|
return { command: process.env.ComSpec ?? "cmd.exe", args: ["/d", "/s", "/c", scriptPath] };
|
|
154
154
|
}
|
|
155
155
|
```
|
|
156
156
|
|
|
157
|
-
**
|
|
157
|
+
**Tests to add:** in `test/unit/resolve-shell.test.ts` (create new):
|
|
158
158
|
- Linux: `.sh` → `{ bash, [path] }`.
|
|
159
159
|
- Windows + `.ps1` → `{ powershell, ["-File", path] }`.
|
|
160
160
|
- Windows + `.cmd` → `{ cmd.exe, ["/d", "/s", "/c", path] }`.
|
|
161
161
|
|
|
162
162
|
---
|
|
163
163
|
|
|
164
|
-
### C4 — (Low, ~15
|
|
164
|
+
### C4 — (Low, ~15 minutes) Missing test for `linkNodeModulesIfPresent` rejecting a file source (BUG-006 regression guard)
|
|
165
165
|
|
|
166
166
|
**File:** `test/unit/worktree-manager.test.ts`
|
|
167
167
|
|
|
168
|
-
**
|
|
169
|
-
- Plan B2
|
|
168
|
+
**Problem:**
|
|
169
|
+
- Plan B2 required this test but the commit didn't add it. If someone modifies `linkNodeModulesIfPresent` and removes the `isDirectory()` check, BUG-006 will regress without a test catching it.
|
|
170
170
|
|
|
171
|
-
**
|
|
171
|
+
**Proposed fix:** add one test (assuming `linkNodeModulesIfPresent` is exported or tested indirectly via `prepareTaskWorkspace` with `worktree.linkNodeModules=true`):
|
|
172
172
|
|
|
173
173
|
```ts
|
|
174
174
|
test("prepareTaskWorkspace skips linkNodeModules when source is a file", () => {
|
|
@@ -192,21 +192,21 @@ test("prepareTaskWorkspace skips linkNodeModules when source is a file", () => {
|
|
|
192
192
|
|
|
193
193
|
---
|
|
194
194
|
|
|
195
|
-
### C5 — (Low, ~5
|
|
195
|
+
### C5 — (Low, ~5 minutes) `prepareTaskWorkspace` error message affected by locale
|
|
196
196
|
|
|
197
|
-
**File:** `src/worktree/worktree-manager.ts:127-140` (try/catch
|
|
197
|
+
**File:** `src/worktree/worktree-manager.ts:127-140` (try/catch around `worktree add`)
|
|
198
198
|
|
|
199
|
-
**
|
|
200
|
-
-
|
|
199
|
+
**Problem:**
|
|
200
|
+
- The regex `/already checked out/` only matches when git runs with an English locale. On a user machine with `LANG=vi_VN` or Git for Windows with a different locale, the original message differs → falls back to throwing the raw error.
|
|
201
201
|
|
|
202
|
-
**
|
|
202
|
+
**Proposed fix:** force an English locale for the internal git command, or broaden the regex.
|
|
203
203
|
|
|
204
|
-
Option A (
|
|
204
|
+
Option A (simpler): broaden the regex
|
|
205
205
|
```ts
|
|
206
|
-
if (/already checked out|is already used by worktree
|
|
206
|
+
if (/already checked out|is already used by worktree/i.test(msg)) { ... }
|
|
207
207
|
```
|
|
208
208
|
|
|
209
|
-
Option B (
|
|
209
|
+
Option B (recommended): force `LANG=C` in the `git()` helper:
|
|
210
210
|
```ts
|
|
211
211
|
function git(cwd: string, args: string[]): string {
|
|
212
212
|
return execFileSync("git", args, {
|
|
@@ -216,29 +216,29 @@ function git(cwd: string, args: string[]): string {
|
|
|
216
216
|
}
|
|
217
217
|
```
|
|
218
218
|
|
|
219
|
-
Option B
|
|
219
|
+
Option B standardizes all git output → also improves debugging.
|
|
220
220
|
|
|
221
221
|
---
|
|
222
222
|
|
|
223
|
-
### C6 — (Info, ~5
|
|
223
|
+
### C6 — (Info, ~5 minutes) `branchExists` remote-only creates local from HEAD, may "lose" the remote's commits
|
|
224
224
|
|
|
225
225
|
**File:** `src/worktree/worktree-manager.ts:prepareTaskWorkspace`
|
|
226
226
|
|
|
227
|
-
**
|
|
227
|
+
**Current state:**
|
|
228
228
|
```ts
|
|
229
229
|
if (exists.local) {
|
|
230
230
|
git(repoRoot, ["worktree", "add", worktreePath, branch]);
|
|
231
231
|
} else {
|
|
232
|
-
git(repoRoot, ["worktree", "add", "-b", branch, worktreePath, "HEAD"]); // ←
|
|
232
|
+
git(repoRoot, ["worktree", "add", "-b", branch, worktreePath, "HEAD"]); // ← both remoteOnly and "doesn't exist" fall here
|
|
233
233
|
}
|
|
234
234
|
```
|
|
235
235
|
|
|
236
|
-
**
|
|
237
|
-
-
|
|
238
|
-
-
|
|
239
|
-
-
|
|
236
|
+
**Problem:**
|
|
237
|
+
- When `remoteOnly === true`, plan A1 proposed creating local from HEAD to avoid divergent tracking. The current code does exactly that, but:
|
|
238
|
+
- The user pushed the branch from another machine → expects the worktree to contain that code.
|
|
239
|
+
- There's no log/warning → silent drop.
|
|
240
240
|
|
|
241
|
-
**
|
|
241
|
+
**Proposed fix:** emit an info event/log when hitting the remoteOnly branch:
|
|
242
242
|
```ts
|
|
243
243
|
} else {
|
|
244
244
|
if (exists.remoteOnly) {
|
|
@@ -248,42 +248,42 @@ if (exists.local) {
|
|
|
248
248
|
}
|
|
249
249
|
```
|
|
250
250
|
|
|
251
|
-
(
|
|
251
|
+
(Or push it out via a run event if there's a convenient event bus.)
|
|
252
252
|
|
|
253
253
|
---
|
|
254
254
|
|
|
255
|
-
##
|
|
255
|
+
## Implementation priority
|
|
256
256
|
|
|
257
|
-
| # | Item | Severity | Effort |
|
|
257
|
+
| # | Item | Severity | Effort | Recommendation |
|
|
258
258
|
|---|---|---|---|---|
|
|
259
|
-
| 1 | C1 (lazy-imports cross-platform) | Medium | 10
|
|
260
|
-
| 2 | C2 (allow-list env filter) | Medium | 20
|
|
261
|
-
| 3 | C3 (.cmd/.bat
|
|
262
|
-
| 4 | C4 (test linkNodeModules file source) | Low | 15
|
|
263
|
-
| 5 | C5 (git locale-safe error parsing) | Low | 5
|
|
264
|
-
| 6 | C6 (warn
|
|
259
|
+
| 1 | C1 (lazy-imports cross-platform) | Medium | 10 minutes | Current sprint — block CI failure on Windows |
|
|
260
|
+
| 2 | C2 (allow-list env filter) | Medium | 20 minutes | Current sprint — defense-in-depth |
|
|
261
|
+
| 3 | C3 (.cmd/.bat on Node 20+) | Low | 10 minutes | Current sprint — ensure B1 is truly portable |
|
|
262
|
+
| 4 | C4 (test linkNodeModules file source) | Low | 15 minutes | Current sprint — close B2's regression gap |
|
|
263
|
+
| 5 | C5 (git locale-safe error parsing) | Low | 5 minutes | Next sprint |
|
|
264
|
+
| 6 | C6 (warn on remote-only branch) | Info | 5 minutes | Next sprint |
|
|
265
265
|
|
|
266
|
-
**
|
|
266
|
+
**Total effort:** ~65 minutes for the hardening batch.
|
|
267
267
|
|
|
268
268
|
---
|
|
269
269
|
|
|
270
|
-
##
|
|
270
|
+
## Proposed commit batches
|
|
271
271
|
|
|
272
|
-
- **Batch 1 (must-fix CI):** C1 + C3 → 1 PR "scripts/cmd portability fix" (~20
|
|
273
|
-
- **Batch 2 (security/test):** C2 + C4 → 1 PR "env allow-list + worktree regression test" (~35
|
|
274
|
-
- **Batch 3 (polish):** C5 + C6 → 1 PR "git locale + remote-only branch hint" (~10
|
|
272
|
+
- **Batch 1 (must-fix CI):** C1 + C3 → 1 PR "scripts/cmd portability fix" (~20 minutes).
|
|
273
|
+
- **Batch 2 (security/test):** C2 + C4 → 1 PR "env allow-list + worktree regression test" (~35 minutes).
|
|
274
|
+
- **Batch 3 (polish):** C5 + C6 → 1 PR "git locale + remote-only branch hint" (~10 minutes).
|
|
275
275
|
|
|
276
276
|
---
|
|
277
277
|
|
|
278
|
-
##
|
|
278
|
+
## Positive notes after round 3 review
|
|
279
279
|
|
|
280
|
-
- 8 bash-on-Windows
|
|
281
|
-
- DRY refactor `sanitizeEnvSecrets` (
|
|
282
|
-
- `worktree-manager` resume logic + actionable error
|
|
283
|
-
-
|
|
284
|
-
-
|
|
285
|
-
- `resolveJitiRegisterPath`
|
|
286
|
-
- `branchExists` upgrade `{local, remoteOnly}`
|
|
280
|
+
- The 8 previously failing bash-on-Windows tests now pass 100%.
|
|
281
|
+
- The DRY refactor of `sanitizeEnvSecrets` (extracted from `child-pi.ts`) is good.
|
|
282
|
+
- The `worktree-manager` resume logic + actionable error is very helpful for UX.
|
|
283
|
+
- The lock parity test covers both sync/async paths (exactly the BUG-004 goal).
|
|
284
|
+
- The artifact hash test correctly verifies the invariant `sha256(file) == contentHash`.
|
|
285
|
+
- `resolveJitiRegisterPath` now tolerates various jiti packaging layouts.
|
|
286
|
+
- The `branchExists` upgrade to `{local, remoteOnly}` is accurate per plan A1.
|
|
287
287
|
|
|
288
288
|
---
|
|
289
289
|
|