@ai-dossier/sched 0.3.0 → 0.4.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 +97 -3
- package/dist/attribution.d.ts +132 -0
- package/dist/attribution.d.ts.map +1 -0
- package/dist/attribution.js +268 -0
- package/dist/attribution.js.map +1 -0
- package/dist/bisect.d.ts +67 -0
- package/dist/bisect.d.ts.map +1 -0
- package/dist/bisect.js +122 -0
- package/dist/bisect.js.map +1 -0
- package/dist/dispatch.d.ts +22 -0
- package/dist/dispatch.d.ts.map +1 -1
- package/dist/dispatch.js +50 -1
- package/dist/dispatch.js.map +1 -1
- package/dist/enqueue.d.ts +9 -0
- package/dist/enqueue.d.ts.map +1 -1
- package/dist/enqueue.js +94 -12
- package/dist/enqueue.js.map +1 -1
- package/dist/index.d.ts +6 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +36 -2
- package/dist/index.js.map +1 -1
- package/dist/recovery.d.ts +263 -0
- package/dist/recovery.d.ts.map +1 -0
- package/dist/recovery.js +730 -0
- package/dist/recovery.js.map +1 -0
- package/dist/scheduler.d.ts.map +1 -1
- package/dist/scheduler.js +6 -28
- package/dist/scheduler.js.map +1 -1
- package/dist/state.d.ts +55 -3
- package/dist/state.d.ts.map +1 -1
- package/dist/state.js +205 -6
- package/dist/state.js.map +1 -1
- package/dist/types.d.ts +114 -2
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +33 -3
- package/dist/types.js.map +1 -1
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -36,6 +36,52 @@ export declare const TERMINAL_ISSUE_STATUSES: ReadonlySet<IssueStatus>;
|
|
|
36
36
|
export declare const SATISFIED_ISSUE_STATUSES: ReadonlySet<IssueStatus>;
|
|
37
37
|
/** Teardown outcome values (#468): verified cleanup or a failed step. */
|
|
38
38
|
export type CleanupStatus = 'done' | `failed-${string}`;
|
|
39
|
+
/**
|
|
40
|
+
* How a failing test was traced back to a member: by changed-path /
|
|
41
|
+
* focused-test overlap, by `git bisect` over the issue-boundary commits, or
|
|
42
|
+
* not at all (a blanket dissolve requeue attributes nothing).
|
|
43
|
+
*/
|
|
44
|
+
export type AttributionMethod = 'overlap' | 'bisect' | 'none';
|
|
45
|
+
/**
|
|
46
|
+
* What an evicted member carries into its full-cycle requeue (RFC-0001 §F.9 —
|
|
47
|
+
* "requeue the member as full-cycle with its plan artifact + failure evidence
|
|
48
|
+
* attached"). The plan artifact already lives on the issue as its `plan:v1`
|
|
49
|
+
* comment, so the evidence records only what the batch run learned.
|
|
50
|
+
*/
|
|
51
|
+
export interface FailureEvidence {
|
|
52
|
+
/** Batch the member was evicted from. */
|
|
53
|
+
batch: string;
|
|
54
|
+
/** Why it was evicted (`suite-red`, `revert-conflict`, `dissolve`, …). */
|
|
55
|
+
reason: string;
|
|
56
|
+
/** Failing test ids attributed to this member (empty for a blanket dissolve). */
|
|
57
|
+
failing_tests: string[];
|
|
58
|
+
/** How those tests were attributed. */
|
|
59
|
+
attribution: AttributionMethod;
|
|
60
|
+
/** Commits reverted out of the batch branch for this member. */
|
|
61
|
+
reverted_commits: string[];
|
|
62
|
+
at: string;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* One eviction, kept on the batch for the batch report and as the classifier
|
|
66
|
+
* feedback signal (RFC-0001 §D.4 audit, AC5 "per-member outcome recorded").
|
|
67
|
+
*/
|
|
68
|
+
export interface EvictionRecord {
|
|
69
|
+
issue: number;
|
|
70
|
+
reason: string;
|
|
71
|
+
attribution: AttributionMethod;
|
|
72
|
+
reverted_commits: string[];
|
|
73
|
+
/** Members evicted alongside it because they share an eviction group (§E.4). */
|
|
74
|
+
group: number[];
|
|
75
|
+
at: string;
|
|
76
|
+
}
|
|
77
|
+
/** The one bounded fix attempt a member gets before it is evicted (§F.2). */
|
|
78
|
+
export interface FixAttemptRecord {
|
|
79
|
+
issue: number;
|
|
80
|
+
tier: ModelTier;
|
|
81
|
+
/** `dispatched` while the fix agent runs; then the suite's verdict for that member. */
|
|
82
|
+
outcome: 'dispatched' | 'green' | 'red';
|
|
83
|
+
at: string;
|
|
84
|
+
}
|
|
39
85
|
/**
|
|
40
86
|
* Batch lifecycle per RFC-0001 §D.2:
|
|
41
87
|
*
|
|
@@ -99,6 +145,11 @@ export interface QueueEntry {
|
|
|
99
145
|
* was verified (pool return self-check / worktree path gone).
|
|
100
146
|
*/
|
|
101
147
|
cleanup: CleanupStatus | null;
|
|
148
|
+
/**
|
|
149
|
+
* Why this entry was evicted from a batch, carried into its full-cycle
|
|
150
|
+
* requeue (#472). Null for every entry that never rode the eviction rail.
|
|
151
|
+
*/
|
|
152
|
+
failure_evidence: FailureEvidence | null;
|
|
102
153
|
enqueued_at: string;
|
|
103
154
|
updated_at: string;
|
|
104
155
|
}
|
|
@@ -111,6 +162,36 @@ export interface BatchEntry {
|
|
|
111
162
|
base_branch: string;
|
|
112
163
|
/** Index of the member currently in work, when status is `executing` (1-based member pointer). */
|
|
113
164
|
executing_member: number;
|
|
165
|
+
/**
|
|
166
|
+
* The batch ANCHOR issue — where every batch milestone posts (#472 AC5).
|
|
167
|
+
* Null until batch-prep supplies one; recovery then journals the milestone it
|
|
168
|
+
* could not post, rather than guessing an issue to comment on.
|
|
169
|
+
*/
|
|
170
|
+
anchor: number | null;
|
|
171
|
+
/**
|
|
172
|
+
* The batch working branch. Reserved for the batch-setup phase; nothing in
|
|
173
|
+
* this package writes it yet, and recovery only READS it — to refuse a rebase
|
|
174
|
+
* when the checkout is on some other branch.
|
|
175
|
+
*/
|
|
176
|
+
branch: string | null;
|
|
177
|
+
/**
|
|
178
|
+
* runstate run id of the batch run (`r-<issue>-<hex>`), null until batch-setup
|
|
179
|
+
* mints it. `ai-dossier runstate post` REQUIRES a run id, so a batch without
|
|
180
|
+
* one cannot post milestones at all — recovery journals them instead.
|
|
181
|
+
*/
|
|
182
|
+
run_id: string | null;
|
|
183
|
+
/**
|
|
184
|
+
* Members that must revert together when any one of them is evicted
|
|
185
|
+
* (RFC-0001 §E.4 eviction groups — e.g. a member built on another's API).
|
|
186
|
+
* Each inner array is one group; members in no group evict alone.
|
|
187
|
+
*/
|
|
188
|
+
eviction_groups: number[][];
|
|
189
|
+
/** Eviction history, oldest first (§D.4 audit / AC5 feedback signal). */
|
|
190
|
+
evictions: EvictionRecord[];
|
|
191
|
+
/** Fix attempts, at most `MAX_FIX_ATTEMPTS_PER_MEMBER` per member (§F.2). */
|
|
192
|
+
fix_attempts: FixAttemptRecord[];
|
|
193
|
+
/** Rebases of the batch branch after a PR conflict (§F.9, capped at `MAX_REBASE_ATTEMPTS`). */
|
|
194
|
+
rebase_attempts: number;
|
|
114
195
|
created_at: string;
|
|
115
196
|
updated_at: string;
|
|
116
197
|
}
|
|
@@ -193,6 +274,12 @@ export interface DispatchConfig {
|
|
|
193
274
|
* `DEFAULT_REPORT_PROMPT_TEMPLATE`.
|
|
194
275
|
*/
|
|
195
276
|
report_prompt?: string;
|
|
277
|
+
/**
|
|
278
|
+
* Prompt template for the one bounded fix attempt on a failing batch member
|
|
279
|
+
* (#472); `{issue}`, `{batch}` and `{tests}` substituted. Defaults to
|
|
280
|
+
* `DEFAULT_FIX_PROMPT_TEMPLATE`.
|
|
281
|
+
*/
|
|
282
|
+
fix_prompt?: string;
|
|
196
283
|
}
|
|
197
284
|
/** The escalation ladder: one tier stronger, or null at the top (RFC-0001 §C.1). */
|
|
198
285
|
export declare const TIER_LADDER: Readonly<Record<ModelTier, ModelTier | null>>;
|
|
@@ -206,7 +293,32 @@ export declare const DEFAULT_STALL_TIMEOUT_MS: number;
|
|
|
206
293
|
export declare const DEFAULT_RECONCILE_INTERVAL_MS: number;
|
|
207
294
|
/** Default parked-PR poll interval: 2.5 min (#468 AC1 "every 2–3 min"). */
|
|
208
295
|
export declare const DEFAULT_PR_POLL_INTERVAL_MS: number;
|
|
209
|
-
|
|
296
|
+
/**
|
|
297
|
+
* Fraction of a batch's members whose eviction dissolves it: STRICTLY more
|
|
298
|
+
* than a third (RFC-0001 §F.8 "> ⅓ evicted → dissolve").
|
|
299
|
+
*/
|
|
300
|
+
export declare const DISSOLVE_EVICTION_FRACTION: number;
|
|
301
|
+
/** Bounded fix attempts per member before it is evicted (§F.2 "one bounded attempt"). */
|
|
302
|
+
export declare const MAX_FIX_ATTEMPTS_PER_MEMBER = 1;
|
|
303
|
+
/**
|
|
304
|
+
* Tier the one bounded fix attempt runs at (§F.2 "mid-tier agent dispatch").
|
|
305
|
+
* Deliberately not the member's own tier: that tier already produced the code
|
|
306
|
+
* the suite is failing on.
|
|
307
|
+
*/
|
|
308
|
+
export declare const FIX_ATTEMPT_TIER: ModelTier;
|
|
309
|
+
/**
|
|
310
|
+
* The batch-line runstate phases (RFC-0001 §D.2).
|
|
311
|
+
*
|
|
312
|
+
* MUST stay in sync with `BATCH_PHASES`/`BATCH_SPECS` in `cli/src/runstate.ts`,
|
|
313
|
+
* which is the validating authority — this package cannot import from the CLI
|
|
314
|
+
* (the CLI depends on this package), so the vocabulary is a deliberate copy.
|
|
315
|
+
* A phase or status the CLI rejects makes the milestone un-postable at runtime.
|
|
316
|
+
*/
|
|
317
|
+
export declare const BATCH_PHASES: readonly ["batch-setup", "batch-validate", "batch-review", "batch-ship", "batch-report"];
|
|
318
|
+
export type BatchPhase = (typeof BATCH_PHASES)[number];
|
|
319
|
+
/** Rebases of a conflicting batch PR before dissolving into halves (§F.9 "re-ship once"). */
|
|
320
|
+
export declare const MAX_REBASE_ATTEMPTS = 1;
|
|
321
|
+
export declare const SCHEMA_VERSION: "1.3.0";
|
|
210
322
|
/** Schema versions `validateState` accepts on load (migrated to SCHEMA_VERSION on save). */
|
|
211
323
|
export declare const LEGACY_SCHEMA_VERSIONS: readonly string[];
|
|
212
324
|
export declare const CONFIG_SCHEMA_VERSION: "1.2.0";
|
|
@@ -237,7 +349,7 @@ export declare class SchedNotFoundError extends Error {
|
|
|
237
349
|
constructor(message: string);
|
|
238
350
|
}
|
|
239
351
|
/** Every event the engine journals to `events.jsonl` (append-only). */
|
|
240
|
-
export type JournalEventName = 'assigned' | 'spawned' | 'exit-detected' | 'orphan-pid' | 'external-advance' | 'progress' | 'phase-updated' | 'verify-complete' | 'verify-incomplete' | 'stalled' | 'redispatched' | 'unit-failed' | 'dependents-blocked' | 'requeued' | 'ground-truth-unreachable' | 'tick-failed' | 'pr-parked' | 'merge-accepted' | 'pr-watch-failed' | 'pr-watch-waiting' | 'teardown-done' | 'teardown-failed' | 'report-dispatched' | 'report-failed';
|
|
352
|
+
export type JournalEventName = 'assigned' | 'spawned' | 'exit-detected' | 'orphan-pid' | 'external-advance' | 'progress' | 'phase-updated' | 'verify-complete' | 'verify-incomplete' | 'stalled' | 'redispatched' | 'unit-failed' | 'dependents-blocked' | 'requeued' | 'ground-truth-unreachable' | 'tick-failed' | 'pr-parked' | 'merge-accepted' | 'pr-watch-failed' | 'pr-watch-waiting' | 'teardown-done' | 'teardown-failed' | 'report-dispatched' | 'report-failed' | 'suite-failed' | 'git-failed' | 'attributed' | 'fix-dispatched' | 'fix-resolved' | 'member-evicted' | 'revert-conflict' | 'batch-rebased' | 'batch-dissolved' | 'batch-split' | 'milestone-post-failed';
|
|
241
353
|
/** One journaled event. `ts` is stamped by the journal, never by callers. */
|
|
242
354
|
export interface JournalEvent {
|
|
243
355
|
ts: string;
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAIH,4GAA4G;AAC5G,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,MAAM,CAAC;AAExC,+GAA+G;AAC/G,MAAM,MAAM,SAAS,GAAG,YAAY,GAAG,KAAK,GAAG,QAAQ,CAAC;AAIxD;;;;;;;;;;;;;;GAcG;AACH,MAAM,MAAM,WAAW,GACnB,QAAQ,GACR,YAAY,GACZ,YAAY,GACZ,QAAQ,GACR,SAAS,GACT,MAAM,GACN,SAAS,GACT,SAAS,GACT,SAAS,GACT,WAAW,GACX,WAAW,GACX,kBAAkB,GAClB,SAAS,GACT,UAAU,GACV,SAAS,GACT,kBAAkB,GAClB,QAAQ,CAAC;AAEb,qDAAqD;AACrD,eAAO,MAAM,uBAAuB,EAAE,WAAW,CAAC,WAAW,CAA+B,CAAC;AAE7F;;;GAGG;AACH,eAAO,MAAM,wBAAwB,EAAE,WAAW,CAAC,WAAW,CAI5D,CAAC;AAEH,yEAAyE;AACzE,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,UAAU,MAAM,EAAE,CAAC;AAIxD;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;AAE9D;;;;;GAKG;AACH,MAAM,WAAW,eAAe;IAC9B,yCAAyC;IACzC,KAAK,EAAE,MAAM,CAAC;IACd,0EAA0E;IAC1E,MAAM,EAAE,MAAM,CAAC;IACf,iFAAiF;IACjF,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,uCAAuC;IACvC,WAAW,EAAE,iBAAiB,CAAC;IAC/B,gEAAgE;IAChE,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,EAAE,EAAE,MAAM,CAAC;CACZ;AAED;;;GAGG;AACH,MAAM,WAAW,cAAc;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,iBAAiB,CAAC;IAC/B,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,gFAAgF;IAChF,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,6EAA6E;AAC7E,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,SAAS,CAAC;IAChB,uFAAuF;IACvF,OAAO,EAAE,YAAY,GAAG,OAAO,GAAG,KAAK,CAAC;IACxC,EAAE,EAAE,MAAM,CAAC;CACZ;AAID;;;;;;;;;;;;;GAaG;AACH,MAAM,MAAM,WAAW,GACnB,SAAS,GACT,OAAO,GACP,WAAW,GACX,YAAY,GACZ,aAAa,GACb,QAAQ,GACR,UAAU,GACV,WAAW,GACX,UAAU,GACV,gBAAgB,GAChB,UAAU,GACV,eAAe,GACf,QAAQ,GACR,UAAU,GACV,UAAU,GACV,MAAM,GACN,YAAY,GACZ,WAAW,CAAC;AAEhB,qDAAqD;AACrD,eAAO,MAAM,uBAAuB,EAAE,WAAW,CAAC,WAAW,CAAkC,CAAC;AAEhG;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,EAAE,WAAW,CAAC,WAAW,CAKzD,CAAC;AAIH;;;;;;;;GAQG;AACH,MAAM,MAAM,UAAU,GAClB,MAAM,GACN,UAAU,GACV,SAAS,GACT,QAAQ,GACR,WAAW,GACX,UAAU,GACV,YAAY,GACZ,QAAQ,CAAC;AAEb,+DAA+D;AAC/D,eAAO,MAAM,kBAAkB,EAAE,WAAW,CAAC,UAAU,CAIrD,CAAC;AAIH,+DAA+D;AAC/D,MAAM,WAAW,UAAU;IACzB,wDAAwD;IACxD,KAAK,EAAE,MAAM,CAAC;IACd,qCAAqC;IACrC,IAAI,EAAE,SAAS,CAAC;IAChB,+DAA+D;IAC/D,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,kEAAkE;IAClE,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,6CAA6C;IAC7C,IAAI,EAAE,SAAS,CAAC;IAChB,yBAAyB;IACzB,MAAM,EAAE,WAAW,CAAC;IACpB,sFAAsF;IACtF,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;IAClB;;;;OAIG;IACH,OAAO,EAAE,aAAa,GAAG,IAAI,CAAC;IAC9B;;;OAGG;IACH,gBAAgB,EAAE,eAAe,GAAG,IAAI,CAAC;IACzC,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,6EAA6E;AAC7E,MAAM,WAAW,UAAU;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,WAAW,CAAC;IACpB,+CAA+C;IAC/C,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,kGAAkG;IAClG,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,eAAe,EAAE,MAAM,EAAE,EAAE,CAAC;IAC5B,yEAAyE;IACzE,SAAS,EAAE,cAAc,EAAE,CAAC;IAC5B,6EAA6E;IAC7E,YAAY,EAAE,gBAAgB,EAAE,CAAC;IACjC,+FAA+F;IAC/F,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,qCAAqC;AACrC,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,UAAU,CAAC;IACnB,mFAAmF;IACnF,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,uEAAuE;IACvE,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACnB;;;;;;OAMG;IACH,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,oDAAoD;IACpD,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,kFAAkF;IAClF,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,qFAAqF;IACrF,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,uFAAuF;IACvF,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,oFAAoF;IACpF,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,wFAAwF;AACxF,MAAM,WAAW,UAAU;IACzB,cAAc,EAAE,OAAO,cAAc,CAAC;IACtC,4EAA4E;IAC5E,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,UAAU,EAAE,CAAC;IACtB,OAAO,EAAE,UAAU,EAAE,CAAC;IACtB,KAAK,EAAE,SAAS,EAAE,CAAC;IACnB,6CAA6C;IAC7C,YAAY,EAAE,MAAM,CAAC;IACrB;;;;;OAKG;IACH,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;CAChC;AAED,mGAAmG;AACnG,MAAM,WAAW,WAAW;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,4HAA4H;IAC5H,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,2DAA2D;IAC3D,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B;;;OAGG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,iFAAiF;IACjF,QAAQ,CAAC,EAAE,cAAc,CAAC;CAC3B;AAED;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC7B,6FAA6F;IAC7F,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,wEAAwE;IACxE,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,uEAAuE;IACvE,WAAW,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC,CAAC;IACjD;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,oFAAoF;AACpF,eAAO,MAAM,WAAW,EAAE,QAAQ,CAAC,MAAM,CAAC,SAAS,EAAE,SAAS,GAAG,IAAI,CAAC,CAIrE,CAAC;AAEF,mFAAmF;AACnF,eAAO,MAAM,UAAU,EAAE,SAAS,SAAS,EAAoC,CAAC;AAEhF,4EAA4E;AAC5E,eAAO,MAAM,cAAc,IAAI,CAAC;AAEhC,8FAA8F;AAC9F,eAAO,MAAM,wBAAwB,QAAiB,CAAC;AAEvD,yDAAyD;AACzD,eAAO,MAAM,6BAA6B,QAAY,CAAC;AAEvD,2EAA2E;AAC3E,eAAO,MAAM,2BAA2B,QAAa,CAAC;AAEtD;;;GAGG;AACH,eAAO,MAAM,0BAA0B,QAAQ,CAAC;AAEhD,yFAAyF;AACzF,eAAO,MAAM,2BAA2B,IAAI,CAAC;AAE7C;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,EAAE,SAAiB,CAAC;AAEjD;;;;;;;GAOG;AACH,eAAO,MAAM,YAAY,0FAMf,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,CAAC,CAAC;AAEvD,6FAA6F;AAC7F,eAAO,MAAM,mBAAmB,IAAI,CAAC;AAErC,eAAO,MAAM,cAAc,EAAG,OAAgB,CAAC;AAE/C,4FAA4F;AAC5F,eAAO,MAAM,sBAAsB,EAAE,SAAS,MAAM,EAAgC,CAAC;AAErF,eAAO,MAAM,qBAAqB,EAAG,OAAgB,CAAC;AAEtD,wFAAwF;AACxF,eAAO,MAAM,6BAA6B,EAAE,SAAS,MAAM,EAAuB,CAAC;AAEnF,8DAA8D;AAC9D,MAAM,WAAW,eAAe;IAC9B,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,EAAE,cAAc,CAAC;CAC3B;AAED,eAAO,MAAM,iBAAiB,IAAI,CAAC;AAEnC,mGAAmG;AACnG,eAAO,MAAM,aAAa,IAAI,CAAC;AAC/B,eAAO,MAAM,aAAa,KAAK,CAAC;AAEhC,uDAAuD;AACvD,qBAAa,sBAAuB,SAAQ,KAAK;IAC/C,QAAQ,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,GAAG,MAAM,CAAC;IAC1C,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;gBAER,IAAI,EAAE,OAAO,GAAG,OAAO,GAAG,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM;CAOvE;AAED,2EAA2E;AAC3E,qBAAa,kBAAmB,SAAQ,KAAK;gBAC/B,OAAO,EAAE,MAAM;CAI5B;AAID,uEAAuE;AACvE,MAAM,MAAM,gBAAgB,GACxB,UAAU,GACV,SAAS,GACT,eAAe,GACf,YAAY,GACZ,kBAAkB,GAClB,UAAU,GACV,eAAe,GACf,iBAAiB,GACjB,mBAAmB,GACnB,SAAS,GACT,cAAc,GACd,aAAa,GACb,oBAAoB,GACpB,UAAU,GACV,0BAA0B,GAC1B,aAAa,GACb,WAAW,GACX,gBAAgB,GAChB,iBAAiB,GACjB,kBAAkB,GAClB,eAAe,GACf,iBAAiB,GACjB,mBAAmB,GACnB,eAAe,GAEf,cAAc,GACd,YAAY,GACZ,YAAY,GACZ,gBAAgB,GAChB,cAAc,GACd,gBAAgB,GAChB,iBAAiB,GACjB,eAAe,GACf,iBAAiB,GACjB,aAAa,GACb,uBAAuB,CAAC;AAE5B,6EAA6E;AAC7E,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,gBAAgB,CAAC;IACxB,6EAA6E;IAC7E,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB"}
|
package/dist/types.js
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* exec (project.ts, groundtruth.ts) — never an LLM call of its own (AC7).
|
|
10
10
|
*/
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.SchedNotFoundError = exports.IllegalTransitionError = exports.MAX_MAX_SLOTS = exports.MIN_MAX_SLOTS = exports.DEFAULT_MAX_SLOTS = exports.LEGACY_CONFIG_SCHEMA_VERSIONS = exports.CONFIG_SCHEMA_VERSION = exports.LEGACY_SCHEMA_VERSIONS = exports.SCHEMA_VERSION = exports.DEFAULT_PR_POLL_INTERVAL_MS = exports.DEFAULT_RECONCILE_INTERVAL_MS = exports.DEFAULT_STALL_TIMEOUT_MS = exports.ESCALATION_CAP = exports.TIER_ORDER = exports.TIER_LADDER = exports.LIVE_SLOT_STATUSES = exports.MERGED_BATCH_STATUSES = exports.TERMINAL_BATCH_STATUSES = exports.SATISFIED_ISSUE_STATUSES = exports.TERMINAL_ISSUE_STATUSES = void 0;
|
|
12
|
+
exports.SchedNotFoundError = exports.IllegalTransitionError = exports.MAX_MAX_SLOTS = exports.MIN_MAX_SLOTS = exports.DEFAULT_MAX_SLOTS = exports.LEGACY_CONFIG_SCHEMA_VERSIONS = exports.CONFIG_SCHEMA_VERSION = exports.LEGACY_SCHEMA_VERSIONS = exports.SCHEMA_VERSION = exports.MAX_REBASE_ATTEMPTS = exports.BATCH_PHASES = exports.FIX_ATTEMPT_TIER = exports.MAX_FIX_ATTEMPTS_PER_MEMBER = exports.DISSOLVE_EVICTION_FRACTION = exports.DEFAULT_PR_POLL_INTERVAL_MS = exports.DEFAULT_RECONCILE_INTERVAL_MS = exports.DEFAULT_STALL_TIMEOUT_MS = exports.ESCALATION_CAP = exports.TIER_ORDER = exports.TIER_LADDER = exports.LIVE_SLOT_STATUSES = exports.MERGED_BATCH_STATUSES = exports.TERMINAL_BATCH_STATUSES = exports.SATISFIED_ISSUE_STATUSES = exports.TERMINAL_ISSUE_STATUSES = void 0;
|
|
13
13
|
/** Issue statuses that cannot transition further. */
|
|
14
14
|
exports.TERMINAL_ISSUE_STATUSES = new Set(['done', 'failed']);
|
|
15
15
|
/**
|
|
@@ -56,9 +56,39 @@ exports.DEFAULT_STALL_TIMEOUT_MS = 30 * 60 * 1000;
|
|
|
56
56
|
exports.DEFAULT_RECONCILE_INTERVAL_MS = 60 * 1000;
|
|
57
57
|
/** Default parked-PR poll interval: 2.5 min (#468 AC1 "every 2–3 min"). */
|
|
58
58
|
exports.DEFAULT_PR_POLL_INTERVAL_MS = 150 * 1000;
|
|
59
|
-
|
|
59
|
+
/**
|
|
60
|
+
* Fraction of a batch's members whose eviction dissolves it: STRICTLY more
|
|
61
|
+
* than a third (RFC-0001 §F.8 "> ⅓ evicted → dissolve").
|
|
62
|
+
*/
|
|
63
|
+
exports.DISSOLVE_EVICTION_FRACTION = 1 / 3;
|
|
64
|
+
/** Bounded fix attempts per member before it is evicted (§F.2 "one bounded attempt"). */
|
|
65
|
+
exports.MAX_FIX_ATTEMPTS_PER_MEMBER = 1;
|
|
66
|
+
/**
|
|
67
|
+
* Tier the one bounded fix attempt runs at (§F.2 "mid-tier agent dispatch").
|
|
68
|
+
* Deliberately not the member's own tier: that tier already produced the code
|
|
69
|
+
* the suite is failing on.
|
|
70
|
+
*/
|
|
71
|
+
exports.FIX_ATTEMPT_TIER = 'mid';
|
|
72
|
+
/**
|
|
73
|
+
* The batch-line runstate phases (RFC-0001 §D.2).
|
|
74
|
+
*
|
|
75
|
+
* MUST stay in sync with `BATCH_PHASES`/`BATCH_SPECS` in `cli/src/runstate.ts`,
|
|
76
|
+
* which is the validating authority — this package cannot import from the CLI
|
|
77
|
+
* (the CLI depends on this package), so the vocabulary is a deliberate copy.
|
|
78
|
+
* A phase or status the CLI rejects makes the milestone un-postable at runtime.
|
|
79
|
+
*/
|
|
80
|
+
exports.BATCH_PHASES = [
|
|
81
|
+
'batch-setup',
|
|
82
|
+
'batch-validate',
|
|
83
|
+
'batch-review',
|
|
84
|
+
'batch-ship',
|
|
85
|
+
'batch-report',
|
|
86
|
+
];
|
|
87
|
+
/** Rebases of a conflicting batch PR before dissolving into halves (§F.9 "re-ship once"). */
|
|
88
|
+
exports.MAX_REBASE_ATTEMPTS = 1;
|
|
89
|
+
exports.SCHEMA_VERSION = '1.3.0';
|
|
60
90
|
/** Schema versions `validateState` accepts on load (migrated to SCHEMA_VERSION on save). */
|
|
61
|
-
exports.LEGACY_SCHEMA_VERSIONS = ['1.0.0', '1.1.0'];
|
|
91
|
+
exports.LEGACY_SCHEMA_VERSIONS = ['1.0.0', '1.1.0', '1.2.0'];
|
|
62
92
|
exports.CONFIG_SCHEMA_VERSION = '1.2.0';
|
|
63
93
|
/** Config schema versions `loadConfig` accepts (older configs carry only max_slots). */
|
|
64
94
|
exports.LEGACY_CONFIG_SCHEMA_VERSIONS = ['1.0.0', '1.1.0'];
|
package/dist/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";AAAA;;;;;;;;GAQG;;;AA8CH,qDAAqD;AACxC,QAAA,uBAAuB,GAA6B,IAAI,GAAG,CAAC,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAC;AAE7F;;;GAGG;AACU,QAAA,wBAAwB,GAA6B,IAAI,GAAG,CAAC;IACxE,SAAS;IACT,kBAAkB;IAClB,MAAM;CACP,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-dossier/sched",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Deterministic scheduler core for dossier batch cycles
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Deterministic scheduler core for dossier batch cycles — queue, slots, persistent state machine, dispatch engine with completion verification and stall/escalation ladder, PR watching with script-based teardown, and batch failure recovery (attribution, bisect, eviction, dissolve). The scheduler never invokes an LLM.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|