@adhdev/daemon-core 0.9.82-rc.15 → 0.9.82-rc.151
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/dist/boot/process-hardening.d.ts +50 -0
- package/dist/chat/source-machine.d.ts +166 -0
- package/dist/chat/source-resolver.d.ts +104 -0
- package/dist/chat/subscription-updates.d.ts +1 -0
- package/dist/cli-adapter-types.d.ts +5 -1
- package/dist/cli-adapters/cli-script-runner.d.ts +117 -0
- package/dist/cli-adapters/cli-state-engine.d.ts +178 -0
- package/dist/cli-adapters/provider-cli-adapter.d.ts +104 -63
- package/dist/cli-adapters/provider-cli-parse.d.ts +4 -0
- package/dist/cli-adapters/provider-cli-shared.d.ts +27 -0
- package/dist/commands/handler.d.ts +66 -0
- package/dist/commands/router.d.ts +22 -0
- package/dist/config/chat-history.d.ts +5 -0
- package/dist/config/config.d.ts +5 -0
- package/dist/config/mesh-config.d.ts +68 -1
- package/dist/git/git-commands.d.ts +5 -1
- package/dist/index.d.ts +20 -6
- package/dist/index.js +13153 -3031
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13099 -3023
- package/dist/index.mjs.map +1 -1
- package/dist/installer.d.ts +1 -4
- package/dist/ipc/local-ipc-server.d.ts +91 -0
- package/dist/launch.d.ts +1 -1
- package/dist/logging/async-batch-writer.d.ts +10 -0
- package/dist/mesh/beads-db.d.ts +72 -0
- package/dist/mesh/contracts.d.ts +164 -0
- package/dist/mesh/coordinator-registry.d.ts +25 -0
- package/dist/mesh/mesh-active-work.d.ts +90 -0
- package/dist/mesh/mesh-events.d.ts +77 -5
- package/dist/mesh/mesh-fast-forward.d.ts +39 -0
- package/dist/mesh/mesh-host-ownership.d.ts +9 -0
- package/dist/mesh/mesh-ledger.d.ts +58 -1
- package/dist/mesh/mesh-refine-status.d.ts +26 -0
- package/dist/mesh/mesh-work-queue.d.ts +44 -5
- package/dist/mesh/preview-freshness.d.ts +18 -0
- package/dist/mesh/refine-config.d.ts +193 -0
- package/dist/mesh/worktree-bootstrap-config.d.ts +113 -0
- package/dist/providers/approval-utils.d.ts +9 -0
- package/dist/providers/cli-provider-instance.d.ts +6 -1
- package/dist/providers/contracts.d.ts +50 -5
- package/dist/providers/native-history/antigravity-cli-transcript.d.ts +100 -0
- package/dist/providers/native-history/claude-cli-transcript.d.ts +70 -0
- package/dist/providers/native-history/codex-cli-transcript.d.ts +73 -0
- package/dist/providers/native-history/index.d.ts +11 -0
- package/dist/providers/provider-loader.d.ts +19 -1
- package/dist/providers/read-chat-contract.d.ts +29 -0
- package/dist/providers/sdk/v1/builders/acp/detect-status.d.ts +68 -0
- package/dist/providers/sdk/v1/builders/cli/detect-status.d.ts +85 -0
- package/dist/providers/sdk/v1/builders/cli/parse-approval-squash.d.ts +59 -0
- package/dist/providers/sdk/v1/builders/cli/parse-approval.d.ts +64 -0
- package/dist/providers/sdk/v1/builders/cli/parse-session.d.ts +91 -0
- package/dist/providers/sdk/v1/builders/cli/visible-region.d.ts +42 -0
- package/dist/providers/sdk/v1/fixture-tooling/format.d.ts +126 -0
- package/dist/providers/sdk/v1/fixture-tooling/index.d.ts +8 -0
- package/dist/providers/sdk/v1/fixture-tooling/replay.d.ts +38 -0
- package/dist/providers/sdk/v1/index.d.ts +30 -0
- package/dist/providers/sdk/v1/sandbox/README-design.d.ts +193 -0
- package/dist/providers/sdk/v1/sandbox/require-whitelist.d.ts +74 -0
- package/dist/providers/sdk/v1/sandbox/script-runner.d.ts +98 -0
- package/dist/providers/sdk/v1/types/cli/index.d.ts +277 -0
- package/dist/providers/sdk/v1/types/common/index.d.ts +169 -0
- package/dist/providers/sdk/v1/validators/index.d.ts +5 -0
- package/dist/providers/sdk/v1/validators/manifest.d.ts +40 -0
- package/dist/providers/sdk/v1/validators/taint.d.ts +52 -0
- package/dist/providers/transcript-v2.d.ts +176 -0
- package/dist/repo-mesh-types.d.ts +67 -0
- package/dist/shared-types.d.ts +12 -0
- package/dist/status/reporter.d.ts +2 -0
- package/dist/status/snapshot.d.ts +1 -0
- package/dist/types.d.ts +5 -0
- package/package.json +6 -2
- package/src/boot/daemon-lifecycle.ts +17 -10
- package/src/boot/process-hardening.ts +89 -0
- package/src/chat/source-machine.ts +534 -0
- package/src/chat/source-resolver.ts +0 -0
- package/src/chat/subscription-updates.ts +14 -1
- package/src/cli-adapter-types.d.ts +1 -0
- package/src/cli-adapter-types.ts +3 -1
- package/src/cli-adapters/cli-script-runner.ts +421 -0
- package/src/cli-adapters/cli-state-engine.ts +1086 -0
- package/src/cli-adapters/provider-cli-adapter.d.ts +1 -1
- package/src/cli-adapters/provider-cli-adapter.ts +664 -1137
- package/src/cli-adapters/provider-cli-parse.d.ts +1 -0
- package/src/cli-adapters/provider-cli-parse.ts +13 -0
- package/src/cli-adapters/provider-cli-runtime.ts +3 -1
- package/src/cli-adapters/provider-cli-shared.d.ts +2 -0
- package/src/cli-adapters/provider-cli-shared.ts +57 -11
- package/src/cli-adapters/terminal-backends/ghostty-vt-backend.ts +17 -1
- package/src/cli-adapters/terminal-backends/xterm-backend.ts +8 -1
- package/src/commands/chat-commands.ts +1451 -52
- package/src/commands/cli-manager.ts +184 -3
- package/src/commands/handler.ts +547 -2
- package/src/commands/mesh-coordinator.ts +13 -143
- package/src/commands/router.ts +3273 -428
- package/src/config/chat-history.ts +79 -24
- package/src/config/config.ts +12 -0
- package/src/config/mesh-config.ts +249 -2
- package/src/config/recent-activity.ts +8 -2
- package/src/daemon/dev-cli-debug.ts +10 -1
- package/src/detection/ide-detector.ts +26 -16
- package/src/git/git-commands.ts +17 -5
- package/src/git/git-worktree.ts +8 -1
- package/src/index.ts +72 -5
- package/src/installer.d.ts +1 -1
- package/src/installer.ts +8 -6
- package/src/ipc/local-ipc-server.ts +278 -0
- package/src/launch.d.ts +1 -1
- package/src/launch.ts +37 -28
- package/src/logging/async-batch-writer.ts +55 -0
- package/src/logging/logger.ts +2 -1
- package/src/mesh/beads-db.ts +479 -0
- package/src/mesh/contracts.ts +329 -0
- package/src/mesh/coordinator-prompt.ts +40 -22
- package/src/mesh/coordinator-registry.ts +75 -0
- package/src/mesh/mesh-active-work.ts +437 -0
- package/src/mesh/mesh-events.ts +820 -61
- package/src/mesh/mesh-fast-forward.ts +430 -0
- package/src/mesh/mesh-host-ownership.ts +73 -0
- package/src/mesh/mesh-ledger.ts +457 -104
- package/src/mesh/mesh-refine-status.ts +144 -0
- package/src/mesh/mesh-work-queue.ts +216 -158
- package/src/mesh/preview-freshness.ts +118 -0
- package/src/mesh/refine-config.ts +366 -0
- package/src/mesh/worktree-bootstrap-config.ts +247 -0
- package/src/providers/approval-utils.ts +39 -5
- package/src/providers/chat-message-normalization.ts +4 -11
- package/src/providers/cli-provider-instance.ts +380 -44
- package/src/providers/contracts.ts +52 -5
- package/src/providers/ide-provider-instance.ts +17 -3
- package/src/providers/native-history/antigravity-cli-transcript.ts +643 -0
- package/src/providers/native-history/claude-cli-transcript.ts +396 -0
- package/src/providers/native-history/codex-cli-transcript.ts +419 -0
- package/src/providers/native-history/index.ts +23 -0
- package/src/providers/provider-loader.ts +294 -28
- package/src/providers/provider-schema.ts +31 -13
- package/src/providers/read-chat-contract.ts +76 -16
- package/src/providers/sdk/README.md +49 -0
- package/src/providers/sdk/v1/builders/acp/detect-status.ts +144 -0
- package/src/providers/sdk/v1/builders/cli/detect-status.ts +262 -0
- package/src/providers/sdk/v1/builders/cli/parse-approval-squash.ts +158 -0
- package/src/providers/sdk/v1/builders/cli/parse-approval.ts +245 -0
- package/src/providers/sdk/v1/builders/cli/parse-session.ts +276 -0
- package/src/providers/sdk/v1/builders/cli/visible-region.ts +143 -0
- package/src/providers/sdk/v1/fixture-tooling/format.ts +130 -0
- package/src/providers/sdk/v1/fixture-tooling/index.ts +22 -0
- package/src/providers/sdk/v1/fixture-tooling/replay.ts +352 -0
- package/src/providers/sdk/v1/index.ts +152 -0
- package/src/providers/sdk/v1/sandbox/README-design.ts +195 -0
- package/src/providers/sdk/v1/sandbox/require-whitelist.ts +472 -0
- package/src/providers/sdk/v1/sandbox/script-runner.ts +150 -0
- package/src/providers/sdk/v1/schemas/cli/provider.schema.json +444 -0
- package/src/providers/sdk/v1/schemas/primitives/acp-session-protocol-v1.json +131 -0
- package/src/providers/sdk/v1/schemas/primitives/native-history-codex-rollout-v1.json +66 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-approval-squash-v1.json +91 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-assistant-block-v1.json +91 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-cue-ordering-v1.json +47 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-dispatch-order-v1.json +32 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-footer-chrome-v1.json +42 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-index-finder-v1.json +27 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-modal-v1.json +119 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-prompt-marker-v1.json +45 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-session-id-extraction-v1.json +46 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-settled-prompt-v1.json +71 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-spinner-v1.json +83 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-transcript-pty-v1.json +83 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-visible-region-v1.json +57 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-welcome-screen-v1.json +35 -0
- package/src/providers/sdk/v1/types/cli/index.ts +365 -0
- package/src/providers/sdk/v1/types/common/index.ts +210 -0
- package/src/providers/sdk/v1/validators/index.ts +19 -0
- package/src/providers/sdk/v1/validators/manifest.ts +110 -0
- package/src/providers/sdk/v1/validators/taint.ts +309 -0
- package/src/providers/transcript-v2.ts +567 -0
- package/src/providers/version-archive.ts +38 -20
- package/src/repo-mesh-types.ts +77 -0
- package/src/shared-types.ts +9 -0
- package/src/status/builders.ts +23 -6
- package/src/status/reporter.ts +15 -0
- package/src/status/snapshot.ts +35 -11
- package/src/system/host-memory.ts +29 -12
- package/src/types.ts +5 -0
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* applyVisibleRegion
|
|
3
|
+
*
|
|
4
|
+
* Scopes the raw terminal text to the "visible region" declared by a
|
|
5
|
+
* `tui/visible-region@1` spec before handing it to detect-status and
|
|
6
|
+
* parse-approval matchers.
|
|
7
|
+
*
|
|
8
|
+
* Scope semantics:
|
|
9
|
+
* screen → full text unchanged (daemon already passes rendered screen)
|
|
10
|
+
* buffer → full text unchanged
|
|
11
|
+
* tail → last `tailChars` characters (default 4000)
|
|
12
|
+
* between-anchors → text between most recent (or first) top/bottom anchor
|
|
13
|
+
* regex matches; falls back to full text if anchors not found
|
|
14
|
+
*
|
|
15
|
+
* selectAnchor:
|
|
16
|
+
* "last" → use the LAST occurrence of the top anchor — useful for providers
|
|
17
|
+
* like Antigravity that redraw a separator + prompt on every turn;
|
|
18
|
+
* this excludes all scrollback above the current session frame.
|
|
19
|
+
* "first" → use the FIRST occurrence (default per schema).
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
// ─── Spec shape (mirrors tui-visible-region-v1.json) ───────────────────
|
|
23
|
+
|
|
24
|
+
interface AnchorPatternSpec {
|
|
25
|
+
pattern: string;
|
|
26
|
+
flags?: string;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
interface AnchorsSpec {
|
|
30
|
+
top?: AnchorPatternSpec;
|
|
31
|
+
bottom?: AnchorPatternSpec;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface VisibleRegionSpec {
|
|
35
|
+
$schema?: 'adhdev:tui/visible-region@1';
|
|
36
|
+
scope: 'screen' | 'tail' | 'buffer' | 'between-anchors';
|
|
37
|
+
tailChars?: number;
|
|
38
|
+
anchors?: AnchorsSpec;
|
|
39
|
+
selectAnchor?: 'first' | 'last';
|
|
40
|
+
stripCues?: string[];
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// ─── Helpers ───────────────────────────────────────────────────────────
|
|
44
|
+
|
|
45
|
+
function compile(re: string, flags?: string): RegExp {
|
|
46
|
+
try {
|
|
47
|
+
return new RegExp(re, flags ?? '');
|
|
48
|
+
} catch (e) {
|
|
49
|
+
throw new Error(`Invalid visible-region anchor regex /${re}/${flags ?? ''}: ${(e as Error).message}`);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Find all non-overlapping matches of `re` in `text`.
|
|
55
|
+
* Returns them in order of occurrence (earliest first).
|
|
56
|
+
*/
|
|
57
|
+
function findAllMatches(re: RegExp, text: string): RegExpExecArray[] {
|
|
58
|
+
const results: RegExpExecArray[] = [];
|
|
59
|
+
// Operate on a non-global copy with sticky-safe iteration to avoid
|
|
60
|
+
// mutating the caller's RegExp state.
|
|
61
|
+
const iter = new RegExp(re.source, re.flags.replace('g', '') + 'g');
|
|
62
|
+
let m: RegExpExecArray | null;
|
|
63
|
+
while ((m = iter.exec(text)) !== null) {
|
|
64
|
+
results.push(m);
|
|
65
|
+
// Advance past zero-width matches to prevent infinite loop.
|
|
66
|
+
if (m[0].length === 0) iter.lastIndex += 1;
|
|
67
|
+
}
|
|
68
|
+
return results;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
// ─── Public API ────────────────────────────────────────────────────────
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Apply the visible-region spec to `text` and return the scoped substring.
|
|
75
|
+
* Never throws on missing anchors — falls back to the full text instead.
|
|
76
|
+
*/
|
|
77
|
+
export function applyVisibleRegion(spec: VisibleRegionSpec, text: string): string {
|
|
78
|
+
if (!text) return text;
|
|
79
|
+
|
|
80
|
+
switch (spec.scope) {
|
|
81
|
+
case 'screen':
|
|
82
|
+
case 'buffer':
|
|
83
|
+
return text;
|
|
84
|
+
|
|
85
|
+
case 'tail': {
|
|
86
|
+
const limit = spec.tailChars ?? 4000;
|
|
87
|
+
if (text.length <= limit) return text;
|
|
88
|
+
return text.slice(-limit);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
case 'between-anchors': {
|
|
92
|
+
const anchors = spec.anchors;
|
|
93
|
+
if (!anchors?.top && !anchors?.bottom) return text;
|
|
94
|
+
|
|
95
|
+
const selectLast = (spec.selectAnchor ?? 'first') === 'last';
|
|
96
|
+
|
|
97
|
+
// ── Top anchor ──
|
|
98
|
+
let topEnd = 0; // default: start of text
|
|
99
|
+
if (anchors.top) {
|
|
100
|
+
const topRe = compile(anchors.top.pattern, anchors.top.flags);
|
|
101
|
+
const topMatches = findAllMatches(topRe, text);
|
|
102
|
+
if (topMatches.length === 0) {
|
|
103
|
+
// Top anchor not found — fall back to full text.
|
|
104
|
+
return text;
|
|
105
|
+
}
|
|
106
|
+
const chosen = selectLast
|
|
107
|
+
? topMatches[topMatches.length - 1]
|
|
108
|
+
: topMatches[0];
|
|
109
|
+
// Region starts just after the end of the top anchor match.
|
|
110
|
+
topEnd = chosen.index + chosen[0].length;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// ── Bottom anchor ──
|
|
114
|
+
let bottomStart = text.length; // default: end of text
|
|
115
|
+
if (anchors.bottom) {
|
|
116
|
+
const bottomRe = compile(anchors.bottom.pattern, anchors.bottom.flags);
|
|
117
|
+
// Only search the portion that comes AFTER the top anchor end so we
|
|
118
|
+
// always pick the immediately-following bottom anchor.
|
|
119
|
+
const searchFrom = topEnd;
|
|
120
|
+
const suffix = text.slice(searchFrom);
|
|
121
|
+
const bottomMatches = findAllMatches(bottomRe, suffix);
|
|
122
|
+
if (bottomMatches.length === 0) {
|
|
123
|
+
// Bottom anchor not found — fall back to full text.
|
|
124
|
+
return text;
|
|
125
|
+
}
|
|
126
|
+
const chosen = selectLast
|
|
127
|
+
? bottomMatches[bottomMatches.length - 1]
|
|
128
|
+
: bottomMatches[0];
|
|
129
|
+
bottomStart = searchFrom + chosen.index;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
if (topEnd >= bottomStart) {
|
|
133
|
+
// Degenerate / overlapping anchors — fall back to full text.
|
|
134
|
+
return text;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
return text.slice(topEnd, bottomStart);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
default:
|
|
141
|
+
return text;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Provider fixture format — v1.
|
|
3
|
+
*
|
|
4
|
+
* A fixture is two files committed alongside a provider:
|
|
5
|
+
*
|
|
6
|
+
* fixtures/<scenario>.pty — raw PTY byte capture (binary or text)
|
|
7
|
+
* fixtures/<scenario>.expected.json — expected handler outputs at one
|
|
8
|
+
* or more anchor frames
|
|
9
|
+
*
|
|
10
|
+
* Scenarios cover one concrete agent behaviour: cold start, prompt sent,
|
|
11
|
+
* generating with tool call, approval modal, idle after assistant complete,
|
|
12
|
+
* etc.
|
|
13
|
+
*
|
|
14
|
+
* The replay runner feeds the .pty bytes through the daemon's terminal
|
|
15
|
+
* emulator (TerminalTranscriptAccumulator) building up snapshots at each
|
|
16
|
+
* declared anchor, invokes the provider handlers, and compares results
|
|
17
|
+
* to the .expected.json shape.
|
|
18
|
+
*
|
|
19
|
+
* This file is the source of truth for the format. Schema mirror at
|
|
20
|
+
* sdk/v1/schemas/fixture-expected.schema.json.
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
import type {
|
|
24
|
+
CliApprovalModal,
|
|
25
|
+
CliChatMessage,
|
|
26
|
+
CliStatus,
|
|
27
|
+
} from '../types/cli/index.js';
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* The top-level shape of <scenario>.expected.json.
|
|
31
|
+
*
|
|
32
|
+
* `anchors` is an ordered list; each anchor declares a point in the
|
|
33
|
+
* PTY stream (by byte offset or by sentinel string) and the expected
|
|
34
|
+
* handler outputs at that point.
|
|
35
|
+
*/
|
|
36
|
+
export interface FixtureExpected {
|
|
37
|
+
/** Schema version. Currently always 1. */
|
|
38
|
+
version: 1;
|
|
39
|
+
/** Free-form human description of the scenario. */
|
|
40
|
+
description?: string;
|
|
41
|
+
/** Provider type this fixture is for. */
|
|
42
|
+
providerType: string;
|
|
43
|
+
/** Path (relative to the .expected.json file) of the corresponding .pty file. */
|
|
44
|
+
ptyFile: string;
|
|
45
|
+
/** Optional cols/rows the recording was captured under. Defaults to 80x24. */
|
|
46
|
+
terminal?: { cols: number; rows: number };
|
|
47
|
+
/** Anchor points. Order matters; bytes are replayed up to each anchor. */
|
|
48
|
+
anchors: FixtureAnchor[];
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export interface FixtureAnchor {
|
|
52
|
+
/** Human-readable identifier. Used in test reporter output. */
|
|
53
|
+
name: string;
|
|
54
|
+
/** Optional description. */
|
|
55
|
+
description?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Where to stop replaying bytes. Exactly one of:
|
|
58
|
+
* - `untilByte` — stop after the Nth raw byte
|
|
59
|
+
* - `untilSentinel` — stop the first time `sentinel` appears in the
|
|
60
|
+
* accumulated rendered screen text
|
|
61
|
+
*/
|
|
62
|
+
untilByte?: number;
|
|
63
|
+
untilSentinel?: string;
|
|
64
|
+
/**
|
|
65
|
+
* Expected handler outputs. All keys optional; the replay runner only
|
|
66
|
+
* checks the keys you provide.
|
|
67
|
+
*/
|
|
68
|
+
expect: {
|
|
69
|
+
detectStatus?: CliStatus | null;
|
|
70
|
+
parseApproval?: CliApprovalModal | null;
|
|
71
|
+
parseSession?: {
|
|
72
|
+
status?: CliStatus;
|
|
73
|
+
modal?: CliApprovalModal | null;
|
|
74
|
+
providerSessionId?: string;
|
|
75
|
+
/**
|
|
76
|
+
* Either an exact array (deep-equal) or a shape declaration that lets
|
|
77
|
+
* you match only the role/kind/content shape without pinning specific
|
|
78
|
+
* fields. Pin specific message-by-message when you care about content.
|
|
79
|
+
*/
|
|
80
|
+
messages?: CliChatMessage[] | MessageShape[];
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* Optional notes about why this anchor exists. Encouraged for
|
|
85
|
+
* regression-style fixtures so future maintainers know what bug the
|
|
86
|
+
* fixture catches.
|
|
87
|
+
*/
|
|
88
|
+
notes?: string;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* A shape declaration that matches a message by role/kind plus optional
|
|
93
|
+
* content substring or regex. Use this instead of an exact CliChatMessage
|
|
94
|
+
* when you do not want to pin exact text.
|
|
95
|
+
*/
|
|
96
|
+
export interface MessageShape {
|
|
97
|
+
role: CliChatMessage['role'];
|
|
98
|
+
kind?: CliChatMessage['kind'];
|
|
99
|
+
/** Substring the content must contain. Plain string only. */
|
|
100
|
+
contentIncludes?: string;
|
|
101
|
+
/** Regex the content must match. */
|
|
102
|
+
contentMatches?: { source: string; flags?: string };
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Result of replaying one anchor — what the handlers actually emitted.
|
|
107
|
+
* Used by the test runner to produce diff output.
|
|
108
|
+
*/
|
|
109
|
+
export interface AnchorReplayResult {
|
|
110
|
+
anchor: FixtureAnchor;
|
|
111
|
+
passes: boolean;
|
|
112
|
+
diffs: string[];
|
|
113
|
+
actual: {
|
|
114
|
+
detectStatus?: CliStatus | null;
|
|
115
|
+
parseApproval?: CliApprovalModal | null;
|
|
116
|
+
parseSession?: {
|
|
117
|
+
status: CliStatus;
|
|
118
|
+
modal: CliApprovalModal | null;
|
|
119
|
+
providerSessionId?: string;
|
|
120
|
+
messages: CliChatMessage[];
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
export interface FixtureReplayResult {
|
|
126
|
+
fixturePath: string;
|
|
127
|
+
expected: FixtureExpected;
|
|
128
|
+
perAnchor: AnchorReplayResult[];
|
|
129
|
+
overallPasses: boolean;
|
|
130
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Fixture tooling — public surface.
|
|
3
|
+
*
|
|
4
|
+
* Imported by `adhdev provider test` and by daemon-core's CI regression
|
|
5
|
+
* suite. Format types and the replay runner are stable v1.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
export type {
|
|
9
|
+
FixtureExpected,
|
|
10
|
+
FixtureAnchor,
|
|
11
|
+
MessageShape,
|
|
12
|
+
AnchorReplayResult,
|
|
13
|
+
FixtureReplayResult,
|
|
14
|
+
} from './format.js';
|
|
15
|
+
|
|
16
|
+
export {
|
|
17
|
+
loadFixtureExpected,
|
|
18
|
+
replayFixture,
|
|
19
|
+
formatReplayReport,
|
|
20
|
+
type CliProviderHandlers,
|
|
21
|
+
type ReplayOptions,
|
|
22
|
+
} from './replay.js';
|
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Fixture replay runner.
|
|
3
|
+
*
|
|
4
|
+
* Given a `.pty` byte capture and `.expected.json` declaration, replay the
|
|
5
|
+
* bytes through the daemon's TerminalTranscriptAccumulator, invoke the
|
|
6
|
+
* provider handlers at each anchor, and diff against expectations.
|
|
7
|
+
*
|
|
8
|
+
* Used by:
|
|
9
|
+
* - `adhdev provider test` (daemon-cloud CLI)
|
|
10
|
+
* - daemon-core CI suite for production-provider regression tests
|
|
11
|
+
* - external authors as `adhdev provider test ./`
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
import { readFileSync } from 'node:fs';
|
|
15
|
+
import { dirname, resolve } from 'node:path';
|
|
16
|
+
import {
|
|
17
|
+
TerminalTranscriptAccumulator,
|
|
18
|
+
buildCliScreenSnapshot,
|
|
19
|
+
type CliScriptInput as InternalCliScriptInput,
|
|
20
|
+
type CliStatusInput as InternalCliStatusInput,
|
|
21
|
+
type CliApprovalInput as InternalCliApprovalInput,
|
|
22
|
+
type ParsedSession as InternalParsedSession,
|
|
23
|
+
} from '../../../../cli-adapters/provider-cli-shared.js';
|
|
24
|
+
import type {
|
|
25
|
+
CliApprovalModal,
|
|
26
|
+
CliChatMessage,
|
|
27
|
+
CliStatus,
|
|
28
|
+
} from '../types/cli/index.js';
|
|
29
|
+
import type {
|
|
30
|
+
FixtureExpected,
|
|
31
|
+
FixtureAnchor,
|
|
32
|
+
AnchorReplayResult,
|
|
33
|
+
FixtureReplayResult,
|
|
34
|
+
MessageShape,
|
|
35
|
+
} from './format.js';
|
|
36
|
+
|
|
37
|
+
// ─── Provider handler shape (matches the contract) ─────────────────────
|
|
38
|
+
|
|
39
|
+
export interface CliProviderHandlers {
|
|
40
|
+
createState?: () => Record<string, unknown>;
|
|
41
|
+
parseSession: (state: unknown, input: InternalCliScriptInput) => InternalParsedSession;
|
|
42
|
+
detectStatus: (input: InternalCliStatusInput) => string | null;
|
|
43
|
+
parseApproval: (input: InternalCliApprovalInput) => { message: string; buttons: string[] } | null;
|
|
44
|
+
parseOutput?: (state: unknown, input: InternalCliScriptInput) => unknown;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface ReplayOptions {
|
|
48
|
+
/** Override accumulator dimensions. Defaults to the fixture's terminal block or 80x24. */
|
|
49
|
+
cols?: number;
|
|
50
|
+
rows?: number;
|
|
51
|
+
/** Provided manually (e.g. by tests). Defaults to wall-clock at replay start. */
|
|
52
|
+
spawnAt?: number;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// ─── Helpers — build the inputs the handlers expect ────────────────────
|
|
56
|
+
|
|
57
|
+
function makeStatusInput(buffer: string, rawBuffer: string): InternalCliStatusInput {
|
|
58
|
+
const tail = buffer.slice(-1000);
|
|
59
|
+
const screenText = buffer;
|
|
60
|
+
return {
|
|
61
|
+
tail,
|
|
62
|
+
screenText,
|
|
63
|
+
rawBuffer,
|
|
64
|
+
isWaitingForResponse: false,
|
|
65
|
+
screen: buildCliScreenSnapshot(screenText),
|
|
66
|
+
tailScreen: buildCliScreenSnapshot(tail),
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
function makeApprovalInput(buffer: string, rawBuffer: string): InternalCliApprovalInput {
|
|
71
|
+
const tail = buffer.slice(-1000);
|
|
72
|
+
const screenText = buffer;
|
|
73
|
+
return {
|
|
74
|
+
buffer,
|
|
75
|
+
screenText,
|
|
76
|
+
rawBuffer,
|
|
77
|
+
tail,
|
|
78
|
+
screen: buildCliScreenSnapshot(screenText),
|
|
79
|
+
bufferScreen: buildCliScreenSnapshot(buffer),
|
|
80
|
+
tailScreen: buildCliScreenSnapshot(tail),
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
function makeScriptInput(
|
|
85
|
+
buffer: string,
|
|
86
|
+
rawBuffer: string,
|
|
87
|
+
spawnAt: number,
|
|
88
|
+
): InternalCliScriptInput {
|
|
89
|
+
const recentBuffer = buffer.slice(-1000);
|
|
90
|
+
const screenText = buffer;
|
|
91
|
+
return {
|
|
92
|
+
buffer,
|
|
93
|
+
rawBuffer,
|
|
94
|
+
recentBuffer,
|
|
95
|
+
screenText,
|
|
96
|
+
screen: buildCliScreenSnapshot(screenText),
|
|
97
|
+
bufferScreen: buildCliScreenSnapshot(buffer),
|
|
98
|
+
recentScreen: buildCliScreenSnapshot(recentBuffer),
|
|
99
|
+
messages: [],
|
|
100
|
+
partialResponse: '',
|
|
101
|
+
isWaitingForResponse: false,
|
|
102
|
+
spawnAt,
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// ─── Anchor stop condition ─────────────────────────────────────────────
|
|
107
|
+
|
|
108
|
+
function nextStopIndex(anchor: FixtureAnchor, startIdx: number, raw: string): number {
|
|
109
|
+
if (typeof anchor.untilByte === 'number') {
|
|
110
|
+
return Math.min(anchor.untilByte, raw.length);
|
|
111
|
+
}
|
|
112
|
+
if (anchor.untilSentinel) {
|
|
113
|
+
const idx = raw.indexOf(anchor.untilSentinel, startIdx);
|
|
114
|
+
return idx < 0 ? raw.length : idx + anchor.untilSentinel.length;
|
|
115
|
+
}
|
|
116
|
+
// Default: replay everything.
|
|
117
|
+
return raw.length;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
// ─── Shape matching for messages ───────────────────────────────────────
|
|
121
|
+
|
|
122
|
+
function isShapeArray(input: unknown): input is MessageShape[] {
|
|
123
|
+
if (!Array.isArray(input) || input.length === 0) return false;
|
|
124
|
+
return input.every((m) => {
|
|
125
|
+
if (!m || typeof m !== 'object') return false;
|
|
126
|
+
const keys = Object.keys(m as object);
|
|
127
|
+
// Detect by absence of CliChatMessage-only required fields like `content` typed string.
|
|
128
|
+
return (
|
|
129
|
+
keys.some((k) => k === 'contentIncludes' || k === 'contentMatches') ||
|
|
130
|
+
(keys.includes('role') && !keys.includes('content'))
|
|
131
|
+
);
|
|
132
|
+
});
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
function messageMatchesShape(actual: CliChatMessage, shape: MessageShape): string | null {
|
|
136
|
+
if (actual.role !== shape.role) {
|
|
137
|
+
return `role mismatch: expected "${shape.role}", got "${actual.role}"`;
|
|
138
|
+
}
|
|
139
|
+
if (shape.kind && actual.kind && actual.kind !== shape.kind) {
|
|
140
|
+
return `kind mismatch: expected "${shape.kind}", got "${actual.kind}"`;
|
|
141
|
+
}
|
|
142
|
+
const content = typeof actual.content === 'string'
|
|
143
|
+
? actual.content
|
|
144
|
+
: JSON.stringify(actual.content);
|
|
145
|
+
if (shape.contentIncludes && !content.includes(shape.contentIncludes)) {
|
|
146
|
+
return `content missing substring "${shape.contentIncludes.slice(0, 40)}"`;
|
|
147
|
+
}
|
|
148
|
+
if (shape.contentMatches) {
|
|
149
|
+
const re = new RegExp(shape.contentMatches.source, shape.contentMatches.flags ?? '');
|
|
150
|
+
if (!re.test(content)) {
|
|
151
|
+
return `content does not match /${shape.contentMatches.source}/${shape.contentMatches.flags ?? ''}`;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
return null;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// ─── Diffing ───────────────────────────────────────────────────────────
|
|
158
|
+
|
|
159
|
+
function diffStatus(
|
|
160
|
+
label: string,
|
|
161
|
+
expected: unknown,
|
|
162
|
+
actual: unknown,
|
|
163
|
+
diffs: string[],
|
|
164
|
+
): void {
|
|
165
|
+
if (expected === undefined) return;
|
|
166
|
+
if (expected !== actual) {
|
|
167
|
+
diffs.push(`${label}: expected ${JSON.stringify(expected)}, got ${JSON.stringify(actual)}`);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
function diffModal(
|
|
172
|
+
label: string,
|
|
173
|
+
expected: CliApprovalModal | null | undefined,
|
|
174
|
+
actual: CliApprovalModal | null,
|
|
175
|
+
diffs: string[],
|
|
176
|
+
): void {
|
|
177
|
+
if (expected === undefined) return;
|
|
178
|
+
if (expected === null) {
|
|
179
|
+
if (actual !== null) {
|
|
180
|
+
diffs.push(`${label}: expected null modal, got ${JSON.stringify(actual)}`);
|
|
181
|
+
}
|
|
182
|
+
return;
|
|
183
|
+
}
|
|
184
|
+
if (actual === null) {
|
|
185
|
+
diffs.push(`${label}: expected modal, got null`);
|
|
186
|
+
return;
|
|
187
|
+
}
|
|
188
|
+
if (expected.message !== actual.message) {
|
|
189
|
+
diffs.push(`${label}.message: expected "${expected.message}", got "${actual.message}"`);
|
|
190
|
+
}
|
|
191
|
+
if (expected.buttons.length !== actual.buttons.length) {
|
|
192
|
+
diffs.push(`${label}.buttons.length: expected ${expected.buttons.length}, got ${actual.buttons.length}`);
|
|
193
|
+
} else {
|
|
194
|
+
for (let i = 0; i < expected.buttons.length; i += 1) {
|
|
195
|
+
if (expected.buttons[i] !== actual.buttons[i]) {
|
|
196
|
+
diffs.push(`${label}.buttons[${i}]: expected "${expected.buttons[i]}", got "${actual.buttons[i]}"`);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
function diffMessages(
|
|
203
|
+
label: string,
|
|
204
|
+
expected: CliChatMessage[] | MessageShape[] | undefined,
|
|
205
|
+
actual: CliChatMessage[],
|
|
206
|
+
diffs: string[],
|
|
207
|
+
): void {
|
|
208
|
+
if (expected === undefined) return;
|
|
209
|
+
if (expected.length !== actual.length) {
|
|
210
|
+
diffs.push(`${label}.length: expected ${expected.length}, got ${actual.length}`);
|
|
211
|
+
return;
|
|
212
|
+
}
|
|
213
|
+
if (isShapeArray(expected)) {
|
|
214
|
+
for (let i = 0; i < expected.length; i += 1) {
|
|
215
|
+
const reason = messageMatchesShape(actual[i], expected[i] as MessageShape);
|
|
216
|
+
if (reason) diffs.push(`${label}[${i}]: ${reason}`);
|
|
217
|
+
}
|
|
218
|
+
} else {
|
|
219
|
+
for (let i = 0; i < expected.length; i += 1) {
|
|
220
|
+
const e = expected[i] as CliChatMessage;
|
|
221
|
+
const a = actual[i];
|
|
222
|
+
if (e.role !== a.role) diffs.push(`${label}[${i}].role: ${e.role} vs ${a.role}`);
|
|
223
|
+
const ec = typeof e.content === 'string' ? e.content : JSON.stringify(e.content);
|
|
224
|
+
const ac = typeof a.content === 'string' ? a.content : JSON.stringify(a.content);
|
|
225
|
+
if (ec !== ac) diffs.push(`${label}[${i}].content: differs`);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
// ─── Replay one anchor ─────────────────────────────────────────────────
|
|
231
|
+
|
|
232
|
+
function replayAnchor(
|
|
233
|
+
raw: string,
|
|
234
|
+
startIdx: number,
|
|
235
|
+
acc: TerminalTranscriptAccumulator,
|
|
236
|
+
anchor: FixtureAnchor,
|
|
237
|
+
handlers: CliProviderHandlers,
|
|
238
|
+
spawnAt: number,
|
|
239
|
+
): { result: AnchorReplayResult; nextIdx: number } {
|
|
240
|
+
const stop = nextStopIndex(anchor, startIdx, raw);
|
|
241
|
+
const chunk = raw.slice(startIdx, stop);
|
|
242
|
+
const buffer = acc.append(chunk);
|
|
243
|
+
const rawBufferSnapshot = raw.slice(0, stop);
|
|
244
|
+
|
|
245
|
+
const detect = handlers.detectStatus(makeStatusInput(buffer, rawBufferSnapshot));
|
|
246
|
+
const modal = handlers.parseApproval(makeApprovalInput(buffer, rawBufferSnapshot));
|
|
247
|
+
const state = handlers.createState ? handlers.createState() : undefined;
|
|
248
|
+
const session = handlers.parseSession(state, makeScriptInput(buffer, rawBufferSnapshot, spawnAt));
|
|
249
|
+
|
|
250
|
+
const diffs: string[] = [];
|
|
251
|
+
diffStatus('detectStatus', anchor.expect.detectStatus, detect as CliStatus | null, diffs);
|
|
252
|
+
diffModal('parseApproval', anchor.expect.parseApproval, modal, diffs);
|
|
253
|
+
if (anchor.expect.parseSession) {
|
|
254
|
+
diffStatus('parseSession.status', anchor.expect.parseSession.status, session.status as CliStatus, diffs);
|
|
255
|
+
diffModal('parseSession.modal', anchor.expect.parseSession.modal, session.modal as CliApprovalModal | null, diffs);
|
|
256
|
+
if (anchor.expect.parseSession.providerSessionId !== undefined) {
|
|
257
|
+
diffStatus(
|
|
258
|
+
'parseSession.providerSessionId',
|
|
259
|
+
anchor.expect.parseSession.providerSessionId,
|
|
260
|
+
session.providerSessionId,
|
|
261
|
+
diffs,
|
|
262
|
+
);
|
|
263
|
+
}
|
|
264
|
+
diffMessages(
|
|
265
|
+
'parseSession.messages',
|
|
266
|
+
anchor.expect.parseSession.messages,
|
|
267
|
+
session.messages as CliChatMessage[],
|
|
268
|
+
diffs,
|
|
269
|
+
);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
return {
|
|
273
|
+
result: {
|
|
274
|
+
anchor,
|
|
275
|
+
passes: diffs.length === 0,
|
|
276
|
+
diffs,
|
|
277
|
+
actual: {
|
|
278
|
+
detectStatus: detect as CliStatus | null,
|
|
279
|
+
parseApproval: modal,
|
|
280
|
+
parseSession: {
|
|
281
|
+
status: session.status as CliStatus,
|
|
282
|
+
modal: session.modal as CliApprovalModal | null,
|
|
283
|
+
providerSessionId: session.providerSessionId,
|
|
284
|
+
messages: session.messages as CliChatMessage[],
|
|
285
|
+
},
|
|
286
|
+
},
|
|
287
|
+
},
|
|
288
|
+
nextIdx: stop,
|
|
289
|
+
};
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
// ─── Public API ────────────────────────────────────────────────────────
|
|
293
|
+
|
|
294
|
+
export function loadFixtureExpected(expectedPath: string): FixtureExpected {
|
|
295
|
+
const raw = readFileSync(expectedPath, 'utf-8');
|
|
296
|
+
const parsed = JSON.parse(raw) as FixtureExpected;
|
|
297
|
+
if (parsed.version !== 1) {
|
|
298
|
+
throw new Error(`Fixture format version ${parsed.version} not supported (this runner is v1).`);
|
|
299
|
+
}
|
|
300
|
+
if (!parsed.providerType) throw new Error('Fixture missing providerType');
|
|
301
|
+
if (!parsed.ptyFile) throw new Error('Fixture missing ptyFile');
|
|
302
|
+
if (!Array.isArray(parsed.anchors) || parsed.anchors.length === 0) {
|
|
303
|
+
throw new Error('Fixture must declare at least one anchor');
|
|
304
|
+
}
|
|
305
|
+
return parsed;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
export function replayFixture(
|
|
309
|
+
expectedPath: string,
|
|
310
|
+
handlers: CliProviderHandlers,
|
|
311
|
+
options: ReplayOptions = {},
|
|
312
|
+
): FixtureReplayResult {
|
|
313
|
+
const expected = loadFixtureExpected(expectedPath);
|
|
314
|
+
const ptyFullPath = resolve(dirname(expectedPath), expected.ptyFile);
|
|
315
|
+
const rawBytes = readFileSync(ptyFullPath, 'utf-8');
|
|
316
|
+
const acc = new TerminalTranscriptAccumulator();
|
|
317
|
+
const spawnAt = options.spawnAt ?? Date.now();
|
|
318
|
+
let idx = 0;
|
|
319
|
+
const perAnchor: AnchorReplayResult[] = [];
|
|
320
|
+
for (const anchor of expected.anchors) {
|
|
321
|
+
const { result, nextIdx } = replayAnchor(rawBytes, idx, acc, anchor, handlers, spawnAt);
|
|
322
|
+
perAnchor.push(result);
|
|
323
|
+
idx = nextIdx;
|
|
324
|
+
}
|
|
325
|
+
return {
|
|
326
|
+
fixturePath: expectedPath,
|
|
327
|
+
expected,
|
|
328
|
+
perAnchor,
|
|
329
|
+
overallPasses: perAnchor.every((a) => a.passes),
|
|
330
|
+
};
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
/**
|
|
334
|
+
* Format a result as a human-readable report. Returns the multi-line string;
|
|
335
|
+
* caller decides whether to print or assert.
|
|
336
|
+
*/
|
|
337
|
+
export function formatReplayReport(result: FixtureReplayResult): string {
|
|
338
|
+
const lines: string[] = [];
|
|
339
|
+
lines.push(`Fixture: ${result.fixturePath}`);
|
|
340
|
+
lines.push(`Provider: ${result.expected.providerType}`);
|
|
341
|
+
lines.push(`Anchors: ${result.perAnchor.length}`);
|
|
342
|
+
for (const a of result.perAnchor) {
|
|
343
|
+
if (a.passes) {
|
|
344
|
+
lines.push(` ✓ ${a.anchor.name}`);
|
|
345
|
+
} else {
|
|
346
|
+
lines.push(` ✗ ${a.anchor.name}`);
|
|
347
|
+
for (const d of a.diffs) lines.push(` ${d}`);
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
lines.push(result.overallPasses ? 'OVERALL: PASS' : 'OVERALL: FAIL');
|
|
351
|
+
return lines.join('\n');
|
|
352
|
+
}
|