@qulib/core 0.10.1 → 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 +2 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/llm/provider.interface.d.ts +4 -1
- package/dist/llm/provider.interface.d.ts.map +1 -1
- package/dist/llm/providers/anthropic.d.ts +2 -2
- package/dist/llm/providers/anthropic.d.ts.map +1 -1
- package/dist/llm/providers/anthropic.js +2 -1
- package/dist/schemas/bug-report-score.schema.d.ts +163 -0
- package/dist/schemas/bug-report-score.schema.d.ts.map +1 -0
- package/dist/schemas/bug-report-score.schema.js +32 -0
- package/dist/schemas/confidence.schema.d.ts +33 -33
- package/dist/schemas/confidence.schema.d.ts.map +1 -1
- package/dist/schemas/confidence.schema.js +1 -0
- package/dist/schemas/decision-score.schema.d.ts +157 -0
- package/dist/schemas/decision-score.schema.d.ts.map +1 -0
- package/dist/schemas/decision-score.schema.js +39 -0
- package/dist/schemas/index.d.ts +2 -0
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +2 -0
- package/dist/schemas/views.schema.d.ts +11 -11
- package/dist/tools/scoring/bug-report-score.d.ts +34 -0
- package/dist/tools/scoring/bug-report-score.d.ts.map +1 -0
- package/dist/tools/scoring/bug-report-score.js +320 -0
- package/dist/tools/scoring/score-decisions.d.ts +30 -0
- package/dist/tools/scoring/score-decisions.d.ts.map +1 -0
- package/dist/tools/scoring/score-decisions.js +348 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -368,6 +368,8 @@ A minimal structural snapshot looks like:
|
|
|
368
368
|
| `qulib_score_automation` | Score local repo test-automation maturity | absolute `repoPath`, optional `includeFullDimensions` |
|
|
369
369
|
| `qulib_score_api` | Discover API endpoints and score their test coverage | absolute `repoPath`, optional `enableTier3`, `includeEndpointDetail` |
|
|
370
370
|
| `qulib_scaffold_tests` | Generate Cypress scaffold from a live URL (`cypress-e2e` only; playwright not yet implemented) | `url`, optional `framework`, `maxPagesToScan`, `recipes` |
|
|
371
|
+
| **`qulib_score_bug_report`** | LLM-as-judge of a learner bug report vs planted-bug target | `report` (title, description, steps, severity), `target` (description, type, severity, expectedBehavior) |
|
|
372
|
+
| **`qulib_score_decisions`** | Pivotal-decision evaluation at agent forks | absolute `forksPath` (JSONL), optional `enableLlmJudge` |
|
|
371
373
|
| `qulib_explore_auth` | Deeper auth-path discovery on unfamiliar apps | `url`, optional `timeoutMs` |
|
|
372
374
|
| `qulib_detect_auth` | Fast single-pass auth pattern guess | `url`, optional `timeoutMs` |
|
|
373
375
|
| `analyze_app` | Legacy alias for `qulib_analyze_app` — kept for backwards compatibility | same as `qulib_analyze_app` |
|
package/dist/index.d.ts
CHANGED
|
@@ -13,6 +13,10 @@ export type { ApiSurface, DiscoveredEndpoint, DiscoverApiSurfaceOptions } from '
|
|
|
13
13
|
export { computeAutomationMaturity } from './tools/scoring/automation-maturity.js';
|
|
14
14
|
export { computeApiCoverage } from './tools/scoring/api-coverage.js';
|
|
15
15
|
export { detectPromptLeakage } from './tools/scoring/prompt-leakage.js';
|
|
16
|
+
export { scoreBugReport, scoreBugReportDeterministic, buildBugReportJudgePrompt, parseBugReportJudgeResponse, BUG_REPORT_JUDGE_MODEL, RUBRIC_MAX_PTS, SEVERITY_WEIGHT, hasQualityRepro, hasEvidence, delimitUntrusted, } from './tools/scoring/bug-report-score.js';
|
|
17
|
+
export type { ScoreBugReportOptions } from './tools/scoring/bug-report-score.js';
|
|
18
|
+
export { scoreDecisions, scoreForkDeterministic, loadDecisionForks, validateForksPath, resolveAllowedForksRoot, buildDecisionJudgePrompt, parseDecisionJudgeResponse, } from './tools/scoring/score-decisions.js';
|
|
19
|
+
export type { ScoreDecisionsOptions } from './tools/scoring/score-decisions.js';
|
|
16
20
|
export type { ApiCoverageResult, ApiEndpointCoverage } from './tools/scoring/api-coverage.js';
|
|
17
21
|
export { scaffoldTests } from './scaffold-tests.js';
|
|
18
22
|
export type { ScaffoldOptions, ScaffoldResult, ProjectConfig } from './scaffold-tests.js';
|
|
@@ -27,7 +31,7 @@ export { NoopTelemetrySink } from './telemetry/telemetry.interface.js';
|
|
|
27
31
|
export { redactUrlForTelemetry } from './telemetry/emit.js';
|
|
28
32
|
export type { LlmCallResult, LlmProvider } from './llm/provider.interface.js';
|
|
29
33
|
export type { CallLlmConfigSlice } from './llm/provider.js';
|
|
30
|
-
export type { HarnessConfig, AuthConfig, RouteInventory, GapAnalysis, RepoAnalysis, DetectedAuth, AuthExploration, AuthPath, AuthPathRequirements, CostIntelligence, LlmUsageRecord, RepeatedAiPattern, DeterministicMaturity, PublicSurface, AutomationMaturity, AutomationMaturityDimension, FrameworkDetectionResult, DetectedFrameworkPrimary, RecipeId, RecipeConfig, } from './schemas/index.js';
|
|
34
|
+
export type { HarnessConfig, AuthConfig, RouteInventory, GapAnalysis, RepoAnalysis, DetectedAuth, AuthExploration, AuthPath, AuthPathRequirements, CostIntelligence, LlmUsageRecord, RepeatedAiPattern, DeterministicMaturity, PublicSurface, AutomationMaturity, AutomationMaturityDimension, FrameworkDetectionResult, DetectedFrameworkPrimary, RecipeId, RecipeConfig, BugReportScoreResult, BugReportRubric, BugReportInput, BugReportTarget, ScoreBugReportInput, DecisionScoreResult, ScoredDecisionFork, DecisionFork, ScoreDecisionsInput, } from './schemas/index.js';
|
|
31
35
|
export { RecipeIdSchema } from './schemas/index.js';
|
|
32
36
|
export { computeReleaseConfidence } from './tools/scoring/confidence.js';
|
|
33
37
|
export { analyzeRunDiff, formatAnalyzeDiffMarkdown, loadGapAnalysisFile } from './cli/analyze-diff-run.js';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EACL,UAAU,EACV,mBAAmB,EACnB,YAAY,EACZ,YAAY,EACZ,aAAa,EACb,cAAc,EACd,gBAAgB,GACjB,MAAM,wBAAwB,CAAC;AAChC,YAAY,EACV,WAAW,EACX,gBAAgB,EAChB,iBAAiB,EACjB,aAAa,GACd,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,YAAY,EACV,YAAY,EACZ,kBAAkB,EAClB,SAAS,EACT,cAAc,EACd,uBAAuB,GACxB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,UAAU,EACV,oBAAoB,EACpB,4BAA4B,EAC5B,yBAAyB,EACzB,qBAAqB,GACtB,MAAM,wBAAwB,CAAC;AAChC,YAAY,EACV,yBAAyB,EACzB,4BAA4B,GAC7B,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AAC1G,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,kBAAkB,EAAE,0BAA0B,EAAE,MAAM,6BAA6B,CAAC;AAC7F,YAAY,EAAE,UAAU,EAAE,kBAAkB,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AAC7G,OAAO,EAAE,yBAAyB,EAAE,MAAM,wCAAwC,CAAC;AACnF,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AACxE,YAAY,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AAC9F,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,YAAY,EAAE,eAAe,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC1F,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAClI,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,EAAE,gCAAgC,EAAE,MAAM,4BAA4B,CAAC;AAC9E,OAAO,EAAE,uBAAuB,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AACvF,YAAY,EAAE,cAAc,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AACjF,YAAY,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AACrE,YAAY,EACV,aAAa,EACb,cAAc,EACd,kBAAkB,GACnB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AACvE,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,YAAY,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAC9E,YAAY,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAC5D,YAAY,EACV,aAAa,EACb,UAAU,EACV,cAAc,EACd,WAAW,EACX,YAAY,EACZ,YAAY,EACZ,eAAe,EACf,QAAQ,EACR,oBAAoB,EACpB,gBAAgB,EAChB,cAAc,EACd,iBAAiB,EACjB,qBAAqB,EACrB,aAAa,EACb,kBAAkB,EAClB,2BAA2B,EAC3B,wBAAwB,EACxB,wBAAwB,EACxB,QAAQ,EACR,YAAY,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -9,6 +9,8 @@ export { discoverApiSurface, discoverApiSurfaceWithRepo } from './tools/repo/api
|
|
|
9
9
|
export { computeAutomationMaturity } from './tools/scoring/automation-maturity.js';
|
|
10
10
|
export { computeApiCoverage } from './tools/scoring/api-coverage.js';
|
|
11
11
|
export { detectPromptLeakage } from './tools/scoring/prompt-leakage.js';
|
|
12
|
+
export { scoreBugReport, scoreBugReportDeterministic, buildBugReportJudgePrompt, parseBugReportJudgeResponse, BUG_REPORT_JUDGE_MODEL, RUBRIC_MAX_PTS, SEVERITY_WEIGHT, hasQualityRepro, hasEvidence, delimitUntrusted, } from './tools/scoring/bug-report-score.js';
|
|
13
|
+
export { scoreDecisions, scoreForkDeterministic, loadDecisionForks, validateForksPath, resolveAllowedForksRoot, buildDecisionJudgePrompt, parseDecisionJudgeResponse, } from './tools/scoring/score-decisions.js';
|
|
12
14
|
export { scaffoldTests } from './scaffold-tests.js';
|
|
13
15
|
export { expandRecipes, buildAuthScenarios, buildA11yScenarios, buildNavScenarios, buildSeedScenarios } from './recipes/index.js';
|
|
14
16
|
export { createProvider } from './llm/provider-registry.js';
|
|
@@ -8,9 +8,12 @@ export interface LlmCallResult {
|
|
|
8
8
|
dataQuality: 'actual' | 'estimated';
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
export interface LlmCallOptions {
|
|
12
|
+
temperature?: number;
|
|
13
|
+
}
|
|
11
14
|
export interface LlmProvider {
|
|
12
15
|
readonly name: string;
|
|
13
16
|
readonly model: string;
|
|
14
|
-
call(prompt: string, maxOutputTokens: number): Promise<LlmCallResult>;
|
|
17
|
+
call(prompt: string, maxOutputTokens: number, options?: LlmCallOptions): Promise<LlmCallResult>;
|
|
15
18
|
}
|
|
16
19
|
//# sourceMappingURL=provider.interface.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.interface.d.ts","sourceRoot":"","sources":["../../src/llm/provider.interface.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE;QACL,QAAQ,EAAE,MAAM,CAAC;QACjB,KAAK,EAAE,MAAM,CAAC;QACd,WAAW,EAAE,MAAM,CAAC;QACpB,YAAY,EAAE,MAAM,CAAC;QACrB,WAAW,EAAE,QAAQ,GAAG,WAAW,CAAC;KACrC,CAAC;CACH;AAED,MAAM,WAAW,WAAW;IAC1B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"provider.interface.d.ts","sourceRoot":"","sources":["../../src/llm/provider.interface.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE;QACL,QAAQ,EAAE,MAAM,CAAC;QACjB,KAAK,EAAE,MAAM,CAAC;QACd,WAAW,EAAE,MAAM,CAAC;QACpB,YAAY,EAAE,MAAM,CAAC;QACrB,WAAW,EAAE,QAAQ,GAAG,WAAW,CAAC;KACrC,CAAC;CACH;AAED,MAAM,WAAW,cAAc;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,WAAW;IAC1B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;CACjG"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { LlmCallResult, LlmProvider } from '../provider.interface.js';
|
|
1
|
+
import type { LlmCallOptions, LlmCallResult, LlmProvider } from '../provider.interface.js';
|
|
2
2
|
import type { TelemetrySink } from '../../telemetry/telemetry.interface.js';
|
|
3
3
|
export type AnthropicProviderOptions = {
|
|
4
4
|
model?: string;
|
|
@@ -11,6 +11,6 @@ export declare class AnthropicProvider implements LlmProvider {
|
|
|
11
11
|
private readonly telemetry?;
|
|
12
12
|
private readonly sessionId;
|
|
13
13
|
constructor(options?: AnthropicProviderOptions);
|
|
14
|
-
call(prompt: string, maxOutputTokens: number): Promise<LlmCallResult>;
|
|
14
|
+
call(prompt: string, maxOutputTokens: number, options?: LlmCallOptions): Promise<LlmCallResult>;
|
|
15
15
|
}
|
|
16
16
|
//# sourceMappingURL=anthropic.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"anthropic.d.ts","sourceRoot":"","sources":["../../../src/llm/providers/anthropic.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"anthropic.d.ts","sourceRoot":"","sources":["../../../src/llm/providers/anthropic.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAC3F,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AAS5E,MAAM,MAAM,wBAAwB,GAAG;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,aAAa,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,qBAAa,iBAAkB,YAAW,WAAW;IACnD,QAAQ,CAAC,IAAI,eAAe;IAC5B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAgB;IAC3C,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAS;gBAEvB,OAAO,CAAC,EAAE,wBAAwB;IAMxC,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,OAAO,CAAC,aAAa,CAAC;CAgGtG"}
|
|
@@ -13,7 +13,7 @@ export class AnthropicProvider {
|
|
|
13
13
|
this.telemetry = options?.telemetry;
|
|
14
14
|
this.sessionId = options?.sessionId ?? 'anonymous';
|
|
15
15
|
}
|
|
16
|
-
async call(prompt, maxOutputTokens) {
|
|
16
|
+
async call(prompt, maxOutputTokens, options) {
|
|
17
17
|
const apiKey = process.env.ANTHROPIC_API_KEY;
|
|
18
18
|
if (!apiKey)
|
|
19
19
|
throw new Error('ANTHROPIC_API_KEY is not set');
|
|
@@ -34,6 +34,7 @@ export class AnthropicProvider {
|
|
|
34
34
|
body: JSON.stringify({
|
|
35
35
|
model: this.model,
|
|
36
36
|
max_tokens: maxOutputTokens,
|
|
37
|
+
...(options?.temperature !== undefined ? { temperature: options.temperature } : {}),
|
|
37
38
|
messages: [{ role: 'user', content: prompt }],
|
|
38
39
|
}),
|
|
39
40
|
});
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const BugReportSeveritySchema: z.ZodEnum<["critical", "high", "medium", "low"]>;
|
|
3
|
+
export declare const BugReportInputSchema: z.ZodObject<{
|
|
4
|
+
title: z.ZodString;
|
|
5
|
+
description: z.ZodString;
|
|
6
|
+
steps: z.ZodString;
|
|
7
|
+
severity: z.ZodEnum<["critical", "high", "medium", "low"]>;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
severity: "critical" | "high" | "medium" | "low";
|
|
10
|
+
description: string;
|
|
11
|
+
title: string;
|
|
12
|
+
steps: string;
|
|
13
|
+
}, {
|
|
14
|
+
severity: "critical" | "high" | "medium" | "low";
|
|
15
|
+
description: string;
|
|
16
|
+
title: string;
|
|
17
|
+
steps: string;
|
|
18
|
+
}>;
|
|
19
|
+
export declare const BugReportTargetSchema: z.ZodObject<{
|
|
20
|
+
description: z.ZodString;
|
|
21
|
+
type: z.ZodString;
|
|
22
|
+
severity: z.ZodEnum<["critical", "high", "medium", "low"]>;
|
|
23
|
+
expectedBehavior: z.ZodString;
|
|
24
|
+
}, "strip", z.ZodTypeAny, {
|
|
25
|
+
type: string;
|
|
26
|
+
severity: "critical" | "high" | "medium" | "low";
|
|
27
|
+
description: string;
|
|
28
|
+
expectedBehavior: string;
|
|
29
|
+
}, {
|
|
30
|
+
type: string;
|
|
31
|
+
severity: "critical" | "high" | "medium" | "low";
|
|
32
|
+
description: string;
|
|
33
|
+
expectedBehavior: string;
|
|
34
|
+
}>;
|
|
35
|
+
export declare const ScoreBugReportInputSchema: z.ZodObject<{
|
|
36
|
+
report: z.ZodObject<{
|
|
37
|
+
title: z.ZodString;
|
|
38
|
+
description: z.ZodString;
|
|
39
|
+
steps: z.ZodString;
|
|
40
|
+
severity: z.ZodEnum<["critical", "high", "medium", "low"]>;
|
|
41
|
+
}, "strip", z.ZodTypeAny, {
|
|
42
|
+
severity: "critical" | "high" | "medium" | "low";
|
|
43
|
+
description: string;
|
|
44
|
+
title: string;
|
|
45
|
+
steps: string;
|
|
46
|
+
}, {
|
|
47
|
+
severity: "critical" | "high" | "medium" | "low";
|
|
48
|
+
description: string;
|
|
49
|
+
title: string;
|
|
50
|
+
steps: string;
|
|
51
|
+
}>;
|
|
52
|
+
target: z.ZodObject<{
|
|
53
|
+
description: z.ZodString;
|
|
54
|
+
type: z.ZodString;
|
|
55
|
+
severity: z.ZodEnum<["critical", "high", "medium", "low"]>;
|
|
56
|
+
expectedBehavior: z.ZodString;
|
|
57
|
+
}, "strip", z.ZodTypeAny, {
|
|
58
|
+
type: string;
|
|
59
|
+
severity: "critical" | "high" | "medium" | "low";
|
|
60
|
+
description: string;
|
|
61
|
+
expectedBehavior: string;
|
|
62
|
+
}, {
|
|
63
|
+
type: string;
|
|
64
|
+
severity: "critical" | "high" | "medium" | "low";
|
|
65
|
+
description: string;
|
|
66
|
+
expectedBehavior: string;
|
|
67
|
+
}>;
|
|
68
|
+
}, "strip", z.ZodTypeAny, {
|
|
69
|
+
target: {
|
|
70
|
+
type: string;
|
|
71
|
+
severity: "critical" | "high" | "medium" | "low";
|
|
72
|
+
description: string;
|
|
73
|
+
expectedBehavior: string;
|
|
74
|
+
};
|
|
75
|
+
report: {
|
|
76
|
+
severity: "critical" | "high" | "medium" | "low";
|
|
77
|
+
description: string;
|
|
78
|
+
title: string;
|
|
79
|
+
steps: string;
|
|
80
|
+
};
|
|
81
|
+
}, {
|
|
82
|
+
target: {
|
|
83
|
+
type: string;
|
|
84
|
+
severity: "critical" | "high" | "medium" | "low";
|
|
85
|
+
description: string;
|
|
86
|
+
expectedBehavior: string;
|
|
87
|
+
};
|
|
88
|
+
report: {
|
|
89
|
+
severity: "critical" | "high" | "medium" | "low";
|
|
90
|
+
description: string;
|
|
91
|
+
title: string;
|
|
92
|
+
steps: string;
|
|
93
|
+
};
|
|
94
|
+
}>;
|
|
95
|
+
export declare const BugReportRubricSchema: z.ZodObject<{
|
|
96
|
+
coverage: z.ZodNumber;
|
|
97
|
+
severity: z.ZodNumber;
|
|
98
|
+
repro: z.ZodNumber;
|
|
99
|
+
evidence: z.ZodNumber;
|
|
100
|
+
}, "strip", z.ZodTypeAny, {
|
|
101
|
+
severity: number;
|
|
102
|
+
coverage: number;
|
|
103
|
+
evidence: number;
|
|
104
|
+
repro: number;
|
|
105
|
+
}, {
|
|
106
|
+
severity: number;
|
|
107
|
+
coverage: number;
|
|
108
|
+
evidence: number;
|
|
109
|
+
repro: number;
|
|
110
|
+
}>;
|
|
111
|
+
export declare const BugReportScoringPathSchema: z.ZodEnum<["llm-judge", "deterministic-fallback"]>;
|
|
112
|
+
export declare const BugReportScoreResultSchema: z.ZodObject<{
|
|
113
|
+
matched: z.ZodBoolean;
|
|
114
|
+
matchConfidence: z.ZodNumber;
|
|
115
|
+
rubric: z.ZodObject<{
|
|
116
|
+
coverage: z.ZodNumber;
|
|
117
|
+
severity: z.ZodNumber;
|
|
118
|
+
repro: z.ZodNumber;
|
|
119
|
+
evidence: z.ZodNumber;
|
|
120
|
+
}, "strip", z.ZodTypeAny, {
|
|
121
|
+
severity: number;
|
|
122
|
+
coverage: number;
|
|
123
|
+
evidence: number;
|
|
124
|
+
repro: number;
|
|
125
|
+
}, {
|
|
126
|
+
severity: number;
|
|
127
|
+
coverage: number;
|
|
128
|
+
evidence: number;
|
|
129
|
+
repro: number;
|
|
130
|
+
}>;
|
|
131
|
+
feedback: z.ZodString;
|
|
132
|
+
scoringPath: z.ZodEnum<["llm-judge", "deterministic-fallback"]>;
|
|
133
|
+
}, "strip", z.ZodTypeAny, {
|
|
134
|
+
matched: boolean;
|
|
135
|
+
matchConfidence: number;
|
|
136
|
+
rubric: {
|
|
137
|
+
severity: number;
|
|
138
|
+
coverage: number;
|
|
139
|
+
evidence: number;
|
|
140
|
+
repro: number;
|
|
141
|
+
};
|
|
142
|
+
feedback: string;
|
|
143
|
+
scoringPath: "llm-judge" | "deterministic-fallback";
|
|
144
|
+
}, {
|
|
145
|
+
matched: boolean;
|
|
146
|
+
matchConfidence: number;
|
|
147
|
+
rubric: {
|
|
148
|
+
severity: number;
|
|
149
|
+
coverage: number;
|
|
150
|
+
evidence: number;
|
|
151
|
+
repro: number;
|
|
152
|
+
};
|
|
153
|
+
feedback: string;
|
|
154
|
+
scoringPath: "llm-judge" | "deterministic-fallback";
|
|
155
|
+
}>;
|
|
156
|
+
export type BugReportSeverity = z.infer<typeof BugReportSeveritySchema>;
|
|
157
|
+
export type BugReportInput = z.infer<typeof BugReportInputSchema>;
|
|
158
|
+
export type BugReportTarget = z.infer<typeof BugReportTargetSchema>;
|
|
159
|
+
export type ScoreBugReportInput = z.infer<typeof ScoreBugReportInputSchema>;
|
|
160
|
+
export type BugReportRubric = z.infer<typeof BugReportRubricSchema>;
|
|
161
|
+
export type BugReportScoringPath = z.infer<typeof BugReportScoringPathSchema>;
|
|
162
|
+
export type BugReportScoreResult = z.infer<typeof BugReportScoreResultSchema>;
|
|
163
|
+
//# sourceMappingURL=bug-report-score.schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bug-report-score.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/bug-report-score.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,uBAAuB,kDAAgD,CAAC;AAErF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;EAK/B,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;EAKhC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGpC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;EAKhC,CAAC;AAEH,eAAO,MAAM,0BAA0B,oDAAkD,CAAC;AAE1F,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMrC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACxE,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC9E,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export const BugReportSeveritySchema = z.enum(['critical', 'high', 'medium', 'low']);
|
|
3
|
+
export const BugReportInputSchema = z.object({
|
|
4
|
+
title: z.string().min(1).max(500),
|
|
5
|
+
description: z.string().min(1).max(8000),
|
|
6
|
+
steps: z.string().min(1).max(8000),
|
|
7
|
+
severity: BugReportSeveritySchema,
|
|
8
|
+
});
|
|
9
|
+
export const BugReportTargetSchema = z.object({
|
|
10
|
+
description: z.string().min(1).max(8000),
|
|
11
|
+
type: z.string().min(1).max(200),
|
|
12
|
+
severity: BugReportSeveritySchema,
|
|
13
|
+
expectedBehavior: z.string().min(1).max(8000),
|
|
14
|
+
});
|
|
15
|
+
export const ScoreBugReportInputSchema = z.object({
|
|
16
|
+
report: BugReportInputSchema,
|
|
17
|
+
target: BugReportTargetSchema,
|
|
18
|
+
});
|
|
19
|
+
export const BugReportRubricSchema = z.object({
|
|
20
|
+
coverage: z.number().min(0).max(25),
|
|
21
|
+
severity: z.number().min(0).max(25),
|
|
22
|
+
repro: z.number().min(0).max(25),
|
|
23
|
+
evidence: z.number().min(0).max(25),
|
|
24
|
+
});
|
|
25
|
+
export const BugReportScoringPathSchema = z.enum(['llm-judge', 'deterministic-fallback']);
|
|
26
|
+
export const BugReportScoreResultSchema = z.object({
|
|
27
|
+
matched: z.boolean(),
|
|
28
|
+
matchConfidence: z.number().min(0).max(1),
|
|
29
|
+
rubric: BugReportRubricSchema,
|
|
30
|
+
feedback: z.string(),
|
|
31
|
+
scoringPath: BugReportScoringPathSchema,
|
|
32
|
+
});
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* - tenantId on every record (CLAUDE.md rule 17 — multi-tenant from day one).
|
|
12
12
|
*/
|
|
13
13
|
import { z } from 'zod';
|
|
14
|
-
export declare const EvidenceSourceKindSchema: z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence"]>;
|
|
14
|
+
export declare const EvidenceSourceKindSchema: z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence", "decision-quality"]>;
|
|
15
15
|
export type EvidenceSourceKind = z.infer<typeof EvidenceSourceKindSchema>;
|
|
16
16
|
export declare const ConfidencePolicySchema: z.ZodObject<{
|
|
17
17
|
/**
|
|
@@ -30,28 +30,28 @@ export declare const ConfidencePolicySchema: z.ZodObject<{
|
|
|
30
30
|
* Sources listed here produce verdict='caution' when their applicability is 'unknown'.
|
|
31
31
|
* Empty by default — callers can require specific sources for stricter gates.
|
|
32
32
|
*/
|
|
33
|
-
requiredSources: z.ZodDefault<z.ZodArray<z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence"]>, "many">>;
|
|
33
|
+
requiredSources: z.ZodDefault<z.ZodArray<z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence", "decision-quality"]>, "many">>;
|
|
34
34
|
/**
|
|
35
35
|
* Per-source weight overrides. When provided, these replace the scorer's default weights
|
|
36
36
|
* for the named sources; unmentioned sources keep their defaults.
|
|
37
37
|
*/
|
|
38
|
-
weights: z.ZodOptional<z.ZodRecord<z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence"]>, z.ZodNumber>>;
|
|
38
|
+
weights: z.ZodOptional<z.ZodRecord<z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence", "decision-quality"]>, z.ZodNumber>>;
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
40
|
passThreshold: number;
|
|
41
41
|
failThreshold: number;
|
|
42
42
|
maxListLength: number;
|
|
43
|
-
requiredSources: ("accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence")[];
|
|
44
|
-
weights?: Partial<Record<"accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence", number>> | undefined;
|
|
43
|
+
requiredSources: ("accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality")[];
|
|
44
|
+
weights?: Partial<Record<"accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality", number>> | undefined;
|
|
45
45
|
}, {
|
|
46
46
|
passThreshold?: number | undefined;
|
|
47
47
|
failThreshold?: number | undefined;
|
|
48
48
|
maxListLength?: number | undefined;
|
|
49
|
-
requiredSources?: ("accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence")[] | undefined;
|
|
50
|
-
weights?: Partial<Record<"accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence", number>> | undefined;
|
|
49
|
+
requiredSources?: ("accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality")[] | undefined;
|
|
50
|
+
weights?: Partial<Record<"accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality", number>> | undefined;
|
|
51
51
|
}>;
|
|
52
52
|
export type ConfidencePolicy = z.infer<typeof ConfidencePolicySchema>;
|
|
53
53
|
export declare const EvidenceItemSchema: z.ZodObject<{
|
|
54
|
-
source: z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence"]>;
|
|
54
|
+
source: z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence", "decision-quality"]>;
|
|
55
55
|
/**
|
|
56
56
|
* 0–100 normalized score, or null when the source ran but could not produce
|
|
57
57
|
* an honest score (e.g. auth-blocked crawl). null → excluded from denominator
|
|
@@ -114,7 +114,7 @@ export declare const EvidenceItemSchema: z.ZodObject<{
|
|
|
114
114
|
} | undefined;
|
|
115
115
|
}>;
|
|
116
116
|
}, "strip", z.ZodTypeAny, {
|
|
117
|
-
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence";
|
|
117
|
+
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality";
|
|
118
118
|
recommendations: string[];
|
|
119
119
|
score: number | null;
|
|
120
120
|
weight: number;
|
|
@@ -133,7 +133,7 @@ export declare const EvidenceItemSchema: z.ZodObject<{
|
|
|
133
133
|
};
|
|
134
134
|
reason?: string | undefined;
|
|
135
135
|
}, {
|
|
136
|
-
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence";
|
|
136
|
+
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality";
|
|
137
137
|
score: number | null;
|
|
138
138
|
weight: number;
|
|
139
139
|
evidence: string[];
|
|
@@ -184,7 +184,7 @@ export declare const ConfidenceInputSchema: z.ZodObject<{
|
|
|
184
184
|
tenantId?: string | undefined;
|
|
185
185
|
}>;
|
|
186
186
|
evidence: z.ZodArray<z.ZodObject<{
|
|
187
|
-
source: z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence"]>;
|
|
187
|
+
source: z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence", "decision-quality"]>;
|
|
188
188
|
/**
|
|
189
189
|
* 0–100 normalized score, or null when the source ran but could not produce
|
|
190
190
|
* an honest score (e.g. auth-blocked crawl). null → excluded from denominator
|
|
@@ -247,7 +247,7 @@ export declare const ConfidenceInputSchema: z.ZodObject<{
|
|
|
247
247
|
} | undefined;
|
|
248
248
|
}>;
|
|
249
249
|
}, "strip", z.ZodTypeAny, {
|
|
250
|
-
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence";
|
|
250
|
+
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality";
|
|
251
251
|
recommendations: string[];
|
|
252
252
|
score: number | null;
|
|
253
253
|
weight: number;
|
|
@@ -266,7 +266,7 @@ export declare const ConfidenceInputSchema: z.ZodObject<{
|
|
|
266
266
|
};
|
|
267
267
|
reason?: string | undefined;
|
|
268
268
|
}, {
|
|
269
|
-
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence";
|
|
269
|
+
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality";
|
|
270
270
|
score: number | null;
|
|
271
271
|
weight: number;
|
|
272
272
|
evidence: string[];
|
|
@@ -302,28 +302,28 @@ export declare const ConfidenceInputSchema: z.ZodObject<{
|
|
|
302
302
|
* Sources listed here produce verdict='caution' when their applicability is 'unknown'.
|
|
303
303
|
* Empty by default — callers can require specific sources for stricter gates.
|
|
304
304
|
*/
|
|
305
|
-
requiredSources: z.ZodDefault<z.ZodArray<z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence"]>, "many">>;
|
|
305
|
+
requiredSources: z.ZodDefault<z.ZodArray<z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence", "decision-quality"]>, "many">>;
|
|
306
306
|
/**
|
|
307
307
|
* Per-source weight overrides. When provided, these replace the scorer's default weights
|
|
308
308
|
* for the named sources; unmentioned sources keep their defaults.
|
|
309
309
|
*/
|
|
310
|
-
weights: z.ZodOptional<z.ZodRecord<z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence"]>, z.ZodNumber>>;
|
|
310
|
+
weights: z.ZodOptional<z.ZodRecord<z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence", "decision-quality"]>, z.ZodNumber>>;
|
|
311
311
|
}, "strip", z.ZodTypeAny, {
|
|
312
312
|
passThreshold: number;
|
|
313
313
|
failThreshold: number;
|
|
314
314
|
maxListLength: number;
|
|
315
|
-
requiredSources: ("accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence")[];
|
|
316
|
-
weights?: Partial<Record<"accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence", number>> | undefined;
|
|
315
|
+
requiredSources: ("accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality")[];
|
|
316
|
+
weights?: Partial<Record<"accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality", number>> | undefined;
|
|
317
317
|
}, {
|
|
318
318
|
passThreshold?: number | undefined;
|
|
319
319
|
failThreshold?: number | undefined;
|
|
320
320
|
maxListLength?: number | undefined;
|
|
321
|
-
requiredSources?: ("accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence")[] | undefined;
|
|
322
|
-
weights?: Partial<Record<"accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence", number>> | undefined;
|
|
321
|
+
requiredSources?: ("accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality")[] | undefined;
|
|
322
|
+
weights?: Partial<Record<"accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality", number>> | undefined;
|
|
323
323
|
}>>;
|
|
324
324
|
}, "strip", z.ZodTypeAny, {
|
|
325
325
|
evidence: {
|
|
326
|
-
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence";
|
|
326
|
+
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality";
|
|
327
327
|
recommendations: string[];
|
|
328
328
|
score: number | null;
|
|
329
329
|
weight: number;
|
|
@@ -351,12 +351,12 @@ export declare const ConfidenceInputSchema: z.ZodObject<{
|
|
|
351
351
|
passThreshold: number;
|
|
352
352
|
failThreshold: number;
|
|
353
353
|
maxListLength: number;
|
|
354
|
-
requiredSources: ("accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence")[];
|
|
355
|
-
weights?: Partial<Record<"accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence", number>> | undefined;
|
|
354
|
+
requiredSources: ("accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality")[];
|
|
355
|
+
weights?: Partial<Record<"accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality", number>> | undefined;
|
|
356
356
|
} | undefined;
|
|
357
357
|
}, {
|
|
358
358
|
evidence: {
|
|
359
|
-
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence";
|
|
359
|
+
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality";
|
|
360
360
|
score: number | null;
|
|
361
361
|
weight: number;
|
|
362
362
|
evidence: string[];
|
|
@@ -384,15 +384,15 @@ export declare const ConfidenceInputSchema: z.ZodObject<{
|
|
|
384
384
|
passThreshold?: number | undefined;
|
|
385
385
|
failThreshold?: number | undefined;
|
|
386
386
|
maxListLength?: number | undefined;
|
|
387
|
-
requiredSources?: ("accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence")[] | undefined;
|
|
388
|
-
weights?: Partial<Record<"accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence", number>> | undefined;
|
|
387
|
+
requiredSources?: ("accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality")[] | undefined;
|
|
388
|
+
weights?: Partial<Record<"accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality", number>> | undefined;
|
|
389
389
|
} | undefined;
|
|
390
390
|
}>;
|
|
391
391
|
export type ConfidenceInput = z.infer<typeof ConfidenceInputSchema>;
|
|
392
392
|
export declare const ConfidenceVerdictSchema: z.ZodEnum<["ship", "caution", "hold", "block"]>;
|
|
393
393
|
export type ConfidenceVerdict = z.infer<typeof ConfidenceVerdictSchema>;
|
|
394
394
|
export declare const ConfidenceContributionSchema: z.ZodObject<{
|
|
395
|
-
source: z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence"]>;
|
|
395
|
+
source: z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence", "decision-quality"]>;
|
|
396
396
|
score: z.ZodNullable<z.ZodNumber>;
|
|
397
397
|
weight: z.ZodNumber;
|
|
398
398
|
/** Renormalized weight over the applicable set (sums to 1.0 across applicable items). */
|
|
@@ -400,14 +400,14 @@ export declare const ConfidenceContributionSchema: z.ZodObject<{
|
|
|
400
400
|
applicability: z.ZodEnum<["applicable", "not_applicable", "unknown"]>;
|
|
401
401
|
blocking: z.ZodBoolean;
|
|
402
402
|
}, "strip", z.ZodTypeAny, {
|
|
403
|
-
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence";
|
|
403
|
+
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality";
|
|
404
404
|
score: number | null;
|
|
405
405
|
weight: number;
|
|
406
406
|
applicability: "unknown" | "applicable" | "not_applicable";
|
|
407
407
|
blocking: boolean;
|
|
408
408
|
effectiveWeight: number;
|
|
409
409
|
}, {
|
|
410
|
-
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence";
|
|
410
|
+
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality";
|
|
411
411
|
score: number | null;
|
|
412
412
|
weight: number;
|
|
413
413
|
applicability: "unknown" | "applicable" | "not_applicable";
|
|
@@ -442,7 +442,7 @@ export declare const ReleaseConfidenceSchema: z.ZodObject<{
|
|
|
442
442
|
label: z.ZodString;
|
|
443
443
|
/** Per-source breakdown including excluded (not_applicable / unknown) items. */
|
|
444
444
|
contributions: z.ZodArray<z.ZodObject<{
|
|
445
|
-
source: z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence"]>;
|
|
445
|
+
source: z.ZodEnum<["live-app-quality", "accessibility", "crawl-coverage", "test-automation", "api-coverage", "ci-results", "deploy-metadata", "error-telemetry", "feature-flags", "doc-health", "human-approval", "agent-evidence", "decision-quality"]>;
|
|
446
446
|
score: z.ZodNullable<z.ZodNumber>;
|
|
447
447
|
weight: z.ZodNumber;
|
|
448
448
|
/** Renormalized weight over the applicable set (sums to 1.0 across applicable items). */
|
|
@@ -450,14 +450,14 @@ export declare const ReleaseConfidenceSchema: z.ZodObject<{
|
|
|
450
450
|
applicability: z.ZodEnum<["applicable", "not_applicable", "unknown"]>;
|
|
451
451
|
blocking: z.ZodBoolean;
|
|
452
452
|
}, "strip", z.ZodTypeAny, {
|
|
453
|
-
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence";
|
|
453
|
+
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality";
|
|
454
454
|
score: number | null;
|
|
455
455
|
weight: number;
|
|
456
456
|
applicability: "unknown" | "applicable" | "not_applicable";
|
|
457
457
|
blocking: boolean;
|
|
458
458
|
effectiveWeight: number;
|
|
459
459
|
}, {
|
|
460
|
-
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence";
|
|
460
|
+
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality";
|
|
461
461
|
score: number | null;
|
|
462
462
|
weight: number;
|
|
463
463
|
applicability: "unknown" | "applicable" | "not_applicable";
|
|
@@ -485,7 +485,7 @@ export declare const ReleaseConfidenceSchema: z.ZodObject<{
|
|
|
485
485
|
confidenceScore: number | null;
|
|
486
486
|
verdict: "ship" | "caution" | "hold" | "block";
|
|
487
487
|
contributions: {
|
|
488
|
-
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence";
|
|
488
|
+
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality";
|
|
489
489
|
score: number | null;
|
|
490
490
|
weight: number;
|
|
491
491
|
applicability: "unknown" | "applicable" | "not_applicable";
|
|
@@ -510,7 +510,7 @@ export declare const ReleaseConfidenceSchema: z.ZodObject<{
|
|
|
510
510
|
confidenceScore: number | null;
|
|
511
511
|
verdict: "ship" | "caution" | "hold" | "block";
|
|
512
512
|
contributions: {
|
|
513
|
-
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence";
|
|
513
|
+
source: "accessibility" | "live-app-quality" | "crawl-coverage" | "test-automation" | "api-coverage" | "ci-results" | "deploy-metadata" | "error-telemetry" | "feature-flags" | "doc-health" | "human-approval" | "agent-evidence" | "decision-quality";
|
|
514
514
|
score: number | null;
|
|
515
515
|
weight: number;
|
|
516
516
|
applicability: "unknown" | "applicable" | "not_applicable";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"confidence.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/confidence.schema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,wBAAwB,
|
|
1
|
+
{"version":3,"file":"confidence.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/confidence.schema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,wBAAwB,kPAgBnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAM1E,eAAO,MAAM,sBAAsB;IACjC;;;OAGG;;IAEH;;;OAGG;;IAEH,qFAAqF;;IAErF;;;OAGG;;IAEH;;;OAGG;;;;;;;;;;;;;;EAEH,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAMtE,eAAO,MAAM,kBAAkB;;IAE7B;;;;OAIG;;;IAGH;;;;;;OAMG;;IAEH;;;OAGG;;IAEH,qDAAqD;;;IAGrD,0FAA0F;;IAE1F,0DAA0D;;IAE1D;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYH,CAAC;AACH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAM9D,eAAO,MAAM,uBAAuB;;;IAGlC,qFAAqF;;;;;;;;;;EAErF,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAMxE,eAAO,MAAM,qBAAqB;;;;QAThC,qFAAqF;;;;;;;;;;;;;QAnDrF;;;;WAIG;;;QAGH;;;;;;WAMG;;QAEH;;;WAGG;;QAEH,qDAAqD;;;QAGrD,0FAA0F;;QAE1F,0DAA0D;;QAE1D;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA5DH;;;WAGG;;QAEH;;;WAGG;;QAEH,qFAAqF;;QAErF;;;WAGG;;QAEH;;;WAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2EH,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAMpE,eAAO,MAAM,uBAAuB,iDAA+C,CAAC;AACpF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAMxE,eAAO,MAAM,4BAA4B;;;;IAIvC,yFAAyF;;;;;;;;;;;;;;;;;;EAIzF,CAAC;AACH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAElF,eAAO,MAAM,uBAAuB;;;;;;QAtClC,qFAAqF;;;;;;;;;;;IA0CrF;;;OAGG;;;;;IAKH,gFAAgF;;;;;QAnBhF,yFAAyF;;;;;;;;;;;;;;;;;;;;;IAuBzF,yEAAyE;;IAEzE,2EAA2E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG3E,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
|