qfai 1.9.0 → 1.9.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.
- package/assets/init/.qfai/assistant/agents/requirements-analyst.md +6 -0
- package/assets/init/.qfai/assistant/manifest/agent-catalog.yml +13 -46
- package/assets/init/.qfai/assistant/skills/qfai-atdd/SKILL.md +21 -0
- package/assets/init/.qfai/assistant/skills/qfai-configure/SKILL.md +21 -0
- package/assets/init/.qfai/assistant/skills/qfai-discussion/SKILL.md +22 -0
- package/assets/init/.qfai/assistant/skills/qfai-discussion/templates/03_Story-Workshop.md +4 -1
- package/assets/init/.qfai/assistant/skills/qfai-implement/SKILL.md +21 -0
- package/assets/init/.qfai/assistant/skills/qfai-prototyping/SKILL.md +81 -55
- package/assets/init/.qfai/assistant/skills/qfai-prototyping/references/evidence-requirements.md +46 -0
- package/assets/init/.qfai/assistant/skills/qfai-prototyping/references/generator-prompt.md +96 -6
- package/assets/init/.qfai/assistant/skills/qfai-sdd/SKILL.md +21 -0
- package/assets/init/.qfai/assistant/skills/qfai-sdd/references/ui-contract-guide.md +61 -0
- package/assets/init/.qfai/assistant/skills/qfai-sdd/templates/contracts/ui-contract.sample.yaml +9 -0
- package/assets/init/.qfai/assistant/skills/qfai-verify/SKILL.md +21 -0
- package/dist/cli/index.cjs +21118 -15483
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.mjs +18057 -12413
- package/dist/cli/index.mjs.map +1 -1
- package/dist/index.cjs +2386 -659
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +44 -5
- package/dist/index.d.ts +44 -5
- package/dist/index.mjs +2369 -636
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -1
package/dist/index.d.cts
CHANGED
|
@@ -37,7 +37,7 @@ type ValidationCounts = {
|
|
|
37
37
|
warning: number;
|
|
38
38
|
error: number;
|
|
39
39
|
};
|
|
40
|
-
type ValidationProfile = "discussion" | "sdd" | "prototyping" | "atdd" | "tdd" | "verify" | "full";
|
|
40
|
+
type ValidationProfile = "discussion" | "sdd" | "prototyping" | "atdd" | "tdd" | "verify" | "full" | "saas-package";
|
|
41
41
|
type ValidationTraceability = {
|
|
42
42
|
sc: ScCoverage;
|
|
43
43
|
testFiles: TestFileScan;
|
|
@@ -165,10 +165,16 @@ type QfaiPrototypingCalibrationConfig = {
|
|
|
165
165
|
type QfaiPrototypingExecutionConfig = {
|
|
166
166
|
targetUrl?: string | null;
|
|
167
167
|
/**
|
|
168
|
-
* Browser tool handed to the AI evaluator sub-agent.
|
|
169
|
-
*
|
|
168
|
+
* Browser tool handed to the AI evaluator sub-agent.
|
|
169
|
+
*
|
|
170
|
+
* Accepted values during the deprecation window:
|
|
171
|
+
* - `"playwright"` (primary, post-1.9.x default).
|
|
172
|
+
* - `"playwright-cli"` (deprecated; sunset 1.10.0). When chosen,
|
|
173
|
+
* the doctor probe emits `D-DEPRECATED-PROBE` (severity warning).
|
|
174
|
+
*
|
|
175
|
+
* At sunset only `"playwright"` is accepted.
|
|
170
176
|
*/
|
|
171
|
-
browserTool: "playwright-cli";
|
|
177
|
+
browserTool: "playwright" | "playwright-cli";
|
|
172
178
|
};
|
|
173
179
|
type QfaiPrototypingConfig = {
|
|
174
180
|
calibration?: QfaiPrototypingCalibrationConfig;
|
|
@@ -180,6 +186,37 @@ type QfaiPrototypingConfig = {
|
|
|
180
186
|
* e.g. `"0001"`.
|
|
181
187
|
*/
|
|
182
188
|
primarySpecId?: string;
|
|
189
|
+
/**
|
|
190
|
+
* CHG-006 second-wave loop posture discriminator.
|
|
191
|
+
*
|
|
192
|
+
* - `convergence` (default): every prototyping gate applies at the
|
|
193
|
+
* declared severity (today's behavior).
|
|
194
|
+
* - `exploration`: medium gate relaxation — soft-rubric gates
|
|
195
|
+
* (axes-exceptional, design-compliance drift) downgrade error →
|
|
196
|
+
* warning. Schema / path / license (exit 66) gates stay hard
|
|
197
|
+
* error.
|
|
198
|
+
*
|
|
199
|
+
* Overridden per-run by `qfai prototyping iterate --mode <value>`.
|
|
200
|
+
* Optional; absence defaults to `convergence`.
|
|
201
|
+
*/
|
|
202
|
+
mode?: "convergence" | "exploration";
|
|
203
|
+
};
|
|
204
|
+
type QfaiReviewConfig = {
|
|
205
|
+
/**
|
|
206
|
+
* Stale review-pack TTL (calendar days) used by `qfai doctor --clean`
|
|
207
|
+
* to decide whether to move `.qfai/review/<ts>/` packs into
|
|
208
|
+
* `.qfai/review/_archive/<ts>/`. Default (when unset) is applied at
|
|
209
|
+
* the call-site by `REVIEW_STALE_TTL_DAYS_DEFAULT`.
|
|
210
|
+
*/
|
|
211
|
+
staleTtlDays?: number;
|
|
212
|
+
};
|
|
213
|
+
type QfaiAtddConfig = {
|
|
214
|
+
/**
|
|
215
|
+
* Number of consecutive un-skip + re-skip cycles tolerated before the
|
|
216
|
+
* scaffold-cycle escalation fires. Default (when unset) is applied at
|
|
217
|
+
* the call-site. Pre-positioned for the spec-0008 ATDD scaffold slice.
|
|
218
|
+
*/
|
|
219
|
+
scaffoldEscalateCycles?: number;
|
|
183
220
|
};
|
|
184
221
|
type QfaiConfig = {
|
|
185
222
|
paths: QfaiPaths;
|
|
@@ -187,6 +224,8 @@ type QfaiConfig = {
|
|
|
187
224
|
output: QfaiOutputConfig;
|
|
188
225
|
uiux?: QfaiUiuxConfig;
|
|
189
226
|
prototyping?: QfaiPrototypingConfig;
|
|
227
|
+
review?: QfaiReviewConfig;
|
|
228
|
+
atdd?: QfaiAtddConfig;
|
|
190
229
|
baseBranch?: string;
|
|
191
230
|
};
|
|
192
231
|
type ConfigPathKey = keyof QfaiPaths;
|
|
@@ -894,4 +933,4 @@ declare function parseDesignMd(text: string): ParseResult;
|
|
|
894
933
|
declare function validateDesignMd(d: DesignMd): ValidationIssue[];
|
|
895
934
|
declare function hashDesignMd(text: string): string;
|
|
896
935
|
|
|
897
|
-
export { ARCHETYPES, type Archetype, type AtddCodeTraceabilityResult, type AtddForbiddenRef, type AtddSpecRefs, type AtddTestKind, type AtddTraceabilityMissing, type AtddTraceabilityScan, type AtddUnknownRef, type AtddUnknownRefKind, BROWSER_QA_PHASES, COLOR_KEYS, type ColorKey, type ConfigLoadResult, type ConfigPathKey, type ConfigSearchResult, DISCUSSION_NON_UI_SURFACES, DISCUSSION_UI_BEARING_SURFACES, type DecisionGuardrail, type DecisionGuardrailEntry, type DesignMd, type DesignMdColors, type DesignMdFonts, type DesignMdRadius, type DesignMdShadow, FONT_KEYS, type FailOn, type FontKey, type GuardrailCheckResult, type GuardrailIssue, type GuardrailIssueSeverity, type GuardrailLoadError, type GuardrailLoadResult, type GuardrailType, ID_PREFIXES, type IdFormatPrefix, type IdPrefix, type Issue, type IssueCategory, type IssueLocation, type IssueSeverity, type OrphanContractsPolicy, type OutputFormat, PROTOTYPING_SUPPORTED_SURFACES, type ParseError, type ParseResult, type PrototypingBrowserTool, type PrototypingSurface, type QfaiConfig, type QfaiOutputConfig, type QfaiPaths, type QfaiPrototypingCalibrationConfig, type QfaiPrototypingConfig, type QfaiPrototypingExecutionConfig, type QfaiUiuxAuditConfig, type QfaiUiuxConfig, type QfaiValidationConfig, RADIUS_KEYS, type RadiusKey, type ReportChangeType, type ReportChangeTypeSummary, type ReportChangeTypeWarning, type ReportContractCoverage, type ReportData, type ReportDeltaCoverage, type ReportFullHarnessExecution, type ReportGuardrailItem, type ReportGuardrails, type ReportIds, type ReportPrototypingSummary, type ReportRoundLifecycle, type ReportRuleFinding, type ReportSpecContractRefs, type ReportSpecCoverage, type ReportSummary, type ReportSurfaceClassification, type ReportTddCoverage, type ReportTddCoverageSpec, type ReportTestStrategy, type ReportTraceability, type ReportWaivers, type RunSddPreflightOptions, SHADOW_KEYS, type SddPreflightResult, type SddPreflightSource, type SddPreflightStatus, type ShadowKey, type TraceabilitySeverity, VISUAL_BROWSER_SURFACES, type ValidationCounts, type ValidationIssue, type ValidationOptions, type ValidationProfile, type ValidationResult, type ValidationTraceability, type ValidationWaiverAction, type ValidationWaiverDowngradeTo, type ValidationWaiverEntry, type ValidationWaiverMatch, type ValidationWaiverScope, type ValidationWaiverSeverity, type ValidationWaiverSuppressed, type ValidationWaivers, checkDecisionGuardrails, createReportData, defaultConfig, evaluateAtddCodeTraceability, extractAcSpecNumber, extractAllIds, extractBrSpecNumber, extractCapSpecNumber, extractCaseSpecNumber, extractDecisionGuardrailsFromMarkdown, extractIds, extractInvalidIds, extractScSpecNumber, extractSpecNumber, extractUsSpecNumber, filterDecisionGuardrailsByKeyword, findConfigRoot, formatGuardrailsForLlm, formatReportJson, formatReportMarkdown, getConfigPath, hashDesignMd, isDiscussionUiBearingSurfaceType, isNonUiDiscussionSurface, isSupportedPrototypingSurface, isValidPrototypingSurface, lintSql, loadConfig, loadDecisionGuardrails, normalizeDecisionGuardrails, parseDesignMd, requiresVisualBrowserEvidence, resolvePath, resolveToolVersion, runBrowserQaOrchestrated, runRenderCapture, runSddPreflight, sortDecisionGuardrails, summarizeBrowserQaResult, validateAtddCodeTraceability, validateContracts, validateDefinedIds, validateDesignMd, validateLayeredTraceability, validateOrphanProhibition, validateProject, validateSpecSplitByCapability, validateTraceability };
|
|
936
|
+
export { ARCHETYPES, type Archetype, type AtddCodeTraceabilityResult, type AtddForbiddenRef, type AtddSpecRefs, type AtddTestKind, type AtddTraceabilityMissing, type AtddTraceabilityScan, type AtddUnknownRef, type AtddUnknownRefKind, BROWSER_QA_PHASES, COLOR_KEYS, type ColorKey, type ConfigLoadResult, type ConfigPathKey, type ConfigSearchResult, DISCUSSION_NON_UI_SURFACES, DISCUSSION_UI_BEARING_SURFACES, type DecisionGuardrail, type DecisionGuardrailEntry, type DesignMd, type DesignMdColors, type DesignMdFonts, type DesignMdRadius, type DesignMdShadow, FONT_KEYS, type FailOn, type FontKey, type GuardrailCheckResult, type GuardrailIssue, type GuardrailIssueSeverity, type GuardrailLoadError, type GuardrailLoadResult, type GuardrailType, ID_PREFIXES, type IdFormatPrefix, type IdPrefix, type Issue, type IssueCategory, type IssueLocation, type IssueSeverity, type OrphanContractsPolicy, type OutputFormat, PROTOTYPING_SUPPORTED_SURFACES, type ParseError, type ParseResult, type PrototypingBrowserTool, type PrototypingSurface, type QfaiAtddConfig, type QfaiConfig, type QfaiOutputConfig, type QfaiPaths, type QfaiPrototypingCalibrationConfig, type QfaiPrototypingConfig, type QfaiPrototypingExecutionConfig, type QfaiReviewConfig, type QfaiUiuxAuditConfig, type QfaiUiuxConfig, type QfaiValidationConfig, RADIUS_KEYS, type RadiusKey, type ReportChangeType, type ReportChangeTypeSummary, type ReportChangeTypeWarning, type ReportContractCoverage, type ReportData, type ReportDeltaCoverage, type ReportFullHarnessExecution, type ReportGuardrailItem, type ReportGuardrails, type ReportIds, type ReportPrototypingSummary, type ReportRoundLifecycle, type ReportRuleFinding, type ReportSpecContractRefs, type ReportSpecCoverage, type ReportSummary, type ReportSurfaceClassification, type ReportTddCoverage, type ReportTddCoverageSpec, type ReportTestStrategy, type ReportTraceability, type ReportWaivers, type RunSddPreflightOptions, SHADOW_KEYS, type SddPreflightResult, type SddPreflightSource, type SddPreflightStatus, type ShadowKey, type TraceabilitySeverity, VISUAL_BROWSER_SURFACES, type ValidationCounts, type ValidationIssue, type ValidationOptions, type ValidationProfile, type ValidationResult, type ValidationTraceability, type ValidationWaiverAction, type ValidationWaiverDowngradeTo, type ValidationWaiverEntry, type ValidationWaiverMatch, type ValidationWaiverScope, type ValidationWaiverSeverity, type ValidationWaiverSuppressed, type ValidationWaivers, checkDecisionGuardrails, createReportData, defaultConfig, evaluateAtddCodeTraceability, extractAcSpecNumber, extractAllIds, extractBrSpecNumber, extractCapSpecNumber, extractCaseSpecNumber, extractDecisionGuardrailsFromMarkdown, extractIds, extractInvalidIds, extractScSpecNumber, extractSpecNumber, extractUsSpecNumber, filterDecisionGuardrailsByKeyword, findConfigRoot, formatGuardrailsForLlm, formatReportJson, formatReportMarkdown, getConfigPath, hashDesignMd, isDiscussionUiBearingSurfaceType, isNonUiDiscussionSurface, isSupportedPrototypingSurface, isValidPrototypingSurface, lintSql, loadConfig, loadDecisionGuardrails, normalizeDecisionGuardrails, parseDesignMd, requiresVisualBrowserEvidence, resolvePath, resolveToolVersion, runBrowserQaOrchestrated, runRenderCapture, runSddPreflight, sortDecisionGuardrails, summarizeBrowserQaResult, validateAtddCodeTraceability, validateContracts, validateDefinedIds, validateDesignMd, validateLayeredTraceability, validateOrphanProhibition, validateProject, validateSpecSplitByCapability, validateTraceability };
|
package/dist/index.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ type ValidationCounts = {
|
|
|
37
37
|
warning: number;
|
|
38
38
|
error: number;
|
|
39
39
|
};
|
|
40
|
-
type ValidationProfile = "discussion" | "sdd" | "prototyping" | "atdd" | "tdd" | "verify" | "full";
|
|
40
|
+
type ValidationProfile = "discussion" | "sdd" | "prototyping" | "atdd" | "tdd" | "verify" | "full" | "saas-package";
|
|
41
41
|
type ValidationTraceability = {
|
|
42
42
|
sc: ScCoverage;
|
|
43
43
|
testFiles: TestFileScan;
|
|
@@ -165,10 +165,16 @@ type QfaiPrototypingCalibrationConfig = {
|
|
|
165
165
|
type QfaiPrototypingExecutionConfig = {
|
|
166
166
|
targetUrl?: string | null;
|
|
167
167
|
/**
|
|
168
|
-
* Browser tool handed to the AI evaluator sub-agent.
|
|
169
|
-
*
|
|
168
|
+
* Browser tool handed to the AI evaluator sub-agent.
|
|
169
|
+
*
|
|
170
|
+
* Accepted values during the deprecation window:
|
|
171
|
+
* - `"playwright"` (primary, post-1.9.x default).
|
|
172
|
+
* - `"playwright-cli"` (deprecated; sunset 1.10.0). When chosen,
|
|
173
|
+
* the doctor probe emits `D-DEPRECATED-PROBE` (severity warning).
|
|
174
|
+
*
|
|
175
|
+
* At sunset only `"playwright"` is accepted.
|
|
170
176
|
*/
|
|
171
|
-
browserTool: "playwright-cli";
|
|
177
|
+
browserTool: "playwright" | "playwright-cli";
|
|
172
178
|
};
|
|
173
179
|
type QfaiPrototypingConfig = {
|
|
174
180
|
calibration?: QfaiPrototypingCalibrationConfig;
|
|
@@ -180,6 +186,37 @@ type QfaiPrototypingConfig = {
|
|
|
180
186
|
* e.g. `"0001"`.
|
|
181
187
|
*/
|
|
182
188
|
primarySpecId?: string;
|
|
189
|
+
/**
|
|
190
|
+
* CHG-006 second-wave loop posture discriminator.
|
|
191
|
+
*
|
|
192
|
+
* - `convergence` (default): every prototyping gate applies at the
|
|
193
|
+
* declared severity (today's behavior).
|
|
194
|
+
* - `exploration`: medium gate relaxation — soft-rubric gates
|
|
195
|
+
* (axes-exceptional, design-compliance drift) downgrade error →
|
|
196
|
+
* warning. Schema / path / license (exit 66) gates stay hard
|
|
197
|
+
* error.
|
|
198
|
+
*
|
|
199
|
+
* Overridden per-run by `qfai prototyping iterate --mode <value>`.
|
|
200
|
+
* Optional; absence defaults to `convergence`.
|
|
201
|
+
*/
|
|
202
|
+
mode?: "convergence" | "exploration";
|
|
203
|
+
};
|
|
204
|
+
type QfaiReviewConfig = {
|
|
205
|
+
/**
|
|
206
|
+
* Stale review-pack TTL (calendar days) used by `qfai doctor --clean`
|
|
207
|
+
* to decide whether to move `.qfai/review/<ts>/` packs into
|
|
208
|
+
* `.qfai/review/_archive/<ts>/`. Default (when unset) is applied at
|
|
209
|
+
* the call-site by `REVIEW_STALE_TTL_DAYS_DEFAULT`.
|
|
210
|
+
*/
|
|
211
|
+
staleTtlDays?: number;
|
|
212
|
+
};
|
|
213
|
+
type QfaiAtddConfig = {
|
|
214
|
+
/**
|
|
215
|
+
* Number of consecutive un-skip + re-skip cycles tolerated before the
|
|
216
|
+
* scaffold-cycle escalation fires. Default (when unset) is applied at
|
|
217
|
+
* the call-site. Pre-positioned for the spec-0008 ATDD scaffold slice.
|
|
218
|
+
*/
|
|
219
|
+
scaffoldEscalateCycles?: number;
|
|
183
220
|
};
|
|
184
221
|
type QfaiConfig = {
|
|
185
222
|
paths: QfaiPaths;
|
|
@@ -187,6 +224,8 @@ type QfaiConfig = {
|
|
|
187
224
|
output: QfaiOutputConfig;
|
|
188
225
|
uiux?: QfaiUiuxConfig;
|
|
189
226
|
prototyping?: QfaiPrototypingConfig;
|
|
227
|
+
review?: QfaiReviewConfig;
|
|
228
|
+
atdd?: QfaiAtddConfig;
|
|
190
229
|
baseBranch?: string;
|
|
191
230
|
};
|
|
192
231
|
type ConfigPathKey = keyof QfaiPaths;
|
|
@@ -894,4 +933,4 @@ declare function parseDesignMd(text: string): ParseResult;
|
|
|
894
933
|
declare function validateDesignMd(d: DesignMd): ValidationIssue[];
|
|
895
934
|
declare function hashDesignMd(text: string): string;
|
|
896
935
|
|
|
897
|
-
export { ARCHETYPES, type Archetype, type AtddCodeTraceabilityResult, type AtddForbiddenRef, type AtddSpecRefs, type AtddTestKind, type AtddTraceabilityMissing, type AtddTraceabilityScan, type AtddUnknownRef, type AtddUnknownRefKind, BROWSER_QA_PHASES, COLOR_KEYS, type ColorKey, type ConfigLoadResult, type ConfigPathKey, type ConfigSearchResult, DISCUSSION_NON_UI_SURFACES, DISCUSSION_UI_BEARING_SURFACES, type DecisionGuardrail, type DecisionGuardrailEntry, type DesignMd, type DesignMdColors, type DesignMdFonts, type DesignMdRadius, type DesignMdShadow, FONT_KEYS, type FailOn, type FontKey, type GuardrailCheckResult, type GuardrailIssue, type GuardrailIssueSeverity, type GuardrailLoadError, type GuardrailLoadResult, type GuardrailType, ID_PREFIXES, type IdFormatPrefix, type IdPrefix, type Issue, type IssueCategory, type IssueLocation, type IssueSeverity, type OrphanContractsPolicy, type OutputFormat, PROTOTYPING_SUPPORTED_SURFACES, type ParseError, type ParseResult, type PrototypingBrowserTool, type PrototypingSurface, type QfaiConfig, type QfaiOutputConfig, type QfaiPaths, type QfaiPrototypingCalibrationConfig, type QfaiPrototypingConfig, type QfaiPrototypingExecutionConfig, type QfaiUiuxAuditConfig, type QfaiUiuxConfig, type QfaiValidationConfig, RADIUS_KEYS, type RadiusKey, type ReportChangeType, type ReportChangeTypeSummary, type ReportChangeTypeWarning, type ReportContractCoverage, type ReportData, type ReportDeltaCoverage, type ReportFullHarnessExecution, type ReportGuardrailItem, type ReportGuardrails, type ReportIds, type ReportPrototypingSummary, type ReportRoundLifecycle, type ReportRuleFinding, type ReportSpecContractRefs, type ReportSpecCoverage, type ReportSummary, type ReportSurfaceClassification, type ReportTddCoverage, type ReportTddCoverageSpec, type ReportTestStrategy, type ReportTraceability, type ReportWaivers, type RunSddPreflightOptions, SHADOW_KEYS, type SddPreflightResult, type SddPreflightSource, type SddPreflightStatus, type ShadowKey, type TraceabilitySeverity, VISUAL_BROWSER_SURFACES, type ValidationCounts, type ValidationIssue, type ValidationOptions, type ValidationProfile, type ValidationResult, type ValidationTraceability, type ValidationWaiverAction, type ValidationWaiverDowngradeTo, type ValidationWaiverEntry, type ValidationWaiverMatch, type ValidationWaiverScope, type ValidationWaiverSeverity, type ValidationWaiverSuppressed, type ValidationWaivers, checkDecisionGuardrails, createReportData, defaultConfig, evaluateAtddCodeTraceability, extractAcSpecNumber, extractAllIds, extractBrSpecNumber, extractCapSpecNumber, extractCaseSpecNumber, extractDecisionGuardrailsFromMarkdown, extractIds, extractInvalidIds, extractScSpecNumber, extractSpecNumber, extractUsSpecNumber, filterDecisionGuardrailsByKeyword, findConfigRoot, formatGuardrailsForLlm, formatReportJson, formatReportMarkdown, getConfigPath, hashDesignMd, isDiscussionUiBearingSurfaceType, isNonUiDiscussionSurface, isSupportedPrototypingSurface, isValidPrototypingSurface, lintSql, loadConfig, loadDecisionGuardrails, normalizeDecisionGuardrails, parseDesignMd, requiresVisualBrowserEvidence, resolvePath, resolveToolVersion, runBrowserQaOrchestrated, runRenderCapture, runSddPreflight, sortDecisionGuardrails, summarizeBrowserQaResult, validateAtddCodeTraceability, validateContracts, validateDefinedIds, validateDesignMd, validateLayeredTraceability, validateOrphanProhibition, validateProject, validateSpecSplitByCapability, validateTraceability };
|
|
936
|
+
export { ARCHETYPES, type Archetype, type AtddCodeTraceabilityResult, type AtddForbiddenRef, type AtddSpecRefs, type AtddTestKind, type AtddTraceabilityMissing, type AtddTraceabilityScan, type AtddUnknownRef, type AtddUnknownRefKind, BROWSER_QA_PHASES, COLOR_KEYS, type ColorKey, type ConfigLoadResult, type ConfigPathKey, type ConfigSearchResult, DISCUSSION_NON_UI_SURFACES, DISCUSSION_UI_BEARING_SURFACES, type DecisionGuardrail, type DecisionGuardrailEntry, type DesignMd, type DesignMdColors, type DesignMdFonts, type DesignMdRadius, type DesignMdShadow, FONT_KEYS, type FailOn, type FontKey, type GuardrailCheckResult, type GuardrailIssue, type GuardrailIssueSeverity, type GuardrailLoadError, type GuardrailLoadResult, type GuardrailType, ID_PREFIXES, type IdFormatPrefix, type IdPrefix, type Issue, type IssueCategory, type IssueLocation, type IssueSeverity, type OrphanContractsPolicy, type OutputFormat, PROTOTYPING_SUPPORTED_SURFACES, type ParseError, type ParseResult, type PrototypingBrowserTool, type PrototypingSurface, type QfaiAtddConfig, type QfaiConfig, type QfaiOutputConfig, type QfaiPaths, type QfaiPrototypingCalibrationConfig, type QfaiPrototypingConfig, type QfaiPrototypingExecutionConfig, type QfaiReviewConfig, type QfaiUiuxAuditConfig, type QfaiUiuxConfig, type QfaiValidationConfig, RADIUS_KEYS, type RadiusKey, type ReportChangeType, type ReportChangeTypeSummary, type ReportChangeTypeWarning, type ReportContractCoverage, type ReportData, type ReportDeltaCoverage, type ReportFullHarnessExecution, type ReportGuardrailItem, type ReportGuardrails, type ReportIds, type ReportPrototypingSummary, type ReportRoundLifecycle, type ReportRuleFinding, type ReportSpecContractRefs, type ReportSpecCoverage, type ReportSummary, type ReportSurfaceClassification, type ReportTddCoverage, type ReportTddCoverageSpec, type ReportTestStrategy, type ReportTraceability, type ReportWaivers, type RunSddPreflightOptions, SHADOW_KEYS, type SddPreflightResult, type SddPreflightSource, type SddPreflightStatus, type ShadowKey, type TraceabilitySeverity, VISUAL_BROWSER_SURFACES, type ValidationCounts, type ValidationIssue, type ValidationOptions, type ValidationProfile, type ValidationResult, type ValidationTraceability, type ValidationWaiverAction, type ValidationWaiverDowngradeTo, type ValidationWaiverEntry, type ValidationWaiverMatch, type ValidationWaiverScope, type ValidationWaiverSeverity, type ValidationWaiverSuppressed, type ValidationWaivers, checkDecisionGuardrails, createReportData, defaultConfig, evaluateAtddCodeTraceability, extractAcSpecNumber, extractAllIds, extractBrSpecNumber, extractCapSpecNumber, extractCaseSpecNumber, extractDecisionGuardrailsFromMarkdown, extractIds, extractInvalidIds, extractScSpecNumber, extractSpecNumber, extractUsSpecNumber, filterDecisionGuardrailsByKeyword, findConfigRoot, formatGuardrailsForLlm, formatReportJson, formatReportMarkdown, getConfigPath, hashDesignMd, isDiscussionUiBearingSurfaceType, isNonUiDiscussionSurface, isSupportedPrototypingSurface, isValidPrototypingSurface, lintSql, loadConfig, loadDecisionGuardrails, normalizeDecisionGuardrails, parseDesignMd, requiresVisualBrowserEvidence, resolvePath, resolveToolVersion, runBrowserQaOrchestrated, runRenderCapture, runSddPreflight, sortDecisionGuardrails, summarizeBrowserQaResult, validateAtddCodeTraceability, validateContracts, validateDefinedIds, validateDesignMd, validateLayeredTraceability, validateOrphanProhibition, validateProject, validateSpecSplitByCapability, validateTraceability };
|