@wildorder/nightshift 0.17.0 → 0.18.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/README.md +269 -1
- package/dist/agent-runner.d.ts +41 -3
- package/dist/agent-runner.d.ts.map +1 -1
- package/dist/agent-runner.js +197 -12
- package/dist/agent-runner.js.map +1 -1
- package/dist/agent-session.d.ts +123 -0
- package/dist/agent-session.d.ts.map +1 -0
- package/dist/agent-session.js +114 -0
- package/dist/agent-session.js.map +1 -0
- package/dist/atomic-write.d.ts +18 -0
- package/dist/atomic-write.d.ts.map +1 -0
- package/dist/atomic-write.js +74 -0
- package/dist/atomic-write.js.map +1 -0
- package/dist/author.d.ts +112 -6
- package/dist/author.d.ts.map +1 -1
- package/dist/author.js +597 -137
- package/dist/author.js.map +1 -1
- package/dist/causal-analysis.d.ts +6 -2
- package/dist/causal-analysis.d.ts.map +1 -1
- package/dist/causal-analysis.js +55 -2
- package/dist/causal-analysis.js.map +1 -1
- package/dist/cli.js +22 -2
- package/dist/cli.js.map +1 -1
- package/dist/concurrency.d.ts +24 -0
- package/dist/concurrency.d.ts.map +1 -0
- package/dist/concurrency.js +28 -0
- package/dist/concurrency.js.map +1 -0
- package/dist/decider-review.d.ts +10 -3
- package/dist/decider-review.d.ts.map +1 -1
- package/dist/decider-review.js +6 -4
- package/dist/decider-review.js.map +1 -1
- package/dist/decision-ledger.d.ts +7 -0
- package/dist/decision-ledger.d.ts.map +1 -1
- package/dist/decision-ledger.js +25 -10
- package/dist/decision-ledger.js.map +1 -1
- package/dist/detect-package-manager.d.ts +10 -0
- package/dist/detect-package-manager.d.ts.map +1 -1
- package/dist/detect-package-manager.js +12 -0
- package/dist/detect-package-manager.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/manifest.d.ts +24 -5
- package/dist/manifest.d.ts.map +1 -1
- package/dist/manifest.js +254 -108
- package/dist/manifest.js.map +1 -1
- package/dist/permits.d.ts +18 -0
- package/dist/permits.d.ts.map +1 -1
- package/dist/permits.js +155 -0
- package/dist/permits.js.map +1 -1
- package/dist/preflight.d.ts +2 -2
- package/dist/preflight.d.ts.map +1 -1
- package/dist/preflight.js.map +1 -1
- package/dist/review-pass.d.ts +52 -10
- package/dist/review-pass.d.ts.map +1 -1
- package/dist/review-pass.js +114 -30
- package/dist/review-pass.js.map +1 -1
- package/dist/run-analytics-report.d.ts +114 -1
- package/dist/run-analytics-report.d.ts.map +1 -1
- package/dist/run-analytics-report.js +606 -14
- package/dist/run-analytics-report.js.map +1 -1
- package/dist/run-analytics.d.ts +107 -1
- package/dist/run-analytics.d.ts.map +1 -1
- package/dist/run-analytics.js +257 -25
- package/dist/run-analytics.js.map +1 -1
- package/dist/run-log.d.ts +16 -0
- package/dist/run-log.d.ts.map +1 -0
- package/dist/run-log.js +32 -0
- package/dist/run-log.js.map +1 -0
- package/dist/run-program.d.ts +203 -7
- package/dist/run-program.d.ts.map +1 -1
- package/dist/run-program.js +1526 -320
- package/dist/run-program.js.map +1 -1
- package/dist/scheduler.d.ts +75 -0
- package/dist/scheduler.d.ts.map +1 -0
- package/dist/scheduler.js +126 -0
- package/dist/scheduler.js.map +1 -0
- package/dist/verify-cache.d.ts +64 -0
- package/dist/verify-cache.d.ts.map +1 -0
- package/dist/verify-cache.js +56 -0
- package/dist/verify-cache.js.map +1 -0
- package/dist/whole-program-review.d.ts +2 -2
- package/dist/whole-program-review.d.ts.map +1 -1
- package/dist/whole-program-review.js.map +1 -1
- package/dist/worktree.d.ts +124 -0
- package/dist/worktree.d.ts.map +1 -0
- package/dist/worktree.js +397 -0
- package/dist/worktree.js.map +1 -0
- package/dist/write-queue.d.ts +25 -0
- package/dist/write-queue.d.ts.map +1 -0
- package/dist/write-queue.js +52 -0
- package/dist/write-queue.js.map +1 -0
- package/package.json +2 -2
- package/skills/plan-program/SKILL.md +37 -5
- package/dist/worktree-guard.d.ts +0 -40
- package/dist/worktree-guard.d.ts.map +0 -1
- package/dist/worktree-guard.js +0 -91
- package/dist/worktree-guard.js.map +0 -1
package/dist/run-program.d.ts
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
|
-
import { type AgentRunner, type AgentTranscript, type VerifyRunner } from "./agent-runner.js";
|
|
1
|
+
import { type AgentRunner, type AgentTranscript, type TranscriptSink, type VerifyRunner } from "./agent-runner.js";
|
|
2
|
+
import { type AgentSessionHandle, type SessionContinuity } from "./agent-session.js";
|
|
2
3
|
import { type AuthorStageResult } from "./author.js";
|
|
3
4
|
import type { AgentConfig, NightshiftConfig } from "./config.js";
|
|
4
5
|
import { type DecisionLedgerView } from "./decision-ledger.js";
|
|
5
6
|
import { type RenderableRecord } from "./decision-view.js";
|
|
6
7
|
import { type ReviewPassOutcome } from "./review-pass.js";
|
|
8
|
+
import { type VerifyCache } from "./verify-cache.js";
|
|
7
9
|
import { type ProgramManifest, type Workstream } from "./manifest.js";
|
|
8
10
|
import { type PreflightResult, type PrerequisiteRunner } from "./preflight.js";
|
|
9
11
|
import { type PermitsContext } from "./permits.js";
|
|
10
|
-
import { RunRecorder, type Dimensions, type EvidenceReference } from "./run-analytics.js";
|
|
12
|
+
import { RunRecorder, type Dimensions, type EvidenceReference, type SpanScope } from "./run-analytics.js";
|
|
13
|
+
import { type Mutex } from "./concurrency.js";
|
|
14
|
+
import { type ResolvedWorktreeBase, type WorktreeOps } from "./worktree.js";
|
|
11
15
|
import { type AsBuiltFs, type WholeProgramReviewOutcome } from "./whole-program-review.js";
|
|
12
16
|
import { type CausalAnalysisOutcome } from "./causal-analysis.js";
|
|
13
17
|
/**
|
|
@@ -39,8 +43,13 @@ export interface GitOps {
|
|
|
39
43
|
currentCommit(cwd: string): Promise<string | undefined>;
|
|
40
44
|
/** The checked-out branch name; undefined when HEAD is detached. */
|
|
41
45
|
currentBranch(cwd: string): Promise<string | undefined>;
|
|
42
|
-
/**
|
|
43
|
-
|
|
46
|
+
/**
|
|
47
|
+
* Stages everything and commits; undefined result means nothing to commit.
|
|
48
|
+
* `excludePaths`, when given, are repo-root-relative pathspecs excluded
|
|
49
|
+
* from the stage (WS-02) — a worktree's own commit uses this to keep an
|
|
50
|
+
* agent's stray `docs/programs/` edit out of the commit it produces.
|
|
51
|
+
*/
|
|
52
|
+
commitAll(cwd: string, message: string, excludePaths?: string[]): Promise<string | undefined>;
|
|
44
53
|
/**
|
|
45
54
|
* Stages only the given repo-relative paths and commits them, leaving
|
|
46
55
|
* every other modified file untouched in the tree. Undefined result means
|
|
@@ -63,6 +72,21 @@ export interface GitOps {
|
|
|
63
72
|
resetHard(cwd: string, commit: string): Promise<void>;
|
|
64
73
|
/** Points `ref` at `commit`, creating or moving it. */
|
|
65
74
|
createRef(cwd: string, ref: string, commit: string): Promise<void>;
|
|
75
|
+
/** Deletes `ref`; tolerates an already-absent ref (WS-02). */
|
|
76
|
+
deleteRef(cwd: string, ref: string): Promise<void>;
|
|
77
|
+
/**
|
|
78
|
+
* The git tree hash of the tree at `cwd` as it stands right now — `HEAD`
|
|
79
|
+
* plus every uncommitted tracked and untracked-not-ignored change — with
|
|
80
|
+
* the repo-relative paths in `exclude` removed from the hashed index
|
|
81
|
+
* (WS-09). The caller decides what to exclude and owns the contract that
|
|
82
|
+
* justifies it; this method has no opinion and no default. Computed
|
|
83
|
+
* against a temporary index, so neither the real index nor the working
|
|
84
|
+
* tree is touched. `undefined` on any failure — not a repository, no
|
|
85
|
+
* commits yet, a git error — which disables the verify cache for that pass
|
|
86
|
+
* rather than risking a false hit. Optional so every existing `GitOps`
|
|
87
|
+
* fake keeps compiling; its absence simply disables caching.
|
|
88
|
+
*/
|
|
89
|
+
treeHash?(cwd: string, exclude: readonly string[]): Promise<string | undefined>;
|
|
66
90
|
}
|
|
67
91
|
export declare const defaultGitOps: GitOps;
|
|
68
92
|
/**
|
|
@@ -79,7 +103,7 @@ export declare const defaultGitOps: GitOps;
|
|
|
79
103
|
* commit, large diff, and manifest/ledger persist is instrumented through
|
|
80
104
|
* one implementation.
|
|
81
105
|
*/
|
|
82
|
-
export declare function timed<T>(recorder:
|
|
106
|
+
export declare function timed<T>(recorder: SpanScope, dims: Dimensions, fn: () => Promise<T>, evidenceFor?: (result: T) => EvidenceReference[] | undefined): Promise<T>;
|
|
83
107
|
/** `timed`'s `evidenceFor` for a git commit call: a defined, non-empty sha becomes a `commit` evidence ref; "nothing to commit" (`undefined`) carries none. */
|
|
84
108
|
export declare function commitEvidence(sha: string | undefined): EvidenceReference[] | undefined;
|
|
85
109
|
export interface RunProgramOptions {
|
|
@@ -96,6 +120,16 @@ export interface RunProgramOptions {
|
|
|
96
120
|
* process-tree-killing subprocess runner (see preflight.ts). */
|
|
97
121
|
prerequisiteRunner?: PrerequisiteRunner;
|
|
98
122
|
git?: GitOps;
|
|
123
|
+
/** Injectable worktree/integration plumbing (WS-02); the production
|
|
124
|
+
* default drives real git worktrees. */
|
|
125
|
+
worktrees?: WorktreeOps;
|
|
126
|
+
/** Runs a worktree's dependency install command; defaults to the same
|
|
127
|
+
* subprocess runner `defaultVerifyRunner` uses. Deliberately distinct
|
|
128
|
+
* from `verifyRunner` — see the `setupRunner` local in `runProgramWith`. */
|
|
129
|
+
setupRunner?: VerifyRunner;
|
|
130
|
+
/** Overrides where this run's worktrees are created; a test seam and an
|
|
131
|
+
* escape hatch for a slow or read-only default temp filesystem. */
|
|
132
|
+
worktreeBaseDir?: string;
|
|
99
133
|
log?: (line: string) => void;
|
|
100
134
|
now?: () => Date;
|
|
101
135
|
/** Injectable monotonic clock (WS-01); defaults to `performance.now()`.
|
|
@@ -104,6 +138,15 @@ export interface RunProgramOptions {
|
|
|
104
138
|
monotonic?: () => number;
|
|
105
139
|
/** Skips the default-branch and wrong-branch preconditions. */
|
|
106
140
|
force?: boolean;
|
|
141
|
+
/**
|
|
142
|
+
* Maximum workstream builds in flight at once. `undefined`, or anything
|
|
143
|
+
* below 1, means unbounded — the dependency graph is the only serializer.
|
|
144
|
+
* `1` reproduces the pre-WS-04 serial runner exactly: the same dispatch
|
|
145
|
+
* order, the same commits, the same outcomes. Passed through to
|
|
146
|
+
* `AuthorOptions.maxParallel` (WS-03), so one flag bounds both stages
|
|
147
|
+
* (WS-04, §3.4).
|
|
148
|
+
*/
|
|
149
|
+
maxParallel?: number;
|
|
107
150
|
/** The exact command that resumes this run, reconstructed by the CLI from
|
|
108
151
|
* the actual invocation (--cwd/--force/--publish). Rendered verbatim in
|
|
109
152
|
* the report's "Awaiting Human Actions" section; a caller that omits it
|
|
@@ -140,6 +183,18 @@ export interface WorkstreamResult {
|
|
|
140
183
|
decisionIds: string[];
|
|
141
184
|
/** Decision blocks the agent garbled; surfaced, never fatal. */
|
|
142
185
|
decisionErrors: string[];
|
|
186
|
+
/** One entry per fix seat this workstream ran — the test-critique fix
|
|
187
|
+
* round(s) and the fix-now fix, in order (WS-08). Used by the run report
|
|
188
|
+
* to state a session-resume fallback where one happened; silent when
|
|
189
|
+
* every seat resumed cleanly or no fix seat ran at all. `producerCommand`
|
|
190
|
+
* names the lineage's entering session's command, when known, so a
|
|
191
|
+
* `provider-mismatch` line can say which two commands disagreed. */
|
|
192
|
+
sessionContinuity?: Array<{
|
|
193
|
+
seat: string;
|
|
194
|
+
continuity: SessionContinuity;
|
|
195
|
+
producerCommand?: string | undefined;
|
|
196
|
+
seatCommand?: string | undefined;
|
|
197
|
+
}>;
|
|
143
198
|
/**
|
|
144
199
|
* Agent stages (reviewer, decider, fix) that could not be spawned after
|
|
145
200
|
* this workstream had already verified green — the outcome stays whatever
|
|
@@ -182,6 +237,21 @@ export interface WorkstreamResult {
|
|
|
182
237
|
/** The implementer's command line, named in the report's not-observable
|
|
183
238
|
* line when no transcript here is `observed` (WS-02). */
|
|
184
239
|
buildAgentCommand?: string;
|
|
240
|
+
/**
|
|
241
|
+
* The worktree path this workstream built in, present whenever a worktree
|
|
242
|
+
* exists and was not cleaned up — i.e. whenever the outcome is not
|
|
243
|
+
* `complete` (WS-02, SC-11). Retention is forensic, for the window between
|
|
244
|
+
* runs; the next run reaps it.
|
|
245
|
+
*/
|
|
246
|
+
worktreePath?: string;
|
|
247
|
+
/**
|
|
248
|
+
* `refs/nightshift/<programId>/<workstreamId>` — set whenever this
|
|
249
|
+
* workstream's build verified green in its worktree but integration has
|
|
250
|
+
* not (yet) succeeded (WS-02, SC-03). Absent when the workstream failed
|
|
251
|
+
* before verifying (no commit to retain) or after a successful
|
|
252
|
+
* integration (the ref is deleted alongside the branch).
|
|
253
|
+
*/
|
|
254
|
+
retainedRef?: string;
|
|
185
255
|
}
|
|
186
256
|
export interface RunProgramResult {
|
|
187
257
|
programId: string;
|
|
@@ -218,6 +288,118 @@ export declare function programIdOfArtifact(path: string): string | undefined;
|
|
|
218
288
|
export declare function foreignPlanningPaths(untrackedPaths: readonly string[], programId: string): string[];
|
|
219
289
|
/** Every workstream in the transitive downstream cone of the given ids. */
|
|
220
290
|
export declare function downstreamCone(workstreams: readonly Workstream[], rootIds: readonly string[]): Set<string>;
|
|
291
|
+
/**
|
|
292
|
+
* Reaps every worktree and per-workstream branch this program created,
|
|
293
|
+
* driven by `git worktree list --porcelain` filtered on the branch prefix —
|
|
294
|
+
* never on path, since git realpath-resolves the paths it reports (WS-02,
|
|
295
|
+
* §3.7). Runs on every run, not only a resume: a crashed prior run leaves the
|
|
296
|
+
* same debris. Retained `refs/nightshift/…` commits are never touched — they
|
|
297
|
+
* are the forensic record a human needs to salvage a parked integration.
|
|
298
|
+
*/
|
|
299
|
+
export declare function reapProgramWorktrees(root: string, programId: string, worktrees: WorktreeOps, log: (line: string) => void,
|
|
300
|
+
/** Workstreams already `complete` in the manifest: their leftover
|
|
301
|
+
* worktree (a crash between integration and cleanup) holds nothing the
|
|
302
|
+
* program branch lacks, so it is reaped without salvage. */
|
|
303
|
+
completeWorkstreamIds?: ReadonlySet<string>): Promise<void>;
|
|
304
|
+
/**
|
|
305
|
+
* A workstream's worktree, created from the program-branch tip and ready
|
|
306
|
+
* for a build-role spawn (WS-02, §3.3). `ok: false` with `created: false`
|
|
307
|
+
* means nothing was created (`worktrees.add` itself threw) — there is no
|
|
308
|
+
* path to name in a report. `ok: false` with `created: true` means the
|
|
309
|
+
* worktree and its branch exist but the dependency install failed —
|
|
310
|
+
* retained, and named in the report.
|
|
311
|
+
*/
|
|
312
|
+
export type PrepareWorktreeResult = {
|
|
313
|
+
ok: true;
|
|
314
|
+
cwd: string;
|
|
315
|
+
branch: string;
|
|
316
|
+
} | {
|
|
317
|
+
ok: false;
|
|
318
|
+
reason: string;
|
|
319
|
+
created: false;
|
|
320
|
+
} | {
|
|
321
|
+
ok: false;
|
|
322
|
+
reason: string;
|
|
323
|
+
created: true;
|
|
324
|
+
cwd: string;
|
|
325
|
+
branch: string;
|
|
326
|
+
};
|
|
327
|
+
export declare function prepareWorktree(args: {
|
|
328
|
+
root: string;
|
|
329
|
+
programId: string;
|
|
330
|
+
workstreamId: string;
|
|
331
|
+
worktrees: WorktreeOps;
|
|
332
|
+
worktreeBase: ResolvedWorktreeBase;
|
|
333
|
+
setupRunner: VerifyRunner;
|
|
334
|
+
log: (line: string) => void;
|
|
335
|
+
/**
|
|
336
|
+
* The program-branch tip to build from — resolved once by the caller (the
|
|
337
|
+
* build scheduler's `launch`, or `runWorkstream`'s own fallback for the one
|
|
338
|
+
* caller with no scheduling instant to offer) rather than a second read
|
|
339
|
+
* here. Resolved through `WorktreeOps`, never `GitOps.currentCommit`, so a
|
|
340
|
+
* `GitOps` stub that always returns undefined
|
|
341
|
+
* (test/run-program-as-built.test.ts) never breaks this (WS-04, §3.5).
|
|
342
|
+
*/
|
|
343
|
+
programTip: string;
|
|
344
|
+
}): Promise<PrepareWorktreeResult>;
|
|
345
|
+
export interface IntegrateWorkstreamArgs {
|
|
346
|
+
root: string;
|
|
347
|
+
programId: string;
|
|
348
|
+
workstream: Workstream;
|
|
349
|
+
cwd: string;
|
|
350
|
+
branch: string;
|
|
351
|
+
finalCommit: string;
|
|
352
|
+
worktrees: WorktreeOps;
|
|
353
|
+
git: GitOps;
|
|
354
|
+
config: NightshiftConfig;
|
|
355
|
+
verifyRunner: VerifyRunner;
|
|
356
|
+
setupRunner: VerifyRunner;
|
|
357
|
+
verifyCache?: VerifyCache;
|
|
358
|
+
agentRunner: AgentRunner;
|
|
359
|
+
permits: PermitsContext;
|
|
360
|
+
/** The recovery seat's agent — `recovery.agent` when one is configured
|
|
361
|
+
* and not borrowed from the implementer, otherwise the implementer
|
|
362
|
+
* itself (the same seat policy the attempt loop uses). */
|
|
363
|
+
recoveryAgent: AgentConfig;
|
|
364
|
+
worktreeBase: ResolvedWorktreeBase;
|
|
365
|
+
scope: SpanScope;
|
|
366
|
+
log: (line: string) => void;
|
|
367
|
+
transcriptSink: (label: string) => TranscriptSink;
|
|
368
|
+
/** Guards every operation that takes `.git/index.lock` at `root` (WS-05
|
|
369
|
+
* §3.7, §3.7.1); threaded straight through to `attemptIntegration`. */
|
|
370
|
+
rootIndexMutex: Mutex;
|
|
371
|
+
/** Every workstream's `taskFile` in the roster (WS-05 §3.7.1); threaded
|
|
372
|
+
* straight through to `attemptIntegration`. */
|
|
373
|
+
rosterTaskFiles: ReadonlySet<string>;
|
|
374
|
+
}
|
|
375
|
+
export type IntegrateWorkstreamResult = {
|
|
376
|
+
ok: true;
|
|
377
|
+
commit?: string;
|
|
378
|
+
transcripts: AgentTranscript[];
|
|
379
|
+
/** Every worktree/branch created by this integration (the original,
|
|
380
|
+
* plus the recovery worktree when one ran) — the caller removes
|
|
381
|
+
* these, and the retained ref, only after its own completion write
|
|
382
|
+
* lands (WS-02, §3.5 step 4). */
|
|
383
|
+
cleanup: Array<{
|
|
384
|
+
path: string;
|
|
385
|
+
branch: string;
|
|
386
|
+
}>;
|
|
387
|
+
} | {
|
|
388
|
+
ok: false;
|
|
389
|
+
reason: string;
|
|
390
|
+
retainedRef: string;
|
|
391
|
+
worktreePaths: string[];
|
|
392
|
+
transcripts: AgentTranscript[];
|
|
393
|
+
};
|
|
394
|
+
/**
|
|
395
|
+
* Integrates one green worktree onto the program branch (WS-02, §3.5-§3.6):
|
|
396
|
+
* one attempt, and on failure, exactly one bounded recovery attempt in a
|
|
397
|
+
* fresh worktree from the current tip, briefed with both commits and the
|
|
398
|
+
* failure. The verified commit is retained under `refs/nightshift/` on
|
|
399
|
+
* every path, before any mutation, and deleted again only once this
|
|
400
|
+
* function returns success.
|
|
401
|
+
*/
|
|
402
|
+
export declare function integrateWorkstream(args: IntegrateWorkstreamArgs): Promise<IntegrateWorkstreamResult>;
|
|
221
403
|
/**
|
|
222
404
|
* The decide-and-continue runner.
|
|
223
405
|
*
|
|
@@ -289,7 +471,7 @@ export declare function runWholeProgramStage(args: {
|
|
|
289
471
|
/** Test seam only; production never sets it. Passed straight to the pass. */
|
|
290
472
|
fs?: AsBuiltFs;
|
|
291
473
|
/** The run's analytics recorder (WS-01); a caller with no run-scoped recorder gets a shared no-op default. */
|
|
292
|
-
recorder?:
|
|
474
|
+
recorder?: SpanScope;
|
|
293
475
|
}): Promise<WholeProgramStageResult>;
|
|
294
476
|
export interface CausalAnalysisStageResult {
|
|
295
477
|
outcome: CausalAnalysisOutcome;
|
|
@@ -320,7 +502,13 @@ export declare function runCausalAnalysisStage(args: {
|
|
|
320
502
|
runStartCommit: string | undefined;
|
|
321
503
|
ledger: DecisionLedgerView;
|
|
322
504
|
log: (line: string) => void;
|
|
323
|
-
/**
|
|
505
|
+
/**
|
|
506
|
+
* The run's analytics recorder (WS-01); a caller with no run-scoped
|
|
507
|
+
* recorder gets a shared no-op default. Kept as the concrete
|
|
508
|
+
* `RunRecorder` (not narrowed to `SpanScope`, unlike the other stage
|
|
509
|
+
* options below) because this stage calls `recorder.snapshot()` directly
|
|
510
|
+
* — a capability `SpanScope` deliberately does not expose.
|
|
511
|
+
*/
|
|
324
512
|
recorder?: RunRecorder;
|
|
325
513
|
}): Promise<CausalAnalysisStageResult>;
|
|
326
514
|
export interface FixAttempt {
|
|
@@ -346,6 +534,14 @@ export interface FixAttempt {
|
|
|
346
534
|
* build-role spawn, so the caller rolls this into the owning
|
|
347
535
|
* `WorkstreamResult.transcripts`. */
|
|
348
536
|
transcript?: AgentTranscript;
|
|
537
|
+
/** This attempt's session handle (WS-08) — the spawn that actually ran
|
|
538
|
+
* last under the last-wins rule, so a fresh fallback's session wins when
|
|
539
|
+
* the fallback is what wrote the fix. The caller advances its build
|
|
540
|
+
* lineage's handle from this field. */
|
|
541
|
+
session?: AgentSessionHandle;
|
|
542
|
+
/** How this attempt's session continuity resolved (WS-08), for the
|
|
543
|
+
* caller to report and count. */
|
|
544
|
+
continuity?: SessionContinuity;
|
|
349
545
|
}
|
|
350
546
|
export declare function renderRunReport(manifest: ProgramManifest, results: WorkstreamResult[], ledger: DecisionLedgerView, triagedThisRun: ReadonlySet<string>, authorResult: AuthorStageResult, at: Date, wholeProgram?: WholeProgramStageResult, preflight?: PreflightResult, resumeCommand?: string, manifestAmended?: boolean,
|
|
351
547
|
/** Pre-rendered "Where the time went" lines (WS-04), computed and isolated by the caller via `renderAnalyticsSection`. Omitted entirely, this function's output is unchanged from before WS-04. */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"run-program.d.ts","sourceRoot":"","sources":["../src/run-program.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"run-program.d.ts","sourceRoot":"","sources":["../src/run-program.ts"],"names":[],"mappings":"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"}
|