@ai-dossier/sched 0.10.0 → 0.11.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 +100 -13
- package/dist/dispatch.d.ts +35 -4
- package/dist/dispatch.d.ts.map +1 -1
- package/dist/dispatch.js +96 -5
- package/dist/dispatch.js.map +1 -1
- package/dist/engine.d.ts +8 -0
- package/dist/engine.d.ts.map +1 -1
- package/dist/engine.js +135 -35
- package/dist/engine.js.map +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +13 -3
- package/dist/index.js.map +1 -1
- package/dist/journal.d.ts +24 -4
- package/dist/journal.d.ts.map +1 -1
- package/dist/journal.js +43 -13
- package/dist/journal.js.map +1 -1
- package/dist/run-log.d.ts +113 -0
- package/dist/run-log.d.ts.map +1 -0
- package/dist/run-log.js +255 -0
- package/dist/run-log.js.map +1 -0
- package/dist/state.d.ts +9 -3
- package/dist/state.d.ts.map +1 -1
- package/dist/state.js +25 -3
- package/dist/state.js.map +1 -1
- package/dist/types.d.ts +27 -3
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +2 -1
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,10 +33,15 @@ ai-dossier sched pause # stop NEW assignments; live units keep runnin
|
|
|
33
33
|
ai-dossier sched resume
|
|
34
34
|
ai-dossier sched abandon --issue 42 --reason "operator abort"
|
|
35
35
|
ai-dossier sched abandon --batch b1 # dissolve; members requeue as full-cycle
|
|
36
|
+
ai-dossier sched stats --issues 4..9 # per-issue tokens/cost from ~/.dossier/runs.jsonl (#524)
|
|
36
37
|
```
|
|
37
38
|
|
|
38
|
-
Every subcommand takes `--project <slug>` (default: `owner-repo` of the
|
|
39
|
-
falling back to the repo basename — fleet-cycle's convention) and
|
|
39
|
+
Every subcommand except `stats` takes `--project <slug>` (default: `owner-repo` of the
|
|
40
|
+
current directory, falling back to the repo basename — fleet-cycle's convention) and
|
|
41
|
+
`--json`. `stats` reads `~/.dossier/runs.jsonl`, a single global file, not the
|
|
42
|
+
per-project state — it takes `--json` and `--issues` only; see "runs.jsonl telemetry"
|
|
43
|
+
below for the resulting cross-repo caveat (the same issue number in two repos sums
|
|
44
|
+
together).
|
|
40
45
|
|
|
41
46
|
Since #507, `enqueue` additionally reads each candidate issue's live GitHub labels (one
|
|
42
47
|
`gh issue view --json labels` call per issue, resolved against the current directory's repo
|
|
@@ -52,7 +57,9 @@ A failed `gh` lookup fails open: the issue enqueues normally, with a warning and
|
|
|
52
57
|
where every mechanical supervision decision is code, not remembered prose:
|
|
53
58
|
|
|
54
59
|
1. **Dispatch (AC1)** — a runnable unit is spawned as a detached agent process
|
|
55
|
-
(`claude -p --output-format json --model <tier model>` by default
|
|
60
|
+
(`claude -p --output-format stream-json --verbose --model <tier model>` by default —
|
|
61
|
+
`json` buffers the whole session into a single write at exit, which left a 0-byte log
|
|
62
|
+
for any dispatch killed before a clean exit (#524); opencode fallback;
|
|
56
63
|
command/prompt/tier-models configurable), prompt on stdin, output appended to
|
|
57
64
|
`runs/<unit>.log`. The opencode fallback runs `opencode run --auto …` (#506) — a git
|
|
58
65
|
worktree is an `external_directory` to opencode, whose default `"ask"` policy a headless
|
|
@@ -100,7 +107,8 @@ where every mechanical supervision decision is code, not remembered prose:
|
|
|
100
107
|
itself — see `slot-released` below (#525).
|
|
101
108
|
6. **Journal (AC6)** — every event (assigned, spawned, exit-detected, external-advance,
|
|
102
109
|
progress, stalled, redispatched, fence-written, fence-failed, unit-failed,
|
|
103
|
-
dependents-blocked, slot-released, suspect-dispatch, dispatch-unhealthy,
|
|
110
|
+
dependents-blocked, slot-released, suspect-dispatch, dispatch-unhealthy,
|
|
111
|
+
run-log-recorded, run-log-no-usage, run-log-skipped, run-log-failed, …) is
|
|
104
112
|
appended to `events.jsonl`; `sched status` shows the live phase per unit, plus each
|
|
105
113
|
slot's `gen` and `fenced` state (#504). `label-blocked`/`label-check-failed` (#507)
|
|
106
114
|
are the one pair journaled OUTSIDE the engine — `sched enqueue` appends them at
|
|
@@ -287,6 +295,17 @@ suspect-dispatch streak (#505 above). The two fields are a single fact and must
|
|
|
287
295
|
on load: no suspect dispatches were ever tracked under them, so `0`/`null` is the exact
|
|
288
296
|
backfill, not a guess.
|
|
289
297
|
|
|
298
|
+
Schema 1.8.0: `SlotEntry` gains `spawned_at` (ISO string or null — when the CURRENTLY
|
|
299
|
+
held unit was (re)spawned, distinct from `last_progress_at`, which later progress
|
|
300
|
+
signals overwrite) and `log_offset_at_spawn` (number or null — the dispatch log's byte
|
|
301
|
+
size at that same instant). Both feed `runs.jsonl` per-dispatch telemetry (#524): the
|
|
302
|
+
log is per-UNIT and opened in append mode, so a redispatch's output lands after the
|
|
303
|
+
prior dispatch's in the same file — `log_offset_at_spawn` is what lets the engine read
|
|
304
|
+
only the current dispatch's own slice rather than concatenating (claude) or
|
|
305
|
+
double-counting (opencode) a prior one. 1.6.0 states migrate on load, backfilling both
|
|
306
|
+
to `null` — an in-flight dispatch's start time and log position are unknown, not zero —
|
|
307
|
+
as do 1.7.0 states (#523 took 1.7.0 for the batch fields; these two landed after it).
|
|
308
|
+
Both reset with the slot on release (`CLEARED_SLOT_FIELDS`).
|
|
290
309
|
## Batch dispatch (#523)
|
|
291
310
|
|
|
292
311
|
`batch-dispatch.ts`'s `runBatchTick` — called from `tick()` after the issue-level pass,
|
|
@@ -411,12 +430,23 @@ import {
|
|
|
411
430
|
type SuiteRunner, // re-runs the aggregate suite after a revert or rebase
|
|
412
431
|
type BatchMilestonePoster, // batch-milestone sink (createExecMilestonePoster is default)
|
|
413
432
|
Journal, // append-only events.jsonl
|
|
433
|
+
appendJsonl, // the shared mkdir+append+swallow JSONL write
|
|
414
434
|
transitionIssue, transitionBatch, transitionSlot, // typed §D transitions
|
|
415
435
|
TRANSITIONS, // the transition tables themselves (for previews)
|
|
416
436
|
buildStatusReport, // machine-readable status incl. blocked/failed sets
|
|
417
437
|
validateState, // strict persisted-state validation (1.0.0-1.6.0 files migrate)
|
|
418
438
|
IllegalTransitionError, EnqueueError, CorruptStateError, LockTimeoutError,
|
|
419
439
|
SchedNotFoundError,
|
|
440
|
+
// #524: per-dispatch runs.jsonl telemetry (see "runs.jsonl telemetry" below)
|
|
441
|
+
buildSchedRunLogEntry, // AgentRunUsage-sourced RunLogEntry for one completed dispatch
|
|
442
|
+
appendSchedRunLog, // JSONL append to ~/.dossier/runs.jsonl, gated by schedTelemetry (not cli's auditLog)
|
|
443
|
+
readDispatchLog, // read a unit's dispatch log, optionally from a byte offset
|
|
444
|
+
schedRunsLogPath, // ~/.dossier/runs.jsonl (re-export of @ai-dossier/core's runsLogPath)
|
|
445
|
+
schedTelemetryEnabled, // false when the operator set schedTelemetry:false in ~/.dossier/config.json
|
|
446
|
+
usageParserFor, // claude/opencode usage-parser selection by spawned binary
|
|
447
|
+
type SchedRunLogInput, // buildSchedRunLogEntry's input shape
|
|
448
|
+
dispatchLogPath, // <runsDir>/<unit>.log — shared by spawn (offset) and record (read)
|
|
449
|
+
fileSizeOrZero, // byte size of the dispatch log at spawn time, or 0
|
|
420
450
|
runBatchTick, // #523: one batch reconcile+refill pass; called by tick() after
|
|
421
451
|
// the issue pass — loads/saves state itself, holds no lock
|
|
422
452
|
// across the call
|
|
@@ -438,8 +468,12 @@ import {
|
|
|
438
468
|
All state functions are pure (state in, new state out — the worktree-pool pattern);
|
|
439
469
|
`SchedStore` is the only state-I/O boundary and every mutation runs under its lock. The
|
|
440
470
|
engine polls ground truth OUTSIDE the lock and mutates state under it, so a slow `gh`
|
|
441
|
-
call never blocks other sched commands.
|
|
442
|
-
fake agents and stub ground truth; no LLM calls anywhere.
|
|
471
|
+
call never blocks other sched commands. Almost all process I/O is injectable — the
|
|
472
|
+
tests spawn fake agents and stub ground truth; no LLM calls anywhere. The one exception
|
|
473
|
+
is `runs.jsonl` telemetry (#524): `appendSchedRunLog`/`readDispatchLog` read/write the
|
|
474
|
+
real filesystem directly rather than going through an injected dependency, with only
|
|
475
|
+
`EngineDeps.homeDir` (a path override, test-only) as a seam — see "runs.jsonl
|
|
476
|
+
telemetry" below.
|
|
443
477
|
|
|
444
478
|
## State layout
|
|
445
479
|
|
|
@@ -454,6 +488,58 @@ fake agents and stub ground truth; no LLM calls anywhere.
|
|
|
454
488
|
└── .sched-lock/ # cross-process directory mutex (pid; stolen from dead holders)
|
|
455
489
|
```
|
|
456
490
|
|
|
491
|
+
Sched also writes OUTSIDE this per-project tree: one `runs.jsonl` entry per completed
|
|
492
|
+
dispatch goes to `~/.dossier/runs.jsonl` (#524) — the same global, cross-project file
|
|
493
|
+
`cli`'s `ai-dossier run` already appends to, read by `ai-dossier sched stats` and
|
|
494
|
+
`ai-dossier history` alike. See "runs.jsonl telemetry" below.
|
|
495
|
+
|
|
496
|
+
### runs.jsonl telemetry (#524)
|
|
497
|
+
|
|
498
|
+
`packages/sched/src/run-log.ts` closes a gap where scheduler-dispatched agents never
|
|
499
|
+
appeared in `~/.dossier/runs.jsonl` — per-issue cost could not be baselined. One entry
|
|
500
|
+
is appended per completed dispatch (`recordDispatchRunLog` in `engine.ts`, called from
|
|
501
|
+
every place a dispatch's exit is first detected: the dead-pid rail, the
|
|
502
|
+
external-advance rail, a stall-timeout kill, and a dependents-blocked kill), sourced
|
|
503
|
+
from the agent's `modelUsage` map — never blended with the top-level `usage` block,
|
|
504
|
+
the fix for a ~43% fabricated-saving discrepancy the two blocks were found to produce.
|
|
505
|
+
|
|
506
|
+
The dispatch log (`runs/<unit>.log`) is per-UNIT and opened in append mode
|
|
507
|
+
(`createSpawnDeps`), so a redispatched unit's second agent writes its output AFTER the
|
|
508
|
+
first's, in the SAME file — `SlotEntry.log_offset_at_spawn` (schema 1.8.0, stamped
|
|
509
|
+
right before every spawn) is what lets `recordDispatchRunLog` read only the current
|
|
510
|
+
dispatch's own slice, so a redispatch's entry is never corrupted by concatenation
|
|
511
|
+
(claude) or double-counted (opencode) against a prior dispatch's output.
|
|
512
|
+
|
|
513
|
+
Every dispatch log opens with a `{"type":"sched-dispatch","ts":…,"cmd":[…]}` preamble
|
|
514
|
+
line written at spawn, followed by a `{"type":"sched-dispatch","event":"spawned","pid":…}`
|
|
515
|
+
marker once the child exists — so a log is never 0 bytes for a unit that ran, each
|
|
516
|
+
dispatch's slice is self-describing, and a slice can be joined to its `events.jsonl`
|
|
517
|
+
record by pid rather than by timestamp alone. Every `@ai-dossier/core` usage parser
|
|
518
|
+
skips that `type`.
|
|
519
|
+
|
|
520
|
+
**Why the default dispatch command streams.** `--output-format json` buffers the entire
|
|
521
|
+
session and writes ONE object at process exit. The batch pilot's six 0-byte logs are
|
|
522
|
+
exactly the six units advanced by ground truth (`external-advance`) and killed while
|
|
523
|
+
still alive — the one-shot write never happened. `--output-format stream-json --verbose`
|
|
524
|
+
fills the log per turn, and `parseAgentUsage` sums per-turn `assistant` usage when a
|
|
525
|
+
dispatch was killed before its final `result` event, so an interrupted run still reports
|
|
526
|
+
real tokens instead of null.
|
|
527
|
+
|
|
528
|
+
**Opt-out.** Writing is gated by `schedTelemetry` in `~/.dossier/config.json` (default
|
|
529
|
+
**on**), read directly here because `sched` cannot depend on `cli`. This is deliberately
|
|
530
|
+
NOT the CLI's `auditLog`, which scopes `ai-dossier run`'s own entries: honouring it would
|
|
531
|
+
silently leave an opted-out operator with zero scheduler cost visibility, and ignoring it
|
|
532
|
+
would just as silently widen a flag whose documented scope is the audit log. A skipped
|
|
533
|
+
write is journaled `run-log-skipped reason=telemetry-disabled`, so a missing entry is
|
|
534
|
+
never indistinguishable from a lost one.
|
|
535
|
+
|
|
536
|
+
**Reading the journal when a row is blank.** An entry whose token fields are all null is
|
|
537
|
+
journaled `run-log-no-usage` with a `reason` — `log-unreadable`, `log-empty`, or
|
|
538
|
+
`no-usage-events` — so a row of dashes in `sched stats` can be explained without
|
|
539
|
+
re-deriving it. A successful append is journaled `run-log-recorded`; a failed one,
|
|
540
|
+
`run-log-failed` with the target file. Dispatches ended by `sched abandon` release the
|
|
541
|
+
slot without recording, so they are not costed.
|
|
542
|
+
|
|
457
543
|
- **Crash safety**: a process killed between writes leaves the previous complete state,
|
|
458
544
|
never a partial file; restart resumes identically (proved by `restart.test.ts`) —
|
|
459
545
|
running slots with dead pids are re-detected and verified, slots left `assigned` by a
|
|
@@ -463,13 +549,14 @@ fake agents and stub ground truth; no LLM calls anywhere.
|
|
|
463
549
|
never a silent queue reset. `state.json` is deletable and rebuildable from GitHub,
|
|
464
550
|
which remains the system of record.
|
|
465
551
|
- **Schema**: state/config files from #460 (schema 1.0.0), #464 (1.1.0), #468 (1.2.0),
|
|
466
|
-
#472 (1.3.0), #500 (1.4.0)
|
|
467
|
-
`branch`/`last_head`/`pid_start`, slot `role` (inferred from the
|
|
468
|
-
with the persisted `phase` as a fallback — #500), entry
|
|
469
|
-
`failure_evidence`, batch `anchor`/`branch`/`run_id`/`eviction_groups
|
|
470
|
-
`fix_attempts`/`rebase_attempts`, state-level `last_pr_poll_at` backfill to
|
|
471
|
-
state-level `consecutive_suspect_dispatches`/`last_suspect_dispatch_unit`
|
|
472
|
-
`0`/`null` — #505,
|
|
552
|
+
#472 (1.3.0), #500 (1.4.0), #505 (1.5.0) and #504 (1.6.0) load and migrate to 1.7.0
|
|
553
|
+
automatically (slot `branch`/`last_head`/`pid_start`, slot `role` (inferred from the
|
|
554
|
+
unit's queue entry, with the persisted `phase` as a fallback — #500), entry
|
|
555
|
+
`pr`/`cleanup`/`failure_evidence`, batch `anchor`/`branch`/`run_id`/`eviction_groups`/
|
|
556
|
+
`evictions`/`fix_attempts`/`rebase_attempts`, state-level `last_pr_poll_at` backfill to
|
|
557
|
+
null, state-level `consecutive_suspect_dispatches`/`last_suspect_dispatch_unit`
|
|
558
|
+
backfill to `0`/`null` — #505, slot `gen`/`fenced_at` backfill to `0`/`null` — #504, and
|
|
559
|
+
slot `spawned_at`/`log_offset_at_spawn` backfill to `null`/`null` — #524).
|
|
473
560
|
- **`max_slots`** bounds live units (`assigned | running | recovering`); dependency
|
|
474
561
|
edges gate readiness — an issue with an unmerged dependency, and a batch behind an
|
|
475
562
|
unmerged batch, are never runnable.
|
package/dist/dispatch.d.ts
CHANGED
|
@@ -4,9 +4,12 @@
|
|
|
4
4
|
* last-progress timestamp tracked in state.json"; RFC-0001 §C.1 "spawns agent
|
|
5
5
|
* processes via the existing `run` machinery").
|
|
6
6
|
*
|
|
7
|
-
* The command is a template (default `claude -p --output-format json
|
|
8
|
-
* {model}` —
|
|
9
|
-
* cli/src/helpers.ts
|
|
7
|
+
* The command is a template (default `claude -p --output-format stream-json
|
|
8
|
+
* --verbose --model {model}` — `ai-dossier run`'s headless invocation in
|
|
9
|
+
* cli/src/helpers.ts uses the one-shot `json` form instead, because it
|
|
10
|
+
* captures stdout in-process from an agent it waits on; a detached dispatch
|
|
11
|
+
* needs incremental output, see {@link DEFAULT_DISPATCH_COMMAND}) with
|
|
12
|
+
* `{model}`/`{issue}` placeholders; the prompt
|
|
10
13
|
* travels on stdin exactly like the run machinery's headless path. Children
|
|
11
14
|
* spawn DETACHED and unref'd: an agent must survive a sched crash (RFC F.10 —
|
|
12
15
|
* restart reconciles by pid, it never owns the agent's lifetime).
|
|
@@ -18,7 +21,21 @@
|
|
|
18
21
|
import { type ModelTier, type SchedConfig } from './types';
|
|
19
22
|
/** Default tier → model mapping (claude aliases; override in config.json). */
|
|
20
23
|
export declare const DEFAULT_TIER_MODELS: Readonly<Record<ModelTier, string>>;
|
|
21
|
-
/**
|
|
24
|
+
/**
|
|
25
|
+
* Default headless agent command template (claude, the run machinery's first choice).
|
|
26
|
+
*
|
|
27
|
+
* **`stream-json`, not `json` (ai-dossier#524).** `--output-format json`
|
|
28
|
+
* buffers the entire session and writes ONE object at process exit, so the
|
|
29
|
+
* dispatch log stays 0 bytes for the whole run and only fills if the agent
|
|
30
|
+
* exits cleanly. The batch pilot's six 0-byte logs are exactly the six units
|
|
31
|
+
* that never reached a detected exit — they were advanced by ground truth
|
|
32
|
+
* (`external-advance`) while their agent was still alive and then killed, so
|
|
33
|
+
* the one-shot write never happened. `stream-json` emits an event per turn,
|
|
34
|
+
* so the log fills as the run proceeds and `parseAgentUsage` can recover
|
|
35
|
+
* per-turn tokens even from a dispatch that was killed mid-flight.
|
|
36
|
+
* `--verbose` is required by claude whenever `-p` is combined with
|
|
37
|
+
* `stream-json`.
|
|
38
|
+
*/
|
|
22
39
|
export declare const DEFAULT_DISPATCH_COMMAND: readonly string[];
|
|
23
40
|
/** opencode equivalent (the run machinery's second agent, #459). */
|
|
24
41
|
export declare const OPENCODE_DISPATCH_COMMAND: readonly string[];
|
|
@@ -247,6 +264,20 @@ export interface SpawnDeps {
|
|
|
247
264
|
}
|
|
248
265
|
/** `issue:464` → `issue-464` (filesystem-safe unit ids for log file names). */
|
|
249
266
|
export declare function unitLogName(unit: string): string;
|
|
267
|
+
/**
|
|
268
|
+
* Path to a unit's dispatch log (`<runsDir>/<unitLogName>.log`) — the single
|
|
269
|
+
* definition shared by `spawnAndRecord` (which stats it for
|
|
270
|
+
* `log_offset_at_spawn`, #524) and `recordDispatchRunLog` (which reads it),
|
|
271
|
+
* so the two can never compute different paths for the same unit.
|
|
272
|
+
*/
|
|
273
|
+
export declare function dispatchLogPath(runsDir: string, unit: string): string;
|
|
274
|
+
/**
|
|
275
|
+
* Byte size of `file`, or 0 when it does not exist yet (#524: the log's
|
|
276
|
+
* append boundary right before a spawn — `log_offset_at_spawn`). Any other
|
|
277
|
+
* read error also degrades to 0 rather than throwing, since a spawn must
|
|
278
|
+
* never fail over a stat call on a debug log.
|
|
279
|
+
*/
|
|
280
|
+
export declare function fileSizeOrZero(file: string): number;
|
|
250
281
|
/** Poll cadence bounds for `sleep`'s stop-check interval (engine loop). */
|
|
251
282
|
export declare const STOP_POLL_MIN_MS = 100;
|
|
252
283
|
export declare const STOP_POLL_MAX_MS = 1000;
|
package/dist/dispatch.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dispatch.d.ts","sourceRoot":"","sources":["../src/dispatch.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"dispatch.d.ts","sourceRoot":"","sources":["../src/dispatch.ts"],"names":[],"mappings":"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"}
|
package/dist/dispatch.js
CHANGED
|
@@ -5,9 +5,12 @@
|
|
|
5
5
|
* last-progress timestamp tracked in state.json"; RFC-0001 §C.1 "spawns agent
|
|
6
6
|
* processes via the existing `run` machinery").
|
|
7
7
|
*
|
|
8
|
-
* The command is a template (default `claude -p --output-format json
|
|
9
|
-
* {model}` —
|
|
10
|
-
* cli/src/helpers.ts
|
|
8
|
+
* The command is a template (default `claude -p --output-format stream-json
|
|
9
|
+
* --verbose --model {model}` — `ai-dossier run`'s headless invocation in
|
|
10
|
+
* cli/src/helpers.ts uses the one-shot `json` form instead, because it
|
|
11
|
+
* captures stdout in-process from an agent it waits on; a detached dispatch
|
|
12
|
+
* needs incremental output, see {@link DEFAULT_DISPATCH_COMMAND}) with
|
|
13
|
+
* `{model}`/`{issue}` placeholders; the prompt
|
|
11
14
|
* travels on stdin exactly like the run machinery's headless path. Children
|
|
12
15
|
* spawn DETACHED and unref'd: an agent must survive a sched crash (RFC F.10 —
|
|
13
16
|
* restart reconciles by pid, it never owns the agent's lifetime).
|
|
@@ -65,11 +68,14 @@ exports.buildBatchReportPrompt = buildBatchReportPrompt;
|
|
|
65
68
|
exports.escalateTier = escalateTier;
|
|
66
69
|
exports.reportTierFor = reportTierFor;
|
|
67
70
|
exports.unitLogName = unitLogName;
|
|
71
|
+
exports.dispatchLogPath = dispatchLogPath;
|
|
72
|
+
exports.fileSizeOrZero = fileSizeOrZero;
|
|
68
73
|
exports.procStartTime = procStartTime;
|
|
69
74
|
exports.createSpawnDeps = createSpawnDeps;
|
|
70
75
|
const node_child_process_1 = require("node:child_process");
|
|
71
76
|
const fs = __importStar(require("node:fs"));
|
|
72
77
|
const path = __importStar(require("node:path"));
|
|
78
|
+
const core_1 = require("@ai-dossier/core");
|
|
73
79
|
const project_1 = require("./project");
|
|
74
80
|
const types_1 = require("./types");
|
|
75
81
|
/** Default tier → model mapping (claude aliases; override in config.json). */
|
|
@@ -78,12 +84,27 @@ exports.DEFAULT_TIER_MODELS = {
|
|
|
78
84
|
mid: 'sonnet',
|
|
79
85
|
strong: 'opus',
|
|
80
86
|
};
|
|
81
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* Default headless agent command template (claude, the run machinery's first choice).
|
|
89
|
+
*
|
|
90
|
+
* **`stream-json`, not `json` (ai-dossier#524).** `--output-format json`
|
|
91
|
+
* buffers the entire session and writes ONE object at process exit, so the
|
|
92
|
+
* dispatch log stays 0 bytes for the whole run and only fills if the agent
|
|
93
|
+
* exits cleanly. The batch pilot's six 0-byte logs are exactly the six units
|
|
94
|
+
* that never reached a detected exit — they were advanced by ground truth
|
|
95
|
+
* (`external-advance`) while their agent was still alive and then killed, so
|
|
96
|
+
* the one-shot write never happened. `stream-json` emits an event per turn,
|
|
97
|
+
* so the log fills as the run proceeds and `parseAgentUsage` can recover
|
|
98
|
+
* per-turn tokens even from a dispatch that was killed mid-flight.
|
|
99
|
+
* `--verbose` is required by claude whenever `-p` is combined with
|
|
100
|
+
* `stream-json`.
|
|
101
|
+
*/
|
|
82
102
|
exports.DEFAULT_DISPATCH_COMMAND = [
|
|
83
103
|
'claude',
|
|
84
104
|
'-p',
|
|
85
105
|
'--output-format',
|
|
86
|
-
'json',
|
|
106
|
+
'stream-json',
|
|
107
|
+
'--verbose',
|
|
87
108
|
'--model',
|
|
88
109
|
'{model}',
|
|
89
110
|
];
|
|
@@ -476,6 +497,39 @@ function reportTierFor(recoveries) {
|
|
|
476
497
|
function unitLogName(unit) {
|
|
477
498
|
return (0, project_1.sanitizeSlug)(unit);
|
|
478
499
|
}
|
|
500
|
+
/**
|
|
501
|
+
* Path to a unit's dispatch log (`<runsDir>/<unitLogName>.log`) — the single
|
|
502
|
+
* definition shared by `spawnAndRecord` (which stats it for
|
|
503
|
+
* `log_offset_at_spawn`, #524) and `recordDispatchRunLog` (which reads it),
|
|
504
|
+
* so the two can never compute different paths for the same unit.
|
|
505
|
+
*/
|
|
506
|
+
function dispatchLogPath(runsDir, unit) {
|
|
507
|
+
return path.join(runsDir, `${unitLogName(unit)}.log`);
|
|
508
|
+
}
|
|
509
|
+
/**
|
|
510
|
+
* Byte size of `file`, or 0 when it does not exist yet (#524: the log's
|
|
511
|
+
* append boundary right before a spawn — `log_offset_at_spawn`). Any other
|
|
512
|
+
* read error also degrades to 0 rather than throwing, since a spawn must
|
|
513
|
+
* never fail over a stat call on a debug log.
|
|
514
|
+
*/
|
|
515
|
+
function fileSizeOrZero(file) {
|
|
516
|
+
try {
|
|
517
|
+
return fs.statSync(file).size;
|
|
518
|
+
}
|
|
519
|
+
catch (err) {
|
|
520
|
+
// ENOENT genuinely means "no prior bytes". Any OTHER stat error against a
|
|
521
|
+
// log that may already hold a previous dispatch's output silently
|
|
522
|
+
// re-enables the corruption the offset exists to prevent (claude:
|
|
523
|
+
// a prior dispatch's result attributed to this one; opencode: doubled
|
|
524
|
+
// tokens), so say so rather than degrading in silence.
|
|
525
|
+
const code = err.code;
|
|
526
|
+
if (code !== 'ENOENT') {
|
|
527
|
+
process.stderr.write(`⚠ sched: could not stat dispatch log ${file} (${code}); recording from offset 0 ` +
|
|
528
|
+
`may include a prior dispatch's output\n`);
|
|
529
|
+
}
|
|
530
|
+
return 0;
|
|
531
|
+
}
|
|
532
|
+
}
|
|
479
533
|
/** Poll cadence bounds for `sleep`'s stop-check interval (engine loop). */
|
|
480
534
|
exports.STOP_POLL_MIN_MS = 100;
|
|
481
535
|
exports.STOP_POLL_MAX_MS = 1000;
|
|
@@ -530,8 +584,32 @@ function createSpawnDeps(cwd) {
|
|
|
530
584
|
return {
|
|
531
585
|
spawn(cmd, prompt, logFile) {
|
|
532
586
|
fs.mkdirSync(path.dirname(logFile), { recursive: true, mode: 0o700 });
|
|
587
|
+
// Append, not truncate: `logFile` is per-UNIT (dispatchLogPath), so a
|
|
588
|
+
// redispatch's output lands after any prior dispatch's in the SAME
|
|
589
|
+
// file. `engine.ts`'s `recordDispatchRunLog` (#524) relies on
|
|
590
|
+
// `SlotEntry.log_offset_at_spawn` — stamped from this file's size right
|
|
591
|
+
// before this spawn — to read only the current dispatch's own slice.
|
|
533
592
|
const out = fs.openSync(logFile, 'a', 0o600);
|
|
534
593
|
try {
|
|
594
|
+
// #524: a log must never be 0 bytes for a unit that ran. The agent's
|
|
595
|
+
// own first write can be seconds (claude) or minutes away, and an
|
|
596
|
+
// agent killed before it writes anything would otherwise leave an
|
|
597
|
+
// empty file indistinguishable from "never spawned". This preamble
|
|
598
|
+
// makes the dispatch self-describing from t=0 and marks the boundary
|
|
599
|
+
// `log_offset_at_spawn` points at. Every parser in
|
|
600
|
+
// `@ai-dossier/core`'s agent-usage skips this `type`, so it never
|
|
601
|
+
// counts as agent output. Best-effort: a telemetry marker must not
|
|
602
|
+
// stop a dispatch, so a failed write is swallowed.
|
|
603
|
+
try {
|
|
604
|
+
fs.writeSync(out, `${JSON.stringify({ type: core_1.SCHED_DISPATCH_EVENT, ts: new Date().toISOString(), cmd })}\n`);
|
|
605
|
+
}
|
|
606
|
+
catch (err) {
|
|
607
|
+
// The fd opened fine, so the spawn below will NOT surface this — and
|
|
608
|
+
// a failed preamble write (ENOSPC, EDQUOT, EIO) leaves exactly the
|
|
609
|
+
// 0-byte log the preamble exists to prevent. Warn, matching
|
|
610
|
+
// `Journal.append`'s convention, rather than failing the dispatch.
|
|
611
|
+
process.stderr.write(`⚠ sched: could not write dispatch preamble to ${logFile}: ${err.message}\n`);
|
|
612
|
+
}
|
|
535
613
|
const child = (0, node_child_process_1.spawn)(cmd[0], cmd.slice(1), {
|
|
536
614
|
...(cwd ? { cwd } : {}),
|
|
537
615
|
detached: true,
|
|
@@ -548,6 +626,19 @@ function createSpawnDeps(cwd) {
|
|
|
548
626
|
child.stdin.write(prompt);
|
|
549
627
|
child.stdin.end();
|
|
550
628
|
}
|
|
629
|
+
// A second marker once the pid is known: `events.jsonl` keys
|
|
630
|
+
// everything on pid/slot, and without this a log slice can only be
|
|
631
|
+
// matched to its journal record by timestamp. Parsers skip it by
|
|
632
|
+
// `type`, same as the preamble.
|
|
633
|
+
if (child.pid !== undefined) {
|
|
634
|
+
try {
|
|
635
|
+
fs.writeSync(out, `${JSON.stringify({ type: core_1.SCHED_DISPATCH_EVENT, event: 'spawned', pid: child.pid, ts: new Date().toISOString() })}\n`);
|
|
636
|
+
}
|
|
637
|
+
catch {
|
|
638
|
+
// Best-effort correlation aid; the preamble already guaranteed
|
|
639
|
+
// the log is non-empty, and its catch above warns on real trouble.
|
|
640
|
+
}
|
|
641
|
+
}
|
|
551
642
|
child.unref();
|
|
552
643
|
if (child.pid === undefined) {
|
|
553
644
|
throw new Error(`failed to spawn '${cmd[0]}' — is it on PATH? (command: ${cmd.join(' ')})`);
|
package/dist/dispatch.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dispatch.js","sourceRoot":"","sources":["../src/dispatch.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"dispatch.js","sourceRoot":"","sources":["../src/dispatch.ts"],"names":[],"mappings":"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"}
|
package/dist/engine.d.ts
CHANGED
|
@@ -85,6 +85,14 @@ export interface EngineDeps {
|
|
|
85
85
|
* existed, journaling `fence-failed` so the gap is visible rather than silent.
|
|
86
86
|
*/
|
|
87
87
|
fencer?: RunFencer;
|
|
88
|
+
/**
|
|
89
|
+
* Home directory `runs.jsonl` telemetry (#524) is written under —
|
|
90
|
+
* `<homeDir>/.dossier/runs.jsonl`, the same file `cli`'s `ai-dossier run`
|
|
91
|
+
* writes to. Optional and defaults to `os.homedir()` (via
|
|
92
|
+
* `appendSchedRunLog`'s own default) when absent — override ONLY for
|
|
93
|
+
* tests, so they never touch the real machine's `~/.dossier`.
|
|
94
|
+
*/
|
|
95
|
+
homeDir?: string;
|
|
88
96
|
/**
|
|
89
97
|
* Exec for batch git/milestone-CLI operations (#523) — worktree claim, member
|
|
90
98
|
* commit-range recording, milestone posting, PR watch. Optional, and required
|
package/dist/engine.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"engine.d.ts","sourceRoot":"","sources":["../src/engine.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8DG;AAGH,OAAO,KAAK,EAAE,iBAAiB,EAAmB,MAAM,kBAAkB,CAAC;AAE3E,OAAO,
|
|
1
|
+
{"version":3,"file":"engine.d.ts","sourceRoot":"","sources":["../src/engine.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8DG;AAGH,OAAO,KAAK,EAAE,iBAAiB,EAAmB,MAAM,kBAAkB,CAAC;AAE3E,OAAO,EAUL,KAAK,SAAS,EAIf,MAAM,YAAY,CAAC;AACpB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACzC,OAAO,EACL,KAAK,WAAW,EAMjB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAe,KAAK,OAAO,EAAa,MAAM,WAAW,CAAC;AACjE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAC5C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAWxC,OAAO,EAML,KAAK,WAAW,EAOjB,MAAM,SAAS,CAAC;AAEjB,MAAM,WAAW,UAAU;IACzB,KAAK,EAAE,UAAU,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;IACjB,WAAW,EAAE,WAAW,CAAC;IACzB,SAAS,EAAE,SAAS,CAAC;IACrB,GAAG,EAAE,MAAM,IAAI,CAAC;IAChB,qEAAqE;IACrE,OAAO,EAAE,MAAM,CAAC;IAChB,iFAAiF;IACjF,YAAY,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,iBAAiB,CAAC,MAAM,CAAC,CAAC;IACtC;;;;OAIG;IACH,aAAa,CAAC,EAAE,iBAAiB,CAAC,UAAU,CAAC,CAAC;IAC9C;;;;;;OAMG;IACH,kBAAkB,CAAC,EAAE,iBAAiB,CAAC,eAAe,CAAC,CAAC;CACzD;AAED,qDAAqD;AACrD,MAAM,WAAW,UAAU;IACzB,8DAA8D;IAC9D,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,kFAAkF;IAClF,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,sDAAsD;IACtD,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,gFAAgF;IAChF,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,8DAA8D;IAC9D,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,6GAA6G;IAC7G,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,uHAAuH;IACvH,mBAAmB,EAAE,MAAM,EAAE,CAAC;IAC9B,kEAAkE;IAClE,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,qFAAqF;IACrF,aAAa,EAAE,MAAM,CAAC;IACtB,0DAA0D;IAC1D,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,2FAA2F;IAC3F,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,uEAAuE;IACvE,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB;;;;;OAKG;IACH,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,gDAAgD;IAChD,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB;AAugDD;;;;;;GAMG;AACH,wBAAgB,IAAI,CAAC,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,WAAW,GAAG,UAAU,CAoEtE;AAeD;;;;;;;GAOG;AACH,wBAAsB,OAAO,CAC3B,IAAI,EAAE,UAAU,EAChB,MAAM,EAAE,WAAW,EACnB,UAAU,EAAE,MAAM,OAAO,EACzB,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,GACpC,OAAO,CAAC,IAAI,CAAC,CAcf"}
|