@nemus-cli/nemus 0.3.0 → 0.3.2

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.
@@ -1,6 +1,52 @@
1
- import { execFileSync } from 'child_process';
1
+ import { execFileSync, spawn } from 'child_process';
2
2
  import { getPrimaryAgent } from './agent-config';
3
3
 
4
+ /**
5
+ * Run a child to completion, capturing stdout, with stdin set to /dev/null.
6
+ *
7
+ * The stdin part is load-bearing: agents like `pi` block waiting on stdin if
8
+ * it's an open pipe (the default for execFile), which made the judge hang until
9
+ * the timeout regardless of prompt size or model speed. `stdio: ['ignore', …]`
10
+ * gives the child an immediate EOF, exactly like a non-interactive shell.
11
+ */
12
+ export function spawnCollect(
13
+ cmd: string,
14
+ args: string[],
15
+ opts: { timeout: number; maxBuffer: number },
16
+ ): Promise<string> {
17
+ return new Promise((resolve, reject) => {
18
+ const child = spawn(cmd, args, {
19
+ stdio: ['ignore', 'pipe', 'pipe'],
20
+ timeout: opts.timeout,
21
+ killSignal: 'SIGKILL',
22
+ });
23
+ // Decode as UTF-8 at the stream boundary so a multi-byte char split across
24
+ // two chunks isn't corrupted (which would break JSON.parse downstream).
25
+ child.stdout.setEncoding('utf8');
26
+ child.stderr.setEncoding('utf8');
27
+ let stdout = '';
28
+ let stderr = '';
29
+ let overflow = false;
30
+ child.stdout.on('data', (d) => {
31
+ stdout += d;
32
+ if (stdout.length > opts.maxBuffer) {
33
+ overflow = true;
34
+ child.kill('SIGKILL');
35
+ }
36
+ });
37
+ child.stderr.on('data', (d) => {
38
+ stderr += d;
39
+ });
40
+ child.on('error', (e) => reject(e));
41
+ child.on('close', (code, signal) => {
42
+ if (overflow) return reject(Object.assign(new Error('maxBuffer exceeded'), { stdout, stderr }));
43
+ if (signal) return reject(Object.assign(new Error(`killed by ${signal}`), { killed: true, signal, stdout, stderr }));
44
+ if (code !== 0) return reject(Object.assign(new Error(`exit ${code}`), { code, stdout, stderr }));
45
+ resolve(stdout);
46
+ });
47
+ });
48
+ }
49
+
4
50
  /**
5
51
  * Run the user's configured coding agent headlessly as an "LLM-as-a-judge":
6
52
  * feed it a prompt, get back a parsed JSON object. This reuses whatever agent
@@ -14,15 +60,97 @@ import { getPrimaryAgent } from './agent-config';
14
60
  export interface JudgeOptions {
15
61
  /** JSON schema string passed to `claude --json-schema` (ignored by others). */
16
62
  schema?: string;
63
+ /** Model override (`--model`), agent-native pattern/id. */
64
+ model?: string;
65
+ /** Thinking level (`--thinking`, pi only): off|minimal|low|medium|high|xhigh|max. */
66
+ thinking?: string;
17
67
  timeoutMs?: number;
18
68
  maxBuffer?: number;
19
- /** Injected for tests. Defaults to the real child_process runner. */
69
+ /** Injected for tests. Defaults to the real (blocking) child_process runner. */
20
70
  exec?: (cmd: string, args: string[], opts: { timeout: number; maxBuffer: number }) => string;
71
+ /** Injected for tests. Async runner used by the non-blocking variants. */
72
+ execAsync?: (cmd: string, args: string[], opts: { timeout: number; maxBuffer: number }) => Promise<string>;
21
73
  /** Injected for tests. Defaults to the configured primary agent. */
22
74
  agentType?: 'claude' | 'pi' | 'opencode' | 'codex' | 'gemini';
23
75
  }
24
76
 
25
- const DEFAULT_TIMEOUT_MS = 180_000; // judging N transcripts is heavier than extraction
77
+ export type JudgeAgentType = NonNullable<JudgeOptions['agentType']>;
78
+
79
+ export interface AgentAttempt {
80
+ cmd: string;
81
+ args: string[];
82
+ }
83
+
84
+ export interface AttemptOptions {
85
+ schema?: string;
86
+ model?: string;
87
+ thinking?: string;
88
+ }
89
+
90
+ /**
91
+ * Default thinking level for the judge. The judge is a mechanical transform
92
+ * (facts → recommendations), not deep reasoning, so a heavy default like Opus
93
+ * @ medium thinking just makes it slow. `low` keeps pi fast; override per-run.
94
+ */
95
+ export const DEFAULT_JUDGE_THINKING = 'low';
96
+
97
+ /**
98
+ * The ordered invocation attempts for an agent (preferred → fallback), as pure
99
+ * data so both the sync and async runners share ONE flag ladder (and it's
100
+ * unit-testable without spawning anything). `--model` applies to all; pi also
101
+ * takes `--thinking` (the speed lever); both are ignored where unsupported.
102
+ */
103
+ export function agentAttempts(agentType: JudgeAgentType, prompt: string, opts: AttemptOptions = {}): AgentAttempt[] {
104
+ const { schema, model, thinking } = opts;
105
+ if (agentType === 'claude') {
106
+ const preferred = ['-p', prompt, '--output-format', 'json', '--bare', '--strict-mcp-config', '--disable-slash-commands'];
107
+ if (model) preferred.push('--model', model);
108
+ if (schema) preferred.push('--json-schema', schema);
109
+ // Older claude may reject the newer flags — fall back to the plainest form.
110
+ const plain = ['-p', prompt];
111
+ if (model) plain.push('--model', model);
112
+ return [{ cmd: 'claude', args: preferred }, { cmd: 'claude', args: plain }];
113
+ }
114
+ if (agentType === 'opencode') {
115
+ const args = ['run', prompt];
116
+ if (model) args.push('--model', model);
117
+ return [{ cmd: 'opencode', args }];
118
+ }
119
+ // pi (and any other): run as lean as possible so a bloated env can't hang it.
120
+ const piLean = ['--no-extensions', '--no-skills', '--no-prompt-templates', '--no-context-files', '--no-tools', '--no-session'];
121
+ const modelArgs = model ? ['--model', model] : [];
122
+ const tune = thinking ? [...modelArgs, '--thinking', thinking] : modelArgs;
123
+ // Fallback keeps the stable --model but DROPS --thinking: --thinking is the
124
+ // newest flag and the most likely reason an older pi rejects the first
125
+ // attempt, so the safety net must not carry it (else both attempts fail).
126
+ return [
127
+ { cmd: 'pi', args: [...piLean, ...tune, '-p', prompt] },
128
+ { cmd: 'pi', args: [...modelArgs, '-p', prompt] },
129
+ ];
130
+ }
131
+
132
+ /** Resolve the attempt options for a run, applying the pi thinking default. */
133
+ function attemptOptions(agentType: JudgeAgentType, opts: JudgeOptions): AttemptOptions {
134
+ return {
135
+ schema: opts.schema,
136
+ model: opts.model,
137
+ thinking: opts.thinking ?? (agentType === 'pi' ? DEFAULT_JUDGE_THINKING : undefined),
138
+ };
139
+ }
140
+
141
+ function wrapJudgeError(err: any, agentType: string): Error {
142
+ // A timeout is the common failure (big prompt + slow local model), so make it
143
+ // actionable instead of surfacing a raw `spawn … ETIMEDOUT`.
144
+ if (err?.killed || err?.code === 'ETIMEDOUT' || err?.signal === 'SIGTERM' || /ETIMEDOUT/.test(String(err?.message ?? ''))) {
145
+ return new Error(
146
+ `agent judge (${agentType}) timed out. Try a smaller --limit, a faster agent, or raise the cap with NEMUS_JUDGE_TIMEOUT_MS.`,
147
+ );
148
+ }
149
+ const detail = (err?.stderr || err?.stdout || err?.message || 'unknown error').toString().trim().slice(0, 500);
150
+ return new Error(`agent judge failed (${agentType}): ${detail}`);
151
+ }
152
+
153
+ const DEFAULT_TIMEOUT_MS = 300_000; // judging N transcripts is heavier than extraction; a big prompt + slow model can run minutes
26
154
  const DEFAULT_MAX_BUFFER = 32 * 1024 * 1024;
27
155
 
28
156
  /**
@@ -36,35 +164,43 @@ export function runAgentRaw(prompt: string, opts: JudgeOptions = {}): string {
36
164
  const maxBuffer = opts.maxBuffer ?? DEFAULT_MAX_BUFFER;
37
165
  const exec =
38
166
  opts.exec ??
39
- ((cmd, args, o) => execFileSync(cmd, args, { encoding: 'utf-8', timeout: o.timeout, maxBuffer: o.maxBuffer }));
167
+ // `input: ''` closes the child's stdin (EOF) so a stdin-reading agent (pi)
168
+ // can't hang the synchronous call — the sync twin of spawnCollect's fix.
169
+ ((cmd, args, o) => execFileSync(cmd, args, { encoding: 'utf-8', input: '', timeout: o.timeout, maxBuffer: o.maxBuffer }));
40
170
 
41
- const attempt = (cmd: string, args: string[]) => exec(cmd, args, { timeout, maxBuffer });
42
-
43
- try {
44
- if (agentType === 'claude') {
45
- const preferred = ['-p', prompt, '--output-format', 'json', '--bare', '--strict-mcp-config', '--disable-slash-commands'];
46
- if (opts.schema) preferred.push('--json-schema', opts.schema);
47
- try {
48
- return attempt('claude', preferred);
49
- } catch {
50
- // Older claude may reject the newer flags — fall back to the plainest form.
51
- return attempt('claude', ['-p', prompt]);
52
- }
53
- }
54
- if (agentType === 'opencode') {
55
- return attempt('opencode', ['run', prompt]);
171
+ const attempts = agentAttempts(agentType, prompt, attemptOptions(agentType, opts));
172
+ let lastErr: any;
173
+ for (const a of attempts) {
174
+ try {
175
+ return exec(a.cmd, a.args, { timeout, maxBuffer });
176
+ } catch (err) {
177
+ lastErr = err; // try the next (fallback) form
56
178
  }
57
- // pi (and any other): run as lean as possible so a bloated env can't hang it.
58
- const piLean = ['--no-extensions', '--no-skills', '--no-prompt-templates', '--no-context-files', '--no-tools', '--no-session'];
179
+ }
180
+ throw wrapJudgeError(lastErr, agentType);
181
+ }
182
+
183
+ /**
184
+ * Non-blocking twin of {@link runAgentRaw}. Uses `execFile` (async) so the
185
+ * caller's event loop stays free — letting a spinner/progress UI animate while
186
+ * the judge (which can take minutes) runs. Prefer this in interactive commands.
187
+ */
188
+ export async function runAgentRawAsync(prompt: string, opts: JudgeOptions = {}): Promise<string> {
189
+ const agentType = opts.agentType ?? getPrimaryAgent().type;
190
+ const timeout = opts.timeoutMs ?? DEFAULT_TIMEOUT_MS;
191
+ const maxBuffer = opts.maxBuffer ?? DEFAULT_MAX_BUFFER;
192
+ const exec = opts.execAsync ?? ((cmd, args, o) => spawnCollect(cmd, args, o));
193
+
194
+ const attempts = agentAttempts(agentType, prompt, attemptOptions(agentType, opts));
195
+ let lastErr: any;
196
+ for (const a of attempts) {
59
197
  try {
60
- return attempt('pi', [...piLean, '-p', prompt]);
61
- } catch {
62
- return attempt('pi', ['-p', prompt]);
198
+ return await exec(a.cmd, a.args, { timeout, maxBuffer });
199
+ } catch (err) {
200
+ lastErr = err; // try the next (fallback) form
63
201
  }
64
- } catch (err: any) {
65
- const detail = (err?.stderr || err?.stdout || err?.message || 'unknown error').toString().trim().slice(0, 500);
66
- throw new Error(`agent judge failed (${agentType}): ${detail}`);
67
202
  }
203
+ throw wrapJudgeError(lastErr, agentType);
68
204
  }
69
205
 
70
206
  /**
@@ -77,6 +213,12 @@ export function runAgentJson(prompt: string, opts: JudgeOptions = {}): unknown {
77
213
  return parseAgentJson(raw);
78
214
  }
79
215
 
216
+ /** Non-blocking twin of {@link runAgentJson}. */
217
+ export async function runAgentJsonAsync(prompt: string, opts: JudgeOptions = {}): Promise<unknown> {
218
+ const raw = await runAgentRawAsync(prompt, opts);
219
+ return parseAgentJson(raw);
220
+ }
221
+
80
222
  /** Extract a JSON object from an agent's raw stdout. Exported for tests. */
81
223
  export function parseAgentJson(raw: string): unknown {
82
224
  let text = raw.trim();
@@ -0,0 +1,126 @@
1
+ import { describe, it, expect } from 'vitest';
2
+ import { normalizeErrorSignature, analyzeCorpus, buildAnalysisPrompt } from './reflect-analyze';
3
+ import { ReflectionCorpus, isCorrectionPrompt } from './reflect';
4
+
5
+ describe('normalizeErrorSignature', () => {
6
+ it('collapses paths, numbers, and hashes so variants cluster', () => {
7
+ const a = normalizeErrorSignature('fatal: not a git repository (or any parent up to /Users/alice/work/repo)');
8
+ const b = normalizeErrorSignature('fatal: not a git repository (or any parent up to /home/bob/src/thing)');
9
+ expect(a).toBe(b);
10
+ expect(a).toContain('<path>');
11
+
12
+ expect(normalizeErrorSignature('exit code 137 after 4200ms')).toBe(
13
+ normalizeErrorSignature('exit code 2 after 9ms'),
14
+ );
15
+ expect(normalizeErrorSignature('object abc1234def not found')).toBe(
16
+ normalizeErrorSignature('object 0f9e8d7c6b not found'),
17
+ );
18
+ });
19
+
20
+ it('is bounded and safe on empty input', () => {
21
+ expect(normalizeErrorSignature('')).toBe('');
22
+ expect(normalizeErrorSignature('x'.repeat(500)).length).toBeLessThanOrEqual(100);
23
+ });
24
+ });
25
+
26
+ describe('isCorrectionPrompt', () => {
27
+ it('flags corrections, not normal instructions', () => {
28
+ expect(isCorrectionPrompt('no, that is wrong — revert it')).toBe(true);
29
+ expect(isCorrectionPrompt('actually use the other repo instead')).toBe(true);
30
+ expect(isCorrectionPrompt('you forgot to run the tests')).toBe(true);
31
+ expect(isCorrectionPrompt('add a health check to the api')).toBe(false);
32
+ expect(isCorrectionPrompt('create a workspace for payments')).toBe(false);
33
+ });
34
+ });
35
+
36
+ const corpus: ReflectionCorpus = {
37
+ generatedAt: 'now',
38
+ availableSkills: ['redash'],
39
+ workspaces: [
40
+ {
41
+ name: 'pay-app',
42
+ repoCount: 1,
43
+ repos: ['api'],
44
+ contextFiles: ['AGENTS.md'],
45
+ contextQuality: 'substantive',
46
+ session: {
47
+ sessionId: 's1',
48
+ agentType: 'pi',
49
+ turns: 40,
50
+ userPrompts: ['fix the sync bug', 'no that is wrong, revert'],
51
+ reSteerSamples: ['no that is wrong, revert'],
52
+ errors: [
53
+ 'fatal: not a git repository (at /Users/a/pay-app/api)',
54
+ 'fatal: not a git repository (at /Users/a/pay-app/web)',
55
+ 'gh: Not Found (HTTP 404)',
56
+ ],
57
+ tools: ['bash', 'edit'],
58
+ },
59
+ },
60
+ {
61
+ name: 'ledger',
62
+ repoCount: 0,
63
+ repos: [],
64
+ contextFiles: [], // missing context
65
+ contextQuality: 'missing',
66
+ session: {
67
+ sessionId: 's2',
68
+ agentType: 'pi',
69
+ turns: 12,
70
+ userPrompts: ['add tests'],
71
+ reSteerSamples: [],
72
+ errors: ['fatal: not a git repository (at /home/b/ledger)'],
73
+ tools: ['bash'],
74
+ },
75
+ },
76
+ { name: 'idle-ws', repoCount: 0, repos: [], contextFiles: ['CLAUDE.md'], contextQuality: 'boilerplate', session: null },
77
+ ],
78
+ };
79
+
80
+ describe('analyzeCorpus', () => {
81
+ const a = analyzeCorpus(corpus);
82
+
83
+ it('aggregates totals and correction signals', () => {
84
+ expect(a.totalWorkspaces).toBe(3);
85
+ expect(a.sessionsAnalyzed).toBe(2); // idle-ws has no session
86
+ expect(a.totalTurns).toBe(52);
87
+ expect(a.correctionSignals).toBe(1); // "no that is wrong, revert"
88
+ });
89
+
90
+ it('clusters the recurring failure across workspaces, most frequent first', () => {
91
+ const top = a.topErrors[0];
92
+ expect(top.signature).toContain('not a git repository');
93
+ expect(top.count).toBe(3); // 2 in pay-app + 1 in ledger
94
+ expect(top.workspaces.sort()).toEqual(['ledger', 'pay-app']);
95
+ expect(top.example).toContain('fatal: not a git repository');
96
+ });
97
+
98
+ it('reports tools, context quality, re-steers, and per-workspace facts', () => {
99
+ expect(a.topTools[0]).toEqual({ tool: 'bash', sessions: 2 });
100
+ expect(a.workspacesMissingContext).toEqual(['ledger']);
101
+ expect(a.workspacesBoilerplateContext).toEqual(['idle-ws']);
102
+ expect(a.reSteerSamples).toEqual(['no that is wrong, revert']);
103
+ const pay = a.workspaces.find((w) => w.name === 'pay-app')!;
104
+ expect(pay).toMatchObject({ turns: 40, failures: 3, contextQuality: 'substantive' });
105
+ expect(pay.topFailure).toContain('not a git repository');
106
+ expect(a.workspaces.find((w) => w.name === 'idle-ws')).toMatchObject({ turns: 0, failures: 0, contextQuality: 'boilerplate' });
107
+ });
108
+ });
109
+
110
+ describe('buildAnalysisPrompt', () => {
111
+ it('is compact and fact-based (no raw transcripts)', () => {
112
+ const p = buildAnalysisPrompt(analyzeCorpus(corpus));
113
+ expect(p).toContain('A script has already analyzed');
114
+ expect(p).toContain('Sessions analyzed: 2 across 3 workspaces (52 total turns).');
115
+ expect(p).toContain('Top recurring failures');
116
+ expect(p).toMatch(/\[3\u00d7 in 2 ws\]/); // the clustered failure
117
+ expect(p).toContain('NO context file (AGENTS.md/CLAUDE.md): ledger');
118
+ expect(p).toContain('boilerplate/template: idle-ws');
119
+ expect(p).toContain('Verbatim user corrections');
120
+ expect(p).toContain('no that is wrong, revert');
121
+ expect(p).toContain('bash(2)');
122
+ expect(p).toMatch(/ONLY a JSON object/);
123
+ // Compact: even this corpus stays well under a few KB.
124
+ expect(p.length).toBeLessThan(3000);
125
+ });
126
+ });
@@ -0,0 +1,246 @@
1
+ import { ReflectionCorpus, ContextQuality, isCorrectionPrompt } from './reflect';
2
+
3
+ /**
4
+ * Deterministic analysis layer for `reflect`.
5
+ *
6
+ * The LLM used to read raw transcripts (every prompt + every error) for every
7
+ * workspace, which made the judge prompt large and slow (timeouts on local
8
+ * models). Instead, a *script* does the heavy lifting here — clustering repeated
9
+ * failures, counting tools, spotting correction/retry loops — and the LLM only
10
+ * ever sees a small, pre-computed set of FACTS. That keeps the judge call fast
11
+ * and bounded no matter how many workspaces are analyzed, and grounds every
12
+ * recommendation in real counts rather than a wall of text.
13
+ *
14
+ * Everything here is pure (corpus in → report out) so it's exhaustively
15
+ * unit-tested without spawning an agent.
16
+ */
17
+
18
+ // ------------------------------------------------------------------ types
19
+
20
+ export interface ErrorCluster {
21
+ /** Normalized signature (paths/numbers/hashes stripped) used to group. */
22
+ signature: string;
23
+ /** Total occurrences across all analyzed sessions. */
24
+ count: number;
25
+ /** Distinct workspaces the signature appeared in (recurrence = strong signal). */
26
+ workspaces: string[];
27
+ /** One representative raw example (bounded). */
28
+ example: string;
29
+ }
30
+
31
+ export interface ToolStat {
32
+ tool: string;
33
+ /** Number of sessions that used the tool (not raw invocation count — the
34
+ * digest only records distinct tools per session). */
35
+ sessions: number;
36
+ }
37
+
38
+ export interface WorkspaceFact {
39
+ name: string;
40
+ turns: number;
41
+ failures: number;
42
+ /** Whether the primary context file is missing / boilerplate / substantive. */
43
+ contextQuality: ContextQuality;
44
+ /** The workspace's single most frequent failure signature, if any. */
45
+ topFailure?: string;
46
+ }
47
+
48
+ export interface AnalysisReport {
49
+ totalWorkspaces: number;
50
+ sessionsAnalyzed: number;
51
+ totalTurns: number;
52
+ /** Recurring failures, most frequent first. */
53
+ topErrors: ErrorCluster[];
54
+ /** Most-used tools, most sessions first. */
55
+ topTools: ToolStat[];
56
+ /** How many user prompts looked like corrections/retries (a friction signal). */
57
+ correctionSignals: number;
58
+ /** Verbatim user re-steer messages across sessions (the sharpest coaching
59
+ * signal), most-recent-workspace first, bounded. */
60
+ reSteerSamples: string[];
61
+ /** Workspaces with NO context file at all. */
62
+ workspacesMissingContext: string[];
63
+ /** Workspaces whose context file exists but is just boilerplate/template. */
64
+ workspacesBoilerplateContext: string[];
65
+ /** Skills already installed (so the judge suggests genuine gaps). */
66
+ availableSkills: string[];
67
+ /** One compact line of facts per workspace, for grounding. */
68
+ workspaces: WorkspaceFact[];
69
+ }
70
+
71
+ // --------------------------------------------------------------- normalizing
72
+
73
+ /**
74
+ * Reduce a raw error string to a stable signature so near-identical failures
75
+ * cluster together: lowercase, drop quotes, replace filesystem paths, hashes,
76
+ * hex ids and bare numbers with placeholders, collapse whitespace, and cap the
77
+ * length. `"fatal: not a git repository (or any of the parent up to /Users/x)"`
78
+ * and the same from another path collapse to one signature.
79
+ */
80
+ export function normalizeErrorSignature(raw: string): string {
81
+ let s = (raw ?? '').toLowerCase();
82
+ s = s.replace(/[`'"]/g, ' ');
83
+ // Windows paths first (contain ':' and '\'), then unix paths.
84
+ s = s.replace(/[a-z]:\\[^\s]+/g, '<path>');
85
+ s = s.replace(/\/[^\s:)'"]+/g, '<path>');
86
+ // Long hex / uuids / sha-like tokens before bare numbers.
87
+ s = s.replace(/\b[0-9a-f]{7,}\b/g, '<hash>');
88
+ // No trailing \b, so a number glued to a unit ('4200ms', '9ms') still clusters.
89
+ s = s.replace(/\b\d[\d.,:]*/g, '<n>');
90
+ s = s.replace(/\s+/g, ' ').trim();
91
+ return s.slice(0, 100);
92
+ }
93
+
94
+ // ------------------------------------------------------------------ analyze
95
+
96
+ export interface AnalyzeOptions {
97
+ /** Max error clusters to surface (default 8). */
98
+ topErrors?: number;
99
+ /** Max tools to surface (default 10). */
100
+ topTools?: number;
101
+ /** Max chars of a raw error kept as the example (default 160). */
102
+ exampleChars?: number;
103
+ /** Max verbatim re-steer samples to surface to the judge (default 8). */
104
+ maxReSteer?: number;
105
+ }
106
+
107
+ /**
108
+ * Turn a distilled corpus into aggregated facts. This is the "script processes
109
+ * the data" step — the LLM never sees the raw corpus, only the returned report.
110
+ */
111
+ export function analyzeCorpus(corpus: ReflectionCorpus, opts: AnalyzeOptions = {}): AnalysisReport {
112
+ const topErrorsK = opts.topErrors ?? 8;
113
+ const topToolsK = opts.topTools ?? 10;
114
+ const exampleChars = opts.exampleChars ?? 160;
115
+ const maxReSteer = opts.maxReSteer ?? 8;
116
+
117
+ const errorMap = new Map<string, { count: number; ws: Set<string>; example: string }>();
118
+ const toolMap = new Map<string, number>();
119
+ const workspacesMissingContext: string[] = [];
120
+ const workspacesBoilerplateContext: string[] = [];
121
+ const reSteerSamples: string[] = [];
122
+ const workspaces: WorkspaceFact[] = [];
123
+ let sessionsAnalyzed = 0;
124
+ let totalTurns = 0;
125
+ let correctionSignals = 0;
126
+
127
+ for (const ws of corpus.workspaces) {
128
+ if (ws.contextQuality === 'missing') workspacesMissingContext.push(ws.name);
129
+ else if (ws.contextQuality === 'boilerplate') workspacesBoilerplateContext.push(ws.name);
130
+
131
+ const s = ws.session;
132
+ if (!s) {
133
+ workspaces.push({ name: ws.name, turns: 0, failures: 0, contextQuality: ws.contextQuality });
134
+ continue;
135
+ }
136
+
137
+ sessionsAnalyzed++;
138
+ totalTurns += s.turns;
139
+ for (const t of s.tools) toolMap.set(t, (toolMap.get(t) ?? 0) + 1);
140
+ correctionSignals += s.userPrompts.filter(isCorrectionPrompt).length;
141
+ for (const q of s.reSteerSamples) {
142
+ if (reSteerSamples.length < maxReSteer) reSteerSamples.push(q);
143
+ }
144
+
145
+ // Per-workspace signature tally (drives the global map + this ws's topFailure).
146
+ const localSig = new Map<string, number>();
147
+ for (const e of s.errors) {
148
+ const sig = normalizeErrorSignature(e);
149
+ if (!sig) continue;
150
+ localSig.set(sig, (localSig.get(sig) ?? 0) + 1);
151
+ let entry = errorMap.get(sig);
152
+ if (!entry) {
153
+ entry = { count: 0, ws: new Set(), example: e.slice(0, exampleChars) };
154
+ errorMap.set(sig, entry);
155
+ }
156
+ entry.count++;
157
+ entry.ws.add(ws.name);
158
+ }
159
+ const topFailure = [...localSig.entries()].sort((a, b) => b[1] - a[1])[0]?.[0];
160
+
161
+ workspaces.push({ name: ws.name, turns: s.turns, failures: s.errors.length, contextQuality: ws.contextQuality, topFailure });
162
+ }
163
+
164
+ const topErrors: ErrorCluster[] = [...errorMap.entries()]
165
+ .map(([signature, v]) => ({ signature, count: v.count, workspaces: [...v.ws], example: v.example }))
166
+ // Most frequent first; break ties by cross-workspace spread (recurrence).
167
+ .sort((a, b) => b.count - a.count || b.workspaces.length - a.workspaces.length)
168
+ .slice(0, topErrorsK);
169
+
170
+ const topTools: ToolStat[] = [...toolMap.entries()]
171
+ .map(([tool, sessions]) => ({ tool, sessions }))
172
+ .sort((a, b) => b.sessions - a.sessions || a.tool.localeCompare(b.tool))
173
+ .slice(0, topToolsK);
174
+
175
+ return {
176
+ totalWorkspaces: corpus.workspaces.length,
177
+ sessionsAnalyzed,
178
+ totalTurns,
179
+ topErrors,
180
+ topTools,
181
+ correctionSignals,
182
+ reSteerSamples,
183
+ workspacesMissingContext,
184
+ workspacesBoilerplateContext,
185
+ availableSkills: corpus.availableSkills,
186
+ workspaces,
187
+ };
188
+ }
189
+
190
+ // --------------------------------------------------------------- judge prompt
191
+
192
+ /**
193
+ * Build the judge prompt from the pre-computed facts. Compact by construction
194
+ * (a handful of clusters + counts), so the LLM call stays small and fast no
195
+ * matter how many workspaces were analyzed. Output contract is unchanged
196
+ * (REFLECT_SCHEMA), so parsing/rendering are shared with the old path.
197
+ */
198
+ export function buildAnalysisPrompt(a: AnalysisReport): string {
199
+ const L: string[] = [];
200
+ L.push(
201
+ 'You are an expert reviewer ("LLM as a judge"). A script has already analyzed an engineer\'s',
202
+ 'recent AI coding-agent sessions and distilled them into the FACTS below. Do not ask for the',
203
+ 'raw transcripts — reason only from these facts.',
204
+ '',
205
+ 'Goal: recommend concrete improvements to their SETUP so the agent works better next time —',
206
+ 'which skills to add and WHERE, which AGENTS.md/context rules are missing, missing connectivity/',
207
+ 'smoke tests, and prompt/workflow habits. Ground every recommendation in a fact below',
208
+ '(a recurring failure, a correction loop, a missing context file). Prefer a few high-signal',
209
+ 'items over many generic ones. Include a concrete `example` snippet for skills/context rules.',
210
+ '',
211
+ `Sessions analyzed: ${a.sessionsAnalyzed} across ${a.totalWorkspaces} workspaces (${a.totalTurns} total turns).`,
212
+ `Installed skills (don't re-suggest; find genuine gaps): ${a.availableSkills.join(', ') || '(none)'}`,
213
+ `User correction/retry signals: ${a.correctionSignals} prompt(s) looked like corrections.`,
214
+ `Workspaces with NO context file (AGENTS.md/CLAUDE.md): ${a.workspacesMissingContext.join(', ') || '(none)'}`,
215
+ `Workspaces whose context file is just boilerplate/template: ${a.workspacesBoilerplateContext.join(', ') || '(none)'}`,
216
+ );
217
+
218
+ if (a.reSteerSamples.length) {
219
+ L.push('', 'Verbatim user corrections/re-steers (the sharpest signal — quote/act on these):');
220
+ for (const q of a.reSteerSamples) L.push(` - “${q.replace(/\n/g, ' ')}”`);
221
+ }
222
+
223
+ L.push('', 'Top recurring failures (count × workspaces — example):');
224
+ if (a.topErrors.length === 0) L.push(' (none captured)');
225
+ for (const e of a.topErrors) {
226
+ L.push(` - [${e.count}× in ${e.workspaces.length} ws] ${e.signature}`);
227
+ L.push(` e.g. ${e.example.replace(/\n/g, ' ')}`);
228
+ }
229
+
230
+ L.push('', `Most-used tools: ${a.topTools.map((t) => `${t.tool}(${t.sessions})`).join(', ') || '(none)'}`);
231
+
232
+ L.push('', 'Per-workspace:');
233
+ for (const w of a.workspaces) {
234
+ const top = w.topFailure ? ` · top failure: ${w.topFailure}` : '';
235
+ L.push(` - ${w.name}: ${w.turns} turns, ${w.failures} failures, context:${w.contextQuality}${top}`);
236
+ }
237
+
238
+ L.push(
239
+ '',
240
+ 'Respond with ONLY a JSON object of this shape (no prose, no markdown fence):',
241
+ '{"summary": string, "recommendations": [{"kind":"skill|context|test|prompt|connectivity|workflow|other",',
242
+ '"title": string, "detail": string, "target": string(optional workspace/repo/path),',
243
+ '"priority":"high|medium|low", "example": string(optional snippet)}]}',
244
+ );
245
+ return L.join('\n');
246
+ }