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.
- package/LICENSE +21 -21
- package/README.md +342 -342
- package/dist/cli.js +157 -157
- package/dist/debug-ui/app.css +188 -188
- package/dist/debug-ui/app.js +245 -245
- package/dist/debug-ui/index.html +79 -79
- package/dist/enforceCli.js +11 -11
- package/dist/planTransition.test.js +235 -235
- package/dist/planTransitionPathHarvest.test.js +116 -116
- package/dist/quickVerify/postgresCatalog.js +53 -53
- package/package.json +1 -1
- package/schemas/agent-run-record-v1.schema.json +51 -51
- package/schemas/agent-run-record-v2.schema.json +61 -61
- package/schemas/assurance-manifest-v1.schema.json +28 -28
- package/schemas/assurance-run-report-v1.schema.json +28 -28
- package/schemas/ci-lock-v1.schema.json +163 -163
- package/schemas/cli-error-envelope.schema.json +48 -48
- package/schemas/event.schema.json +111 -111
- package/schemas/execution-trace-view.schema.json +122 -122
- package/schemas/plan-validation-core.schema.json +95 -95
- package/schemas/quick-verify-report.schema.json +251 -251
- package/schemas/registry-validation-result.schema.json +99 -99
- package/schemas/run-comparison-report.schema.json +513 -513
- package/schemas/tools-registry-export.schema.json +9 -9
- package/schemas/tools-registry.schema.json +284 -284
- package/schemas/workflow-engine-result.schema.json +591 -591
- package/schemas/workflow-result-compare-input.schema.json +15 -15
- package/schemas/workflow-result-signature.schema.json +20 -20
- package/schemas/workflow-result-v9.schema.json +85 -85
- package/schemas/workflow-result.schema.json +80 -80
- package/schemas/workflow-truth-report.schema.json +761 -761
- package/dist/failureOriginSchemaEnum.test.d.ts +0 -2
- package/dist/failureOriginSchemaEnum.test.d.ts.map +0 -1
- package/dist/failureOriginSchemaEnum.test.js +0 -21
- package/dist/failureOriginSchemaEnum.test.js.map +0 -1
- package/dist/failureOriginSchemaParity.test.d.ts +0 -2
- package/dist/failureOriginSchemaParity.test.d.ts.map +0 -1
- package/dist/failureOriginSchemaParity.test.js +0 -33
- package/dist/failureOriginSchemaParity.test.js.map +0 -1
- package/dist/slice6.compare.ac.test.d.ts +0 -2
- package/dist/slice6.compare.ac.test.d.ts.map +0 -1
- package/dist/slice6.compare.ac.test.js +0 -81
- 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
|
+
}
|