agentskeptic 0.1.1 → 0.1.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.
Files changed (43) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +342 -342
  3. package/dist/cli.js +157 -157
  4. package/dist/debug-ui/app.css +188 -188
  5. package/dist/debug-ui/app.js +245 -245
  6. package/dist/debug-ui/index.html +79 -79
  7. package/dist/enforceCli.js +11 -11
  8. package/dist/planTransition.test.js +235 -235
  9. package/dist/planTransitionPathHarvest.test.js +116 -116
  10. package/dist/quickVerify/postgresCatalog.js +53 -53
  11. package/package.json +1 -1
  12. package/schemas/agent-run-record-v1.schema.json +51 -51
  13. package/schemas/agent-run-record-v2.schema.json +61 -61
  14. package/schemas/assurance-manifest-v1.schema.json +28 -28
  15. package/schemas/assurance-run-report-v1.schema.json +28 -28
  16. package/schemas/ci-lock-v1.schema.json +163 -163
  17. package/schemas/cli-error-envelope.schema.json +48 -48
  18. package/schemas/event.schema.json +111 -111
  19. package/schemas/execution-trace-view.schema.json +122 -122
  20. package/schemas/plan-validation-core.schema.json +95 -95
  21. package/schemas/quick-verify-report.schema.json +251 -251
  22. package/schemas/registry-validation-result.schema.json +99 -99
  23. package/schemas/run-comparison-report.schema.json +513 -513
  24. package/schemas/tools-registry-export.schema.json +9 -9
  25. package/schemas/tools-registry.schema.json +284 -284
  26. package/schemas/workflow-engine-result.schema.json +591 -591
  27. package/schemas/workflow-result-compare-input.schema.json +15 -15
  28. package/schemas/workflow-result-signature.schema.json +20 -20
  29. package/schemas/workflow-result-v9.schema.json +85 -85
  30. package/schemas/workflow-result.schema.json +80 -80
  31. package/schemas/workflow-truth-report.schema.json +761 -761
  32. package/dist/failureOriginSchemaEnum.test.d.ts +0 -2
  33. package/dist/failureOriginSchemaEnum.test.d.ts.map +0 -1
  34. package/dist/failureOriginSchemaEnum.test.js +0 -21
  35. package/dist/failureOriginSchemaEnum.test.js.map +0 -1
  36. package/dist/failureOriginSchemaParity.test.d.ts +0 -2
  37. package/dist/failureOriginSchemaParity.test.d.ts.map +0 -1
  38. package/dist/failureOriginSchemaParity.test.js +0 -33
  39. package/dist/failureOriginSchemaParity.test.js.map +0 -1
  40. package/dist/slice6.compare.ac.test.d.ts +0 -2
  41. package/dist/slice6.compare.ac.test.d.ts.map +0 -1
  42. package/dist/slice6.compare.ac.test.js +0 -81
  43. package/dist/slice6.compare.ac.test.js.map +0 -1
@@ -1,95 +1,95 @@
1
- {
2
- "$id": "https://agentskeptic.com/schemas/plan-validation-core.schema.json",
3
- "title": "PlanValidationCore",
4
- "type": "object",
5
- "additionalProperties": false,
6
- "required": ["schemaVersion", "rules"],
7
- "properties": {
8
- "schemaVersion": { "const": 1 },
9
- "rules": {
10
- "type": "array",
11
- "items": { "$ref": "#/$defs/planRule" }
12
- }
13
- },
14
- "$defs": {
15
- "rowKindEnum": {
16
- "type": "string",
17
- "enum": ["add", "modify", "delete", "rename", "copy", "type_change", "unmerged"]
18
- },
19
- "planRule": {
20
- "oneOf": [
21
- {
22
- "type": "object",
23
- "additionalProperties": false,
24
- "required": ["id", "kind", "pattern", "rowKinds"],
25
- "properties": {
26
- "id": { "type": "string", "pattern": "^[a-zA-Z0-9._-]+$" },
27
- "kind": { "const": "matchingRowsMustHaveRowKinds" },
28
- "description": { "type": "string" },
29
- "pattern": { "type": "string", "minLength": 1 },
30
- "rowKinds": {
31
- "type": "array",
32
- "minItems": 1,
33
- "items": { "$ref": "#/$defs/rowKindEnum" }
34
- }
35
- }
36
- },
37
- {
38
- "type": "object",
39
- "additionalProperties": false,
40
- "required": ["id", "kind", "pattern"],
41
- "properties": {
42
- "id": { "type": "string", "pattern": "^[a-zA-Z0-9._-]+$" },
43
- "kind": { "const": "forbidMatchingRows" },
44
- "description": { "type": "string" },
45
- "pattern": { "type": "string", "minLength": 1 }
46
- }
47
- },
48
- {
49
- "type": "object",
50
- "additionalProperties": false,
51
- "required": ["id", "kind", "pattern", "rowKinds"],
52
- "properties": {
53
- "id": { "type": "string", "pattern": "^[a-zA-Z0-9._-]+$" },
54
- "kind": { "const": "requireMatchingRow" },
55
- "description": { "type": "string" },
56
- "pattern": { "type": "string", "minLength": 1 },
57
- "rowKinds": {
58
- "type": "array",
59
- "minItems": 1,
60
- "items": { "$ref": "#/$defs/rowKindEnum" }
61
- }
62
- }
63
- },
64
- {
65
- "type": "object",
66
- "additionalProperties": false,
67
- "required": ["id", "kind", "allowPatterns"],
68
- "properties": {
69
- "id": { "type": "string", "pattern": "^[a-zA-Z0-9._-]+$" },
70
- "kind": { "const": "allChangedPathsMustMatchAllowlist" },
71
- "description": { "type": "string" },
72
- "allowPatterns": {
73
- "type": "array",
74
- "minItems": 1,
75
- "items": { "type": "string", "minLength": 1 }
76
- }
77
- }
78
- },
79
- {
80
- "type": "object",
81
- "additionalProperties": false,
82
- "required": ["id", "kind", "fromPattern", "toPattern", "includeCopy"],
83
- "properties": {
84
- "id": { "type": "string", "pattern": "^[a-zA-Z0-9._-]+$" },
85
- "kind": { "const": "requireRenameFromTo" },
86
- "description": { "type": "string" },
87
- "fromPattern": { "type": "string", "minLength": 1 },
88
- "toPattern": { "type": "string", "minLength": 1 },
89
- "includeCopy": { "type": "boolean" }
90
- }
91
- }
92
- ]
93
- }
94
- }
95
- }
1
+ {
2
+ "$id": "https://agentskeptic.com/schemas/plan-validation-core.schema.json",
3
+ "title": "PlanValidationCore",
4
+ "type": "object",
5
+ "additionalProperties": false,
6
+ "required": ["schemaVersion", "rules"],
7
+ "properties": {
8
+ "schemaVersion": { "const": 1 },
9
+ "rules": {
10
+ "type": "array",
11
+ "items": { "$ref": "#/$defs/planRule" }
12
+ }
13
+ },
14
+ "$defs": {
15
+ "rowKindEnum": {
16
+ "type": "string",
17
+ "enum": ["add", "modify", "delete", "rename", "copy", "type_change", "unmerged"]
18
+ },
19
+ "planRule": {
20
+ "oneOf": [
21
+ {
22
+ "type": "object",
23
+ "additionalProperties": false,
24
+ "required": ["id", "kind", "pattern", "rowKinds"],
25
+ "properties": {
26
+ "id": { "type": "string", "pattern": "^[a-zA-Z0-9._-]+$" },
27
+ "kind": { "const": "matchingRowsMustHaveRowKinds" },
28
+ "description": { "type": "string" },
29
+ "pattern": { "type": "string", "minLength": 1 },
30
+ "rowKinds": {
31
+ "type": "array",
32
+ "minItems": 1,
33
+ "items": { "$ref": "#/$defs/rowKindEnum" }
34
+ }
35
+ }
36
+ },
37
+ {
38
+ "type": "object",
39
+ "additionalProperties": false,
40
+ "required": ["id", "kind", "pattern"],
41
+ "properties": {
42
+ "id": { "type": "string", "pattern": "^[a-zA-Z0-9._-]+$" },
43
+ "kind": { "const": "forbidMatchingRows" },
44
+ "description": { "type": "string" },
45
+ "pattern": { "type": "string", "minLength": 1 }
46
+ }
47
+ },
48
+ {
49
+ "type": "object",
50
+ "additionalProperties": false,
51
+ "required": ["id", "kind", "pattern", "rowKinds"],
52
+ "properties": {
53
+ "id": { "type": "string", "pattern": "^[a-zA-Z0-9._-]+$" },
54
+ "kind": { "const": "requireMatchingRow" },
55
+ "description": { "type": "string" },
56
+ "pattern": { "type": "string", "minLength": 1 },
57
+ "rowKinds": {
58
+ "type": "array",
59
+ "minItems": 1,
60
+ "items": { "$ref": "#/$defs/rowKindEnum" }
61
+ }
62
+ }
63
+ },
64
+ {
65
+ "type": "object",
66
+ "additionalProperties": false,
67
+ "required": ["id", "kind", "allowPatterns"],
68
+ "properties": {
69
+ "id": { "type": "string", "pattern": "^[a-zA-Z0-9._-]+$" },
70
+ "kind": { "const": "allChangedPathsMustMatchAllowlist" },
71
+ "description": { "type": "string" },
72
+ "allowPatterns": {
73
+ "type": "array",
74
+ "minItems": 1,
75
+ "items": { "type": "string", "minLength": 1 }
76
+ }
77
+ }
78
+ },
79
+ {
80
+ "type": "object",
81
+ "additionalProperties": false,
82
+ "required": ["id", "kind", "fromPattern", "toPattern", "includeCopy"],
83
+ "properties": {
84
+ "id": { "type": "string", "pattern": "^[a-zA-Z0-9._-]+$" },
85
+ "kind": { "const": "requireRenameFromTo" },
86
+ "description": { "type": "string" },
87
+ "fromPattern": { "type": "string", "minLength": 1 },
88
+ "toPattern": { "type": "string", "minLength": 1 },
89
+ "includeCopy": { "type": "boolean" }
90
+ }
91
+ }
92
+ ]
93
+ }
94
+ }
95
+ }