instar 1.3.763 → 1.3.765
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/core/ClaudeCliIntelligenceProvider.d.ts +15 -0
- package/dist/core/ClaudeCliIntelligenceProvider.d.ts.map +1 -1
- package/dist/core/ClaudeCliIntelligenceProvider.js +111 -23
- package/dist/core/ClaudeCliIntelligenceProvider.js.map +1 -1
- package/dist/core/PostUpdateMigrator.d.ts +1 -0
- package/dist/core/PostUpdateMigrator.d.ts.map +1 -1
- package/dist/core/PostUpdateMigrator.js +56 -2
- package/dist/core/PostUpdateMigrator.js.map +1 -1
- package/dist/core/crossModelReviewer.d.ts +188 -9
- package/dist/core/crossModelReviewer.d.ts.map +1 -1
- package/dist/core/crossModelReviewer.js +360 -18
- package/dist/core/crossModelReviewer.js.map +1 -1
- package/dist/core/types.d.ts +14 -0
- package/dist/core/types.d.ts.map +1 -1
- package/dist/core/types.js.map +1 -1
- package/dist/scaffold/templates.js +1 -1
- package/dist/server/routes.d.ts.map +1 -1
- package/dist/server/routes.js +15 -5
- package/dist/server/routes.js.map +1 -1
- package/package.json +1 -1
- package/scripts/model-registry-freshness.manifest.json +8 -0
- package/skills/spec-converge/SKILL.md +4 -2
- package/skills/spec-converge/scripts/cross-model-review.mjs +36 -6
- package/src/data/builtin-manifest.json +63 -63
- package/src/scaffold/templates.ts +1 -1
- package/upgrades/1.3.764.md +45 -0
- package/upgrades/1.3.765.md +63 -0
- package/upgrades/side-effects/actionclaim-config-shape-fix.eli16.md +50 -0
- package/upgrades/side-effects/actionclaim-config-shape-fix.md +149 -0
- package/upgrades/side-effects/reviewer-door-rewiring-inc1.md +198 -0
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
* to untrusted/custom endpoints).
|
|
46
46
|
*/
|
|
47
47
|
import { type IntelligenceFramework } from './intelligenceProviderFactory.js';
|
|
48
|
+
import type { IntelligenceOptions } from './types.js';
|
|
48
49
|
/**
|
|
49
50
|
* Per-call timeout for a cross-model spec review. A reasoning review of a
|
|
50
51
|
* full spec is far heavier than the provider's 30s judgment-call default, so
|
|
@@ -87,7 +88,7 @@ export declare function orderContextDeterministically(context: readonly Referenc
|
|
|
87
88
|
* Rule-1 / auth-probe vocabulary so a report can render a specific
|
|
88
89
|
* remediation.
|
|
89
90
|
*/
|
|
90
|
-
export type CrossModelUnavailableReason = 'codex-not-installed' | 'codex-not-authed' | 'codex-auth-apikey-forbidden' | 'gemini-not-installed' | 'gemini-not-authed' | 'no-supported-framework';
|
|
91
|
+
export type CrossModelUnavailableReason = 'codex-not-installed' | 'codex-not-authed' | 'codex-auth-apikey-forbidden' | 'gemini-not-installed' | 'gemini-not-authed' | 'claude-not-installed' | 'claude-config-missing' | 'claude-forbidden' | 'no-supported-framework';
|
|
91
92
|
export interface CrossModelDetectionResult {
|
|
92
93
|
available: boolean;
|
|
93
94
|
/** Present when available; the framework id that will run the review. */
|
|
@@ -96,6 +97,15 @@ export interface CrossModelDetectionResult {
|
|
|
96
97
|
model?: string;
|
|
97
98
|
/** Present when unavailable; a specific machine-readable reason. */
|
|
98
99
|
reason?: CrossModelUnavailableReason;
|
|
100
|
+
/**
|
|
101
|
+
* Is this a CROSS-MODEL (non-Claude) reviewer family (REVIEWER-DOOR-REWIRING §5)?
|
|
102
|
+
* Populated at construction from the framework registry — so the guards that
|
|
103
|
+
* decide "did this spec get a cross-model opinion?" filter on data they HOLD,
|
|
104
|
+
* not a re-lookup against a list this spec adds claude to. Claude-reviewing-
|
|
105
|
+
* Claude is a clean-door second read, NOT cross-model (`false`). Fail-CLOSED:
|
|
106
|
+
* an absent value is treated as NOT cross-family by every consumer.
|
|
107
|
+
*/
|
|
108
|
+
crossFamily?: boolean;
|
|
99
109
|
}
|
|
100
110
|
/**
|
|
101
111
|
* Injectable inputs for `detectCrossModelReviewer` so the detection logic is
|
|
@@ -126,6 +136,23 @@ export interface CrossModelDetectInputs {
|
|
|
126
136
|
* `${GEMINI_HOME || ~/.gemini}/oauth_creds.json`.
|
|
127
137
|
*/
|
|
128
138
|
geminiOauthCredsPath?: string;
|
|
139
|
+
/**
|
|
140
|
+
* Path to the claude binary if detected, else null. Defaults to
|
|
141
|
+
* `detectClaudePath()` (REVIEWER-DOOR-REWIRING §1.2).
|
|
142
|
+
*/
|
|
143
|
+
claudePathDetected?: string | null;
|
|
144
|
+
/**
|
|
145
|
+
* Whether a Claude config-home (`$CLAUDE_CONFIG_DIR` or `~/.claude`) is present.
|
|
146
|
+
* Defaults to a real `existsSync` probe of that directory. Tests inject.
|
|
147
|
+
*/
|
|
148
|
+
claudeConfigHomePresent?: boolean;
|
|
149
|
+
/**
|
|
150
|
+
* The agent's `enabledFrameworks`. When provided and it does NOT contain
|
|
151
|
+
* `claude-code`, the claude reviewer detects `claude-forbidden` (a claude-
|
|
152
|
+
* forbidden agent must never detect the family available — §1.2). Absent ⇒
|
|
153
|
+
* treated as allowed (the dominant claude-agent case).
|
|
154
|
+
*/
|
|
155
|
+
enabledFrameworks?: string[];
|
|
129
156
|
}
|
|
130
157
|
/**
|
|
131
158
|
* Detect a codex reviewer. Returns `{ available: true, framework, model }`
|
|
@@ -147,6 +174,60 @@ export declare function detectCodexReviewer(inputs?: CrossModelDetectInputs): Cr
|
|
|
147
174
|
* throws.
|
|
148
175
|
*/
|
|
149
176
|
export declare function detectGeminiReviewer(inputs?: CrossModelDetectInputs): CrossModelDetectionResult;
|
|
177
|
+
/**
|
|
178
|
+
* The concrete default model the Anthropic clean-door reviewer pins
|
|
179
|
+
* (REVIEWER-DOOR-REWIRING §1.3). NEVER the tier word `'capable'` — that resolves
|
|
180
|
+
* to opus (`src/core/models.ts`), the measured-penalized `opus × coding-harness`
|
|
181
|
+
* pair this reviewer family exists to move OFF. Registered in
|
|
182
|
+
* `scripts/model-registry-freshness.manifest.json` under the strict (CI-gating)
|
|
183
|
+
* freshness lint, so a rotted pin fails CI (the anti-rot ratchet); the
|
|
184
|
+
* degraded-loud no-silent-fallback path (§1.3) is the second, runtime guarantee.
|
|
185
|
+
*/
|
|
186
|
+
export declare const CLAUDE_REVIEWER_DEFAULT_MODEL = "claude-fable-5";
|
|
187
|
+
/**
|
|
188
|
+
* The accept-set a config override (`specConverge.reviewers.anthropic.model`) is
|
|
189
|
+
* validated against (§1.3). A concrete-but-non-frontier id — e.g.
|
|
190
|
+
* `claude-opus-4-8` — is REJECTED (`override-not-frontier`), never silently
|
|
191
|
+
* honored, because a misconfigured override could otherwise re-pin the reviewer
|
|
192
|
+
* to opus and re-create the exact door-penalty gap this spec closes. Kept fresh
|
|
193
|
+
* by the same freshness lint that pins `CLAUDE_REVIEWER_DEFAULT_MODEL`, so this
|
|
194
|
+
* "derived-from-the-manifest frontier set" stays current structurally rather than
|
|
195
|
+
* by willpower (Structure > Willpower).
|
|
196
|
+
*/
|
|
197
|
+
export declare const CLAUDE_REVIEWER_FRONTIER_MODELS: readonly string[];
|
|
198
|
+
/**
|
|
199
|
+
* Detect a Claude clean-door reviewer (REVIEWER-DOOR-REWIRING §1.2). Reports
|
|
200
|
+
* "installed-and-configured" — NOT entitlement-verified: usable auth,
|
|
201
|
+
* subscription tier, and Fable-5 entitlement are INVOCATION-time `degraded`
|
|
202
|
+
* results (§1.4), never detection reasons. Detection reasons are the purely
|
|
203
|
+
* static presence set only: `claude-not-installed` / `claude-config-missing` /
|
|
204
|
+
* `claude-forbidden`. NEVER throws; all inputs injectable (mirrors codex/gemini).
|
|
205
|
+
*/
|
|
206
|
+
export declare function detectClaudeReviewer(inputs?: CrossModelDetectInputs): CrossModelDetectionResult;
|
|
207
|
+
/** Outcome of resolving the Claude reviewer's concrete model (§1.3). */
|
|
208
|
+
export type ClaudeReviewerModelResolution = {
|
|
209
|
+
ok: true;
|
|
210
|
+
model: string;
|
|
211
|
+
} | {
|
|
212
|
+
ok: false;
|
|
213
|
+
reason: 'override-not-concrete' | 'override-not-frontier';
|
|
214
|
+
model: string;
|
|
215
|
+
};
|
|
216
|
+
/**
|
|
217
|
+
* Resolve the Claude reviewer's concrete model (§1.3), with NO silent fallback:
|
|
218
|
+
* 1. a config override (`specConverge.reviewers.anthropic.model`) if set — it
|
|
219
|
+
* MUST be a concrete id (`isConcreteReviewerModel`) AND a member of the
|
|
220
|
+
* frontier accept-set (`CLAUDE_REVIEWER_FRONTIER_MODELS`); a non-frontier
|
|
221
|
+
* concrete id (e.g. `claude-opus-4-8`) is REJECTED (`override-not-frontier`);
|
|
222
|
+
* 2. else the default pin `CLAUDE_REVIEWER_DEFAULT_MODEL` (`claude-fable-5`).
|
|
223
|
+
* A rejected override degrades the round LOUDLY (§1.4) — it is never coerced to
|
|
224
|
+
* a default, because a config typo silently re-opening the door penalty is
|
|
225
|
+
* exactly the "strongest model isn't actually reviewing" gap this spec closes.
|
|
226
|
+
*/
|
|
227
|
+
export declare function resolveClaudeReviewerModel(config?: ReviewerConfig): ClaudeReviewerModelResolution;
|
|
228
|
+
export declare function claudeSupportsReviewerHardening(claudePath?: string): boolean;
|
|
229
|
+
/** Test helper — clear the per-process hardening-preflight cache. */
|
|
230
|
+
export declare function __resetClaudeHardeningPreflightCache(): void;
|
|
150
231
|
export interface ReviewerResult {
|
|
151
232
|
/** Outcome class for the cross-model pass. */
|
|
152
233
|
status: 'ok' | 'degraded' | 'unavailable';
|
|
@@ -162,6 +243,35 @@ export interface ReviewerResult {
|
|
|
162
243
|
reason?: string;
|
|
163
244
|
/** The flag string that gets written to frontmatter + the report banner. */
|
|
164
245
|
flag: string;
|
|
246
|
+
/**
|
|
247
|
+
* Is this a CROSS-MODEL (non-Claude) reviewer result (REVIEWER-DOOR-REWIRING §5)?
|
|
248
|
+
* Populated at construction from the framework registry. `aggregateRoundOutcomes`
|
|
249
|
+
* counts ONLY `crossFamily: true` successes toward the spec-level
|
|
250
|
+
* `cross-model-review` flag, so a claude-only success (`false`) can NEVER
|
|
251
|
+
* launder a clean cross-model pass. Fail-CLOSED: absent ⇒ treated as NOT
|
|
252
|
+
* cross-family by every consumer.
|
|
253
|
+
*/
|
|
254
|
+
crossFamily?: boolean;
|
|
255
|
+
}
|
|
256
|
+
/**
|
|
257
|
+
* The minimal agent-config shape the reviewer layer reads (REVIEWER-DOOR-REWIRING
|
|
258
|
+
* §1.5): the developmentAgent gate flag + the `specConverge.reviewers` block. The
|
|
259
|
+
* driver reads `.instar/config.json` and threads this in; production callers pass
|
|
260
|
+
* it, tests inject it. Absent ⇒ the Anthropic clean-door family is DARK on the
|
|
261
|
+
* fleet (byte-identical `[codex, gemini]`) and LIVE on a development agent.
|
|
262
|
+
*/
|
|
263
|
+
export interface ReviewerConfig {
|
|
264
|
+
developmentAgent?: boolean;
|
|
265
|
+
specConverge?: {
|
|
266
|
+
reviewers?: {
|
|
267
|
+
anthropic?: {
|
|
268
|
+
/** Omitted ⇒ developmentAgent gate (live-on-dev / dark-fleet); explicit wins. */
|
|
269
|
+
enabled?: boolean;
|
|
270
|
+
/** Optional concrete frontier model override, validated in §1.3. */
|
|
271
|
+
model?: string;
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
};
|
|
165
275
|
}
|
|
166
276
|
export type ReviewVerdict = 'CLEAN' | 'MINOR ISSUES' | 'SERIOUS ISSUES' | 'UNKNOWN';
|
|
167
277
|
export interface ReviewFinding {
|
|
@@ -176,6 +286,14 @@ export interface ReviewFinding {
|
|
|
176
286
|
interface SupportedReviewerFramework {
|
|
177
287
|
/** Extend this union (in the type below) to add a framework. */
|
|
178
288
|
id: IntelligenceFramework;
|
|
289
|
+
/**
|
|
290
|
+
* Is this a CROSS-MODEL (non-Claude) reviewer family (REVIEWER-DOOR-REWIRING
|
|
291
|
+
* §5.1)? A REQUIRED field with NO default: a future reviewer provider/door
|
|
292
|
+
* CANNOT be added to the registry without an explicit cross-model
|
|
293
|
+
* classification decision (a test asserts every entry sets it). codex/gemini
|
|
294
|
+
* `true`; the claude clean-door family `false`.
|
|
295
|
+
*/
|
|
296
|
+
crossFamily: boolean;
|
|
179
297
|
/** Detection — does this framework's reviewer have what it needs to run? */
|
|
180
298
|
detect(inputs?: CrossModelDetectInputs): CrossModelDetectionResult;
|
|
181
299
|
/**
|
|
@@ -191,14 +309,13 @@ export interface ReviewerInvokeArgs {
|
|
|
191
309
|
/** Per-call timeout. */
|
|
192
310
|
timeoutMs: number;
|
|
193
311
|
/**
|
|
194
|
-
* Optional provider override — tests inject a stub so no real
|
|
195
|
-
*
|
|
312
|
+
* Optional provider override — tests inject a stub so no real spawn happens.
|
|
313
|
+
* Production passes nothing and the factory builds the real one. Typed with
|
|
314
|
+
* the full IntelligenceOptions so a test can read the claude reviewer's
|
|
315
|
+
* `reviewerHardening.model` (the concrete-pin assertion, §1.4).
|
|
196
316
|
*/
|
|
197
317
|
providerOverride?: {
|
|
198
|
-
evaluate(prompt: string, options?:
|
|
199
|
-
model?: 'fast' | 'balanced' | 'capable';
|
|
200
|
-
timeoutMs?: number;
|
|
201
|
-
}): Promise<string>;
|
|
318
|
+
evaluate(prompt: string, options?: IntelligenceOptions): Promise<string>;
|
|
202
319
|
};
|
|
203
320
|
/**
|
|
204
321
|
* Optional detection override — `runCrossModelReview` passes the detection
|
|
@@ -207,6 +324,28 @@ export interface ReviewerInvokeArgs {
|
|
|
207
324
|
* Absent → the entry runs its own real-host detect, as before (back-compat).
|
|
208
325
|
*/
|
|
209
326
|
detectionOverride?: CrossModelDetectionResult;
|
|
327
|
+
/**
|
|
328
|
+
* Agent config for the claude clean-door family (REVIEWER-DOOR-REWIRING §1.3):
|
|
329
|
+
* the model override is resolved + validated from this at invocation. Ignored
|
|
330
|
+
* by codex/gemini. Absent ⇒ the default pin.
|
|
331
|
+
*/
|
|
332
|
+
reviewerConfig?: ReviewerConfig;
|
|
333
|
+
/**
|
|
334
|
+
* Test override for the claude hardening preflight (§1.4). When set, skips the
|
|
335
|
+
* real `claude --help` probe (`true` = supported, `false` = drives the
|
|
336
|
+
* `hardening-unsupported` degrade). Production omits it → the real preflight.
|
|
337
|
+
*/
|
|
338
|
+
hardeningSupportedOverride?: boolean;
|
|
339
|
+
/**
|
|
340
|
+
* Test-only claude provider FACTORY override. Production omits it → the entry
|
|
341
|
+
* calls `buildIntelligenceProvider({ framework: 'claude-code' })`, whose
|
|
342
|
+
* constructor THROWS on a claude-forbidden agent. Tests inject a factory that
|
|
343
|
+
* throws (throw-safety → `degraded`) or returns null (`provider-unavailable`).
|
|
344
|
+
* A `providerOverride` still short-circuits this (no construction at all).
|
|
345
|
+
*/
|
|
346
|
+
claudeProviderFactory?: () => {
|
|
347
|
+
evaluate(prompt: string, options?: IntelligenceOptions): Promise<string>;
|
|
348
|
+
} | null;
|
|
210
349
|
}
|
|
211
350
|
/**
|
|
212
351
|
* Fail-loud model canary (Piece 3). A cross-model review must run on a
|
|
@@ -226,6 +365,32 @@ export declare function isConcreteReviewerModel(model: string | undefined): bool
|
|
|
226
365
|
* CLI adapters — see `TRUSTED_REVIEWER_FRAMEWORKS` below.
|
|
227
366
|
*/
|
|
228
367
|
export declare const SUPPORTED_REVIEWER_FRAMEWORKS: SupportedReviewerFramework[];
|
|
368
|
+
/**
|
|
369
|
+
* Is the Anthropic clean-door reviewer family enabled on this agent
|
|
370
|
+
* (REVIEWER-DOOR-REWIRING §1.5)? Resolves through the standard developmentAgent
|
|
371
|
+
* gate: `specConverge.reviewers.anthropic.enabled` OMITTED ⇒ live on a
|
|
372
|
+
* development agent, dark on the fleet; an explicit value always wins. Absent
|
|
373
|
+
* config ⇒ fleet-dark (byte-identical `[codex, gemini]`).
|
|
374
|
+
*/
|
|
375
|
+
export declare function isAnthropicReviewerEnabled(config?: ReviewerConfig): boolean;
|
|
376
|
+
/**
|
|
377
|
+
* The reviewer frameworks ACTIVE for this agent, config-gated. codex + gemini
|
|
378
|
+
* are always active; the claude clean-door family is active only when
|
|
379
|
+
* `isAnthropicReviewerEnabled(config)`. This is the seam the detection paths
|
|
380
|
+
* iterate — so a fleet agent (no dev flag, no explicit enable) never sees the
|
|
381
|
+
* claude family, preserving today's exact `[codex, gemini]` behavior.
|
|
382
|
+
*/
|
|
383
|
+
export declare function resolveActiveReviewerFrameworks(config?: ReviewerConfig): SupportedReviewerFramework[];
|
|
384
|
+
/**
|
|
385
|
+
* Is `id` a CROSS-MODEL (non-Claude) reviewer family (REVIEWER-DOOR-REWIRING §5)?
|
|
386
|
+
* Resolves against the FULL registry (independent of the config gate — this is a
|
|
387
|
+
* classification of the id, not an enablement check), returning the entry's
|
|
388
|
+
* `crossFamily`. Fail-CLOSED: an unknown / unresolvable / undefined id resolves
|
|
389
|
+
* `false` (it can NEVER gain cross-model status by a lookup miss). This is the
|
|
390
|
+
* single predicate the aggregate flag, both detection paths, and the 7-day
|
|
391
|
+
* baseline all key on — so the claude family can never launder any of them.
|
|
392
|
+
*/
|
|
393
|
+
export declare function isCrossFamilyReviewerFramework(id: string | undefined): boolean;
|
|
229
394
|
/**
|
|
230
395
|
* Trusted-provider allowlist (Piece 3 — no spec egress to untrusted
|
|
231
396
|
* endpoints). The registry only ever carries FIRST-PARTY OAuth CLI adapters:
|
|
@@ -235,6 +400,18 @@ export declare const SUPPORTED_REVIEWER_FRAMEWORKS: SupportedReviewerFramework[]
|
|
|
235
400
|
* cross-model review for exactly this reason — its provider may be a custom
|
|
236
401
|
* endpoint. A framework id outside this list is refused by the script
|
|
237
402
|
* wrapper (`--family`) with reason `untrusted-framework`.
|
|
403
|
+
*
|
|
404
|
+
* The invariant is "the spec text goes ONLY to the endpoint the OPERATOR THEMSELVES
|
|
405
|
+
* configured for that first-party CLI" (REVIEWER-DOOR-REWIRING §2.2) — NOT "no
|
|
406
|
+
* base-URL endpoint ever": each first-party CLI honors the operator's OWN
|
|
407
|
+
* `ANTHROPIC_BASE_URL`/`OPENAI_BASE_URL`/`GEMINI_BASE_URL`, which is the operator's
|
|
408
|
+
* own trusted proxy. A third-party aggregator (OpenRouter) inserted by ADDING an
|
|
409
|
+
* adapter is categorically different and stays out — that is why OpenRouter is
|
|
410
|
+
* declined (§2). `claude-code` is added here (the clean-door family needs the
|
|
411
|
+
* `--family claude-code` egress check to pass) — COUPLED ATOMICALLY with swapping
|
|
412
|
+
* the 7-day baseline predicate off `isTrustedReviewerFramework` and onto
|
|
413
|
+
* `isCrossFamilyReviewerFramework` (§5.4), so this addition can NEVER let a
|
|
414
|
+
* claude-only activation satisfy the externals-mandatory baseline.
|
|
238
415
|
*/
|
|
239
416
|
export declare const TRUSTED_REVIEWER_FRAMEWORKS: readonly string[];
|
|
240
417
|
/** Is `id` on the trusted first-party reviewer allowlist? */
|
|
@@ -250,7 +427,7 @@ export declare function isTrustedReviewerFramework(id: string): boolean;
|
|
|
250
427
|
* SIGNAL-ONLY: never throws, never blocks. A `false` simply routes the skill
|
|
251
428
|
* to the internal-only fallback (spec §4).
|
|
252
429
|
*/
|
|
253
|
-
export declare function detectCrossModelReviewer(inputs?: CrossModelDetectInputs): CrossModelDetectionResult;
|
|
430
|
+
export declare function detectCrossModelReviewer(inputs?: CrossModelDetectInputs, config?: ReviewerConfig): CrossModelDetectionResult;
|
|
254
431
|
/**
|
|
255
432
|
* Collect EVERY available reviewer framework, in registry preference order
|
|
256
433
|
* (Piece 3 — family diversity: GPT and Gemini catch different failure
|
|
@@ -259,7 +436,7 @@ export declare function detectCrossModelReviewer(inputs?: CrossModelDetectInputs
|
|
|
259
436
|
*
|
|
260
437
|
* SIGNAL-ONLY: never throws, never blocks.
|
|
261
438
|
*/
|
|
262
|
-
export declare function detectAllCrossModelReviewers(inputs?: CrossModelDetectInputs): CrossModelDetectionResult[];
|
|
439
|
+
export declare function detectAllCrossModelReviewers(inputs?: CrossModelDetectInputs, config?: ReviewerConfig): CrossModelDetectionResult[];
|
|
263
440
|
/**
|
|
264
441
|
* Map a provider rejection into a coarse `degraded` reason. The provider
|
|
265
442
|
* surfaces timeouts, non-zero exits, and (via the circuit breaker) rate
|
|
@@ -387,6 +564,8 @@ export declare function runCrossModelReview(args: {
|
|
|
387
564
|
timeoutMs?: number;
|
|
388
565
|
detectInputs?: CrossModelDetectInputs;
|
|
389
566
|
providerOverride?: ReviewerInvokeArgs['providerOverride'];
|
|
567
|
+
/** Agent config for the config-gated claude clean-door family (§1.5). */
|
|
568
|
+
config?: ReviewerConfig;
|
|
390
569
|
}): Promise<ReviewerResult>;
|
|
391
570
|
/**
|
|
392
571
|
* Hash the spec's REVIEWABLE body (Piece 3 delta-gating): sha256 hex of the
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"crossModelReviewer.d.ts","sourceRoot":"","sources":["../../src/core/crossModelReviewer.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;
|
|
1
|
+
{"version":3,"file":"crossModelReviewer.d.ts","sourceRoot":"","sources":["../../src/core/crossModelReviewer.ts"],"names":[],"mappings":"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"}
|