@mjasnikovs/pi-task 0.38.10 → 0.38.11

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.
@@ -112,6 +112,23 @@ interface PhaseDeps {
112
112
  /** Injectable delay for connection-error backoff; defaults to a real timer.
113
113
  * Tests override it with a no-op so retries don't actually sleep. */
114
114
  sleepFor?: (ms: number) => Promise<void>;
115
+ /**
116
+ * Run ONE named Child pi and return its assistant text — the seam every phase
117
+ * child goes through. Absent (production) → the real wrappers run, with the
118
+ * loop detector, the wall-clock budget and the Error-triage ladder. Present →
119
+ * the substitute answers directly and NONE of those guards run.
120
+ *
121
+ * The child's NAME is the first parameter because the name is what a caller
122
+ * branches on and what a test wants to assert. It used to be discarded before
123
+ * reaching the only injectable boundary (`spawn`), so a phase test had to
124
+ * reconstruct it by matching prompt PROSE against prompts.ts — which made
125
+ * prompt copy load-bearing test infrastructure in a codebase whose practice is
126
+ * rewording prompts and A/B-ing them.
127
+ *
128
+ * `spawn` stays: the ladder's OWN tests must drive a real process to exercise
129
+ * the rungs. This seam is for callers to whom the child is a premise.
130
+ */
131
+ runChild?: (name: string, tools: string, prompt: string) => Promise<string>;
115
132
  }
116
133
  export type { PhaseDeps };
117
134
  /**
@@ -288,6 +288,8 @@ async function triageChildResult(deps, name, r, attempt, budget, verb) {
288
288
  * status describes our SIGTERM and says nothing about its verdict.
289
289
  */
290
290
  export async function runPhaseChild(deps, name, tools, prompt) {
291
+ if (deps.runChild)
292
+ return await deps.runChild(name, tools, prompt);
291
293
  let hint = null;
292
294
  const loopHistory = [];
293
295
  const budgetMs = deps.timeoutMs ?? PHASE_CHILD_TIMEOUT_MS;
@@ -366,6 +368,10 @@ async function appendLoopEvent(cwd, taskId, phase, hit, strike, outcome) {
366
368
  await setTaskSection(cwd, taskId, 'loop events', next);
367
369
  }
368
370
  export async function runPhaseWithLoopGuard(deps, name, tools, buildPrompt, opts = {}) {
371
+ // The substitute stands in for the whole guarded run, so it is handed the
372
+ // prompt the first strike would have used (no loop hint in flight yet).
373
+ if (deps.runChild)
374
+ return await deps.runChild(name, tools, buildPrompt(null));
369
375
  const loopHistory = [];
370
376
  // Carries the correction hint (loop OR leaked-tool-call) into the next strike.
371
377
  let nextHint = null;
@@ -1,9 +1,9 @@
1
1
  import { type HealthCommand } from './repo-health-check.js';
2
2
  import { type AcceptDebt, type VerifyRerunResult } from './accept-debt.js';
3
- import { type RenderOutcome } from './render-check.js';
4
- import { type DeepRenderOutcome } from './deep-render-check.js';
3
+ import { discoverBootCommand, detectsServedApp, runBootCheck, bootSkipVerdict, nonLaunchScriptReason, rejectedLaunchScript, parseSsListeners, parseNetstatListeners, parseLsofListeners, pickFreePort, preferredDeclaredPort, canEnumerateListeners, type BootDeps } from './boot-probe.js';
5
4
  import { type CommandRunner } from './command-run.js';
6
5
  import { taskThatIntroduced } from './task-provenance.js';
6
+ import { type EnvClosure } from './env-template-closure.js';
7
7
  export interface FinalGateOutcome {
8
8
  /** true → statics and every runnable integration command passed (or nothing to run). */
9
9
  ok: boolean;
@@ -106,236 +106,6 @@ export declare function discoverIntegrationCommands(cwd: string): {
106
106
  };
107
107
  /** Every lockfile consistency check that applies to this tree (possibly none). */
108
108
  export declare function discoverLockfileChecks(cwd: string): HealthCommand[];
109
- /**
110
- * Why this script is NOT a launch of the shipped app, or null when it plausibly
111
- * is one (mx5 run 18, validated).
112
- *
113
- * Run 18's boot command resolved to `bun run dev`, whose body is
114
- * `docker compose -f docker-compose.dev.yml up -d && until docker compose … pg_isready
115
- * … && concurrently "bun run dev:css" "bun run dev:js" "bun run --watch
116
- * src/server/index.ts"`. The gate sandbox has no docker, so the chain died at 127 and
117
- * the boot SKIPPED as an environment gap — while the shipped app had no HTTP listener
118
- * at all. A script whose first act is `docker compose up` cannot distinguish "the app
119
- * is broken" from "this box has no docker", so it is not evidence either way: better
120
- * to discover NO boot command — reported as "nothing to boot" — and let the static
121
- * serve-entry check (serve-entry.ts) carry the signal, than to spend the grace window
122
- * producing an unfalsifiable skip.
123
- *
124
- * CONSERVATIVE AND LEXICAL BY CONSTRUCTION. Only two shapes are rejected, both
125
- * decidable from the script text alone:
126
- * 1. the chain OPENS with container orchestration (docker/podman/nerdctl … up|start|run);
127
- * 2. the whole body is a multiplexer (concurrently/npm-run-all/run-p/run-s/turbo)
128
- * whose every child is an ASSET watcher in watch mode (tailwind/tsc/esbuild/…),
129
- * i.e. nothing in it can ever listen.
130
- * Anything else — `vite`, `next dev`, `node dist/index.js`, `nodemon`, `bun --watch
131
- * src/index.ts`, and any multiplexer with one non-asset child — is accepted
132
- * unchanged. Deciding whether a watcher actually SERVES is not attempted here; that
133
- * is exactly what the static serve-entry check is for.
134
- */
135
- export declare function nonLaunchScriptReason(body: string, scripts?: Record<string, string>): string | null;
136
- /**
137
- * The project's OWN launch command, if it declares one (package.json `start`,
138
- * else `dev`; Makefile `run`). null means the project has nothing to boot —
139
- * the boot check degrades to nothing-to-run.
140
- *
141
- * A script that is not a LAUNCH at all (nonLaunchScriptReason — mx5 run 18's
142
- * `docker compose up` orchestrator) is rejected here and falls through to the
143
- * next candidate, then to null. Discovering nothing is strictly better than
144
- * discovering something unfalsifiable: an env-gap skip of an orchestration script
145
- * says nothing about the app, and null is reported as "nothing to boot".
146
- */
147
- export declare function discoverBootCommand(cwd: string): HealthCommand | null;
148
- /**
149
- * The launch script that EXISTS but was rejected as not-a-launch, if any. Without
150
- * this the rejection would trade run 18's unfalsifiable skip for pure silence: no
151
- * boot command means bootSkipVerdict has no label to name, and a project whose test
152
- * suite ran still reports `observed > 0`, so unobservedVerdict stays quiet too. A
153
- * served app whose only declared launch script cannot start it was not observed to
154
- * run, and must say so.
155
- */
156
- export declare function rejectedLaunchScript(cwd: string): {
157
- name: string;
158
- reason: string;
159
- } | null;
160
- type BootOutcome = {
161
- outcome: 'skip' | 'pass';
162
- /** Set when the render check could not OBSERVE the served page (no browser,
163
- * undeterminable port) or its AUTHENTICATED half (no declared credentials,
164
- * an undrivable sign-in form, credentials the server rejected) — surfaced
165
- * by the gate as an UNOBSERVED warning. */
166
- renderNote?: string;
167
- /** skip only: the boot command never spawned (ENOENT) — feeds the
168
- * full-blindness guard (mx5 run 16), unlike a 127 where the runner ran. */
169
- spawnFailed?: boolean;
170
- } | {
171
- outcome: 'fail';
172
- detail: string;
173
- } | {
174
- outcome: 'orphan-port';
175
- detail: string;
176
- port: number | null;
177
- };
178
- /** Injectable environment probes for the boot check's orphan-port recovery, so the
179
- * reap-and-retry path is deterministically testable without a real listener. */
180
- export interface BootDeps {
181
- /** The pid + command line holding `port` in LISTEN, or null if none/unknown. */
182
- findPortHolder?: (port: number) => {
183
- pid: number;
184
- command: string;
185
- } | null;
186
- /** Terminate a pid we attribute to ourselves; returns whether it was signalled. */
187
- reap?: (pid: number) => boolean;
188
- /**
189
- * Does process group `pgid` currently own a LISTENing TCP socket? Drives the
190
- * served-app boot check (mx5 run 10): a watcher (`dev` = tailwind/bundler
191
- * --watch) stays alive forever without ever listening, so "still alive after the
192
- * grace window = PASS" blessed a project that cannot serve a single request.
193
- * Injected so the listener requirement is deterministically testable without a
194
- * real socket; the default probes ss/lsof + pgid.
195
- */
196
- groupHasListener?: (pgid: number) => boolean;
197
- /**
198
- * The (lowest) TCP port a listener owned by process group `pgid` is bound to,
199
- * or null when it cannot be determined. Feeds the render check's URL; injected
200
- * for tests, default probes ss/lsof + pgid.
201
- */
202
- groupListeningPort?: (pgid: number) => number | null;
203
- /**
204
- * Load the served page once in a headless browser and judge the RENDERED DOM
205
- * (mx5 runs 8/11: curl cannot execute JS, so a blank-mount app passed every
206
- * gate). Runs only for a served app, against the live listener, before the
207
- * boot child is killed. Absent → the boot check behaves exactly as before;
208
- * the gate wires runRenderCheck by default for served apps.
209
- */
210
- renderProbe?: (url: string) => RenderOutcome;
211
- /**
212
- * SIGN IN on the served page and judge the AUTHENTICATED half of the app (mx5
213
- * run 17). Runs only after `renderProbe` PASSED — the shallow blank-page rule
214
- * keeps its own RED/GREEN-proven verdict and is never shadowed by this one.
215
- * Absent → the boot check behaves exactly as before; the gate wires
216
- * runDeepRenderCheck by default for served apps. May only FAIL when the SERVER
217
- * itself authenticated the session (see deep-render-check.judgeDeepSession);
218
- * anything else — no browser, no declared credentials, an undrivable form,
219
- * rejected credentials — is an env gap and skips with an UNOBSERVED note.
220
- */
221
- deepRenderProbe?: (url: string) => DeepRenderOutcome | Promise<DeepRenderOutcome>;
222
- /**
223
- * Can this box enumerate listeners with pids AT ALL (ss/netstat/lsof)? False
224
- * means the served-app requirement is UNOBSERVABLE here and must degrade to the
225
- * survival rule rather than fail — see canEnumerateListeners.
226
- */
227
- enumerationCapable?: () => boolean;
228
- /**
229
- * Reserve a free port to hand the boot child as PORT, so an HTTP answer on it is
230
- * ownership evidence. null → no port could be reserved (the check then relies on
231
- * pgid attribution alone). Injected for tests.
232
- */
233
- pickPort?: () => Promise<number | null>;
234
- /**
235
- * The port the project's own client was BUILT to call, when it declares one and
236
- * nothing is holding it — preferred over a freshly reserved port so the served
237
- * origin and the origin the client calls are the same one (see pinnedLocalPort).
238
- * null → use the reserved private port exactly as before.
239
- */
240
- preferredPort?: () => Promise<number | null>;
241
- /** Does anything answer HTTP on 127.0.0.1:`port`? Injected for tests. */
242
- httpProbe?: (port: number) => boolean;
243
- }
244
- /**
245
- * Does the finished run stand up a listening HTTP server? Deterministic, from the
246
- * built manifest (a server-framework dependency is the plan's own artifact) OR, when
247
- * available, the plan/spec text. Used to decide whether the boot check must observe a
248
- * LISTENER (served app) or may pass on mere survival / quick exit (CLI project).
249
- */
250
- export declare function detectsServedApp(cwd: string, planText?: string): boolean;
251
- /** `ss -tlnpH` rows → {pid, port}. Column 4 (0-based 3) is the local address; the
252
- * port is its last `:`-suffixed number ("0.0.0.0:3000", "[::]:3000"). */
253
- export declare function parseSsListeners(stdout: string): Array<{
254
- pid: number;
255
- port: number;
256
- }>;
257
- /**
258
- * `netstat -tlnp` rows → {pid, port} (mx5 run 14, validated: the agent-sandbox
259
- * image ships NEITHER ss NOR lsof — only ps and netstat — so the served-app boot
260
- * check could never observe a listener and failed unfalsifiably). The pid rides
261
- * in the trailing "PID/Program name" column ("1234/bun"); rows the kernel will
262
- * not attribute to us print "-" there and are skipped.
263
- */
264
- export declare function parseNetstatListeners(stdout: string): Array<{
265
- pid: number;
266
- port: number;
267
- }>;
268
- /** `lsof -iTCP -sTCP:LISTEN -n -P` rows → {pid, port}. */
269
- export declare function parseLsofListeners(stdout: string): Array<{
270
- pid: number;
271
- port: number;
272
- }>;
273
- export declare function canEnumerateListeners(): boolean;
274
- /** Test seam: forget the memoised capability answer. */
275
- export declare function resetListenerToolCapability(): void;
276
- /**
277
- * A free TCP port on the loopback interface, or null if one cannot be reserved.
278
- * The boot check hands this to the child as PORT so that a successful HTTP
279
- * request to it is OWNERSHIP evidence: nobody else knows the number (mx5 runs
280
- * 8/10/11 — orphaned servers from earlier checks answered curl on the
281
- * conventional :3000 and passed checks the app had not earned).
282
- */
283
- export declare function pickFreePort(): Promise<number | null>;
284
- /** Can we bind 127.0.0.1:`port` right now? (Free ⇒ the boot child can have it.) */
285
- export declare function isPortFree(port: number): Promise<boolean>;
286
- /**
287
- * The project's own declared local port, but only if nothing is holding it — the
288
- * default `preferredPort` for the gate. A declared port that is BUSY falls back to
289
- * a reserved one rather than colliding: a stranger's server on :3000 must never be
290
- * mistaken for the app we just booted.
291
- */
292
- export declare function preferredDeclaredPort(cwd: string): Promise<number | null>;
293
- /**
294
- * Exercise the start command ONCE. For a CLI project (`expectServer` false) the
295
- * command's own fate within the grace window decides:
296
- *
297
- * - non-zero exit (or signal death) before the window closes → FAIL, output tail;
298
- * - exit 0 before the window closes → PASS (a CLI-style "run" that finished);
299
- * - still alive when the window closes → PASS, then the whole process group is
300
- * killed (detached spawn = own group; SIGTERM, escalating to SIGKILL).
301
- *
302
- * For a SERVED app (`expectServer` true — the spec/plan promised an HTTP server) mere
303
- * survival is not enough: a watcher (`dev` = tailwind/bundler --watch) stays alive
304
- * forever without ever listening, and a type-only entrypoint exits 0 in <1s having
305
- * served nothing (mx5 run 10 — both were blessed by the survival rule). The boot then
306
- * PASSes only once a LISTENing socket owned by our process group is observed; if the
307
- * command exits, or the grace window closes, with no listener ever seen → FAIL naming
308
- * that a listening server was expected.
309
- *
310
- * OBSERVABILITY is a precondition of that FAIL (mx5 run 14, validated). The listener
311
- * requirement needs pgid-attributed socket enumeration; win32 has none, and neither
312
- * does a Linux image shipping no ss/netstat/lsof — run 14's sandbox was exactly that,
313
- * so the check emitted "never opened a listening socket" against an app that
314
- * demonstrably served, three autofix passes could not falsify it, and the run was
315
- * recorded failed. Two defences, in order:
316
- *
317
- * - the child is spawned with a freshly reserved, otherwise-unused PORT, and an
318
- * HTTP answer on THAT port proves a listener regardless of tooling. The private
319
- * port is what makes the HTTP probe trustworthy: an orphaned server from an
320
- * earlier check answers on :3000, but nobody else knows this number.
321
- * - if nothing can enumerate listeners AND the assigned port never answered, the
322
- * served-app requirement is unobservable here, so `expectServer` collapses to
323
- * the survival rule and the PASS is stamped UNOBSERVED. An app that ignores PORT
324
- * is indistinguishable from one that never listened — an observer limitation,
325
- * not an app defect, and it may not be reported as one.
326
- *
327
- * A child that EXITS non-zero still FAILs in every environment: "the process died"
328
- * needs no socket probe, so run 14's original true positive (a `--hot` runtime
329
- * pinning a crashed app) stays reportable wherever the tooling exists.
330
- *
331
- * Env-gap contract as everywhere: spawn error (ENOENT) or a command-not-found
332
- * inside the chain (exit 127, or the runner's own wording where the platform
333
- * reports it that way — see isCommandNotFound) → skip.
334
- */
335
- export declare function runBootCheck(cwd: string, [bin, args]: HealthCommand, graceMs?: number, opts?: {
336
- expectServer?: boolean;
337
- deps?: BootDeps;
338
- }): Promise<BootOutcome>;
339
109
  /**
340
110
  * Labels (`bin args…`) of every command the gate CAN currently discover — the
341
111
  * static half (repo-health) plus the integration half. Pure discovery, nothing
@@ -463,55 +233,9 @@ export declare function unobservedVerdict(args: {
463
233
  /** Of those, how many actually RAN (a real pass or a real fail). */
464
234
  observed: number;
465
235
  }): string | null;
466
- /**
467
- * The SAME third verdict, at the door unobservedVerdict cannot reach: the boot
468
- * check specifically (mx5 run 18, validated).
469
- *
470
- * Run 18 shipped an app with no HTTP server behind a converged final gate. Its
471
- * `src/server/index.ts` ends at `export {app}` — no `Bun.serve`, no
472
- * `export default app`, no `start` script — so `bun run src/server/index.ts` exits
473
- * 0 immediately and the product cannot be started at all. The gate's boot command
474
- * resolved to `bun run dev`, whose body begins `docker compose … up -d`; the gate
475
- * sandbox had no docker, so the boot SKIPPED as an environment gap. Skips
476
- * contribute nothing to `dynObserved`, and `bun run test`, `test:ct`, `build`,
477
- * `lint`, `seed` and `migrate` all ran — so `dynObserved > 0`, the full-skip
478
- * blindness guard (observabilityGapFailure) stayed correctly quiet, and the trail
479
- * read `final-gate: autofix converged — statics + … passed` with 24/24 tasks green.
480
- *
481
- * The defect is that "the app was never observed to boot" and "the app booted
482
- * fine" produced BYTE-IDENTICAL gate output. That is the class scripts/ab-verdict.ts
483
- * exists to kill one layer up: absence of evidence rendered in the shape of
484
- * evidence. So a discovered-but-skipped boot now names itself, and — unlike every
485
- * other skip — it CANNOT be cancelled by observations from other commands.
486
- * Component tests are the trap here, not the alibi: run 18 had 51 green Playwright
487
- * CT tests, and CT mounts components in a browser without ever assembling or
488
- * starting the server.
489
- *
490
- * DECIDED, do not silently re-open:
491
- * - NOT a FAIL. A boot skip on a docker-less box is a genuine environment gap, and
492
- * failing it re-creates run 16's unfalsifiable-FAIL mistake pointing the other
493
- * way. UNOBSERVED blocks nothing while being loud and durable (the caller records
494
- * it as final-gate debt the next run re-surfaces), and it keeps "boot never ran"
495
- * out of the autofix child's seed — a child cannot fix a missing docker, so the
496
- * highest-probability response would be to FABRICATE a bootable command, the
497
- * class that refuted the `## verified tooling` harvest.
498
- * - BOTH skip flavours count. Run 18's skip carried `spawnFailed: false` (127 inside
499
- * the script chain, not an ENOENT on the runner), so keying off spawnFailed would
500
- * have missed the actual defect.
501
- * - SERVED APPS ONLY. `expectServer === false` (a CLI/library project) is fenced off
502
- * deliberately: a CLI whose `dev` script needs an absent tool has no server to be
503
- * unobserved, and widening the lever there buys warnings nobody can act on.
504
- */
505
- export declare function bootSkipVerdict(args: {
506
- /** `bin args…` of the DISCOVERED boot command; null ⇒ nothing to boot, which is
507
- * not the same thing as a boot that was not observed. */
508
- label: string | null;
509
- /** Did the boot check end in `skip` (either flavour)? */
510
- skipped: boolean;
511
- /** Does this project stand up an HTTP server (detectsServedApp)? */
512
- expectServer: boolean;
513
- }): string | null;
514
236
  export { taskThatIntroduced };
237
+ export { discoverBootCommand, detectsServedApp, runBootCheck, bootSkipVerdict, nonLaunchScriptReason, rejectedLaunchScript, parseSsListeners, parseNetstatListeners, parseLsofListeners, pickFreePort, preferredDeclaredPort, canEnumerateListeners };
238
+ export type { BootDeps };
515
239
  /**
516
240
  * ACCEPT-debt re-check (mx5 run 4 B3 / run 8 TASK_0012): read the ledger of tasks
517
241
  * the user accepted despite a verify-FAIL and re-check each against the CURRENT
@@ -654,4 +378,32 @@ export type { ClosureScan, ClosureScanInput, ClosureScanStage };
654
378
  * it, and autofix converges only when the whole list is empty. Per-section
655
379
  * env-gap/INFRA_GAP skip semantics and orphan-port recovery are unchanged.
656
380
  */
657
- export declare function runFinalIntegrationGate(cwd: string, timeoutMs?: number, bootGraceMs?: number, bootDeps?: BootDeps, planText?: string): Promise<FinalGateOutcome>;
381
+ /**
382
+ * Everything the run-end gate needs beyond the tree it is judging.
383
+ *
384
+ * An options object rather than a positional tail: the production call site read
385
+ * `runFinalIntegrationGate(cwd, undefined, undefined, undefined, planText)`, and
386
+ * `bootGraceMs`/`timeoutMs` are adjacent numbers that swap without a type error.
387
+ *
388
+ * `run`, `envClosure` and `trackedFiles` are SEAMS, by the same test GateDeps
389
+ * states: a scenario needs to substitute them. `runGateCommand`,
390
+ * `runVerifyCommandLine` and `rerunDebtVerifyCommand` each already take a
391
+ * `CommandRunner`; this is the fourth and last driver in the file, and without it
392
+ * the config-gap branch below is unreachable in test — not by oversight, but
393
+ * because reaching it needs a git-tracked env template, so every launch-contract
394
+ * test (bare `makeDir`, no `git init`) misses it by construction.
395
+ */
396
+ export interface FinalGateOptions {
397
+ timeoutMs?: number;
398
+ bootGraceMs?: number;
399
+ bootDeps?: BootDeps;
400
+ planText?: string;
401
+ /** Spawner for the lockfile / integration / launch-script sections. Boot
402
+ * spawns through `bootDeps`, which has its own probes. */
403
+ run?: CommandRunner;
404
+ /** The tracked env-template closure. Default reads git, degrading to inert. */
405
+ envClosure?: (cwd: string) => EnvClosure;
406
+ /** The repo's tracked file list, or null when it cannot be determined. */
407
+ trackedFiles?: (cwd: string) => string[] | null;
408
+ }
409
+ export declare function runFinalIntegrationGate(cwd: string, opts?: FinalGateOptions): Promise<FinalGateOutcome>;