@decantr/verifier 2.2.0 → 2.3.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 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
- package/schema/decantr-ci-report.v1.json +104 -0
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ npm install @decantr/verifier
|
|
|
18
18
|
- `critiqueFile()` for file-level review against compiled review-pack contracts
|
|
19
19
|
- `createContractAssertions()` for explicit route, shell, accessibility, context, and design-token assertions derived from Essence/context
|
|
20
20
|
- `createEvidenceBundle()` for privacy-redacted local evidence artifacts used by AI repair loops and CI
|
|
21
|
-
- schema-backed report types for project audits, Project Health, Evidence Bundles, Workspace Health, file critiques, and showcase verification
|
|
21
|
+
- schema-backed report types for project audits, Project Health, Decantr CI reports, Evidence Bundles, Workspace Health, file critiques, and showcase verification
|
|
22
22
|
- `ProjectHealthReport`, `ProjectHealthFinding`, and `ProjectHealthRemediation` types for the CLI's end-user health surface
|
|
23
23
|
- interaction findings now include scanned file counts, file line ranges, and expected signal evidence where available, so CLI health/check output can point agents at source-grounded remediation
|
|
24
24
|
- published verifier report schemas are exercised by AJV-backed round-trip tests against real audit, critique, and shortlist-report outputs
|
|
@@ -56,6 +56,7 @@ function isBlocking(report: ProjectHealthReport) {
|
|
|
56
56
|
- `@decantr/verifier/schema/verification-report.common.v1.json`
|
|
57
57
|
- `@decantr/verifier/schema/project-audit-report.v1.json`
|
|
58
58
|
- `@decantr/verifier/schema/project-health-report.v1.json`
|
|
59
|
+
- `@decantr/verifier/schema/decantr-ci-report.v1.json`
|
|
59
60
|
- `@decantr/verifier/schema/evidence-bundle.v1.json`
|
|
60
61
|
- `@decantr/verifier/schema/workspace-health-report.v1.json`
|
|
61
62
|
- `@decantr/verifier/schema/file-critique-report.v1.json`
|
package/dist/index.d.ts
CHANGED
|
@@ -126,6 +126,7 @@ declare const VERIFICATION_SCHEMA_URLS: {
|
|
|
126
126
|
readonly common: "https://decantr.ai/schemas/verification-report.common.v1.json";
|
|
127
127
|
readonly projectAudit: "https://decantr.ai/schemas/project-audit-report.v1.json";
|
|
128
128
|
readonly projectHealth: "https://decantr.ai/schemas/project-health-report.v1.json";
|
|
129
|
+
readonly decantrCi: "https://decantr.ai/schemas/decantr-ci-report.v1.json";
|
|
129
130
|
readonly evidenceBundle: "https://decantr.ai/schemas/evidence-bundle.v1.json";
|
|
130
131
|
readonly workspaceHealth: "https://decantr.ai/schemas/workspace-health-report.v1.json";
|
|
131
132
|
readonly fileCritique: "https://decantr.ai/schemas/file-critique-report.v1.json";
|
package/dist/index.js
CHANGED
|
@@ -747,6 +747,7 @@ var VERIFICATION_SCHEMA_URLS = {
|
|
|
747
747
|
common: "https://decantr.ai/schemas/verification-report.common.v1.json",
|
|
748
748
|
projectAudit: "https://decantr.ai/schemas/project-audit-report.v1.json",
|
|
749
749
|
projectHealth: "https://decantr.ai/schemas/project-health-report.v1.json",
|
|
750
|
+
decantrCi: "https://decantr.ai/schemas/decantr-ci-report.v1.json",
|
|
750
751
|
evidenceBundle: "https://decantr.ai/schemas/evidence-bundle.v1.json",
|
|
751
752
|
workspaceHealth: "https://decantr.ai/schemas/workspace-health-report.v1.json",
|
|
752
753
|
fileCritique: "https://decantr.ai/schemas/file-critique-report.v1.json",
|