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,99 +1,99 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://agentskeptic.com/schemas/registry-validation-result.schema.json",
|
|
4
|
-
"title": "RegistryValidationResult",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"additionalProperties": false,
|
|
7
|
-
"required": ["schemaVersion", "valid", "structuralIssues", "resolutionIssues", "resolutionSkipped"],
|
|
8
|
-
"properties": {
|
|
9
|
-
"schemaVersion": { "const": 1 },
|
|
10
|
-
"valid": { "type": "boolean" },
|
|
11
|
-
"structuralIssues": {
|
|
12
|
-
"type": "array",
|
|
13
|
-
"items": { "$ref": "#/$defs/structuralIssue" }
|
|
14
|
-
},
|
|
15
|
-
"resolutionIssues": {
|
|
16
|
-
"type": "array",
|
|
17
|
-
"items": { "$ref": "#/$defs/resolutionIssue" }
|
|
18
|
-
},
|
|
19
|
-
"resolutionSkipped": {
|
|
20
|
-
"type": "array",
|
|
21
|
-
"items": { "$ref": "#/$defs/resolutionSkipped" }
|
|
22
|
-
},
|
|
23
|
-
"eventLoad": { "$ref": "#/$defs/eventLoad" }
|
|
24
|
-
},
|
|
25
|
-
"$defs": {
|
|
26
|
-
"structuralIssue": {
|
|
27
|
-
"type": "object",
|
|
28
|
-
"additionalProperties": false,
|
|
29
|
-
"required": ["kind", "message"],
|
|
30
|
-
"properties": {
|
|
31
|
-
"kind": {
|
|
32
|
-
"type": "string",
|
|
33
|
-
"enum": [
|
|
34
|
-
"json_schema",
|
|
35
|
-
"duplicate_tool_id",
|
|
36
|
-
"sql_effects_duplicate_effect_id",
|
|
37
|
-
"sql_relational_duplicate_check_id"
|
|
38
|
-
]
|
|
39
|
-
},
|
|
40
|
-
"message": { "type": "string", "minLength": 1 },
|
|
41
|
-
"instancePath": { "type": "string" },
|
|
42
|
-
"keyword": { "type": "string" },
|
|
43
|
-
"toolId": { "type": "string" },
|
|
44
|
-
"effectId": { "type": "string" },
|
|
45
|
-
"checkId": { "type": "string" }
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
"resolutionIssue": {
|
|
49
|
-
"type": "object",
|
|
50
|
-
"additionalProperties": false,
|
|
51
|
-
"required": ["workflowId", "code", "message", "seq", "toolId"],
|
|
52
|
-
"properties": {
|
|
53
|
-
"workflowId": { "type": "string" },
|
|
54
|
-
"code": { "type": "string" },
|
|
55
|
-
"message": { "type": "string" },
|
|
56
|
-
"seq": { "type": ["integer", "null"] },
|
|
57
|
-
"toolId": { "type": ["string", "null"] }
|
|
58
|
-
},
|
|
59
|
-
"allOf": [
|
|
60
|
-
{
|
|
61
|
-
"if": { "properties": { "code": { "const": "NO_STEPS_FOR_WORKFLOW" } } },
|
|
62
|
-
"then": {
|
|
63
|
-
"properties": {
|
|
64
|
-
"seq": { "type": "null" },
|
|
65
|
-
"toolId": { "type": "null" }
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
"else": {
|
|
69
|
-
"properties": {
|
|
70
|
-
"seq": { "type": "integer" },
|
|
71
|
-
"toolId": { "type": "string", "minLength": 1 }
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
]
|
|
76
|
-
},
|
|
77
|
-
"resolutionSkipped": {
|
|
78
|
-
"type": "object",
|
|
79
|
-
"additionalProperties": false,
|
|
80
|
-
"required": ["workflowId", "seq", "toolId", "code", "message"],
|
|
81
|
-
"properties": {
|
|
82
|
-
"workflowId": { "type": "string" },
|
|
83
|
-
"seq": { "type": "integer" },
|
|
84
|
-
"toolId": { "type": "string", "minLength": 1 },
|
|
85
|
-
"code": { "const": "RETRY_OBSERVATIONS_DIVERGE" },
|
|
86
|
-
"message": { "type": "string", "minLength": 1 }
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
"eventLoad": {
|
|
90
|
-
"type": "object",
|
|
91
|
-
"additionalProperties": false,
|
|
92
|
-
"required": ["workflowId", "malformedEventLineCount"],
|
|
93
|
-
"properties": {
|
|
94
|
-
"workflowId": { "type": "string", "minLength": 1 },
|
|
95
|
-
"malformedEventLineCount": { "type": "integer", "minimum": 0 }
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://agentskeptic.com/schemas/registry-validation-result.schema.json",
|
|
4
|
+
"title": "RegistryValidationResult",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": ["schemaVersion", "valid", "structuralIssues", "resolutionIssues", "resolutionSkipped"],
|
|
8
|
+
"properties": {
|
|
9
|
+
"schemaVersion": { "const": 1 },
|
|
10
|
+
"valid": { "type": "boolean" },
|
|
11
|
+
"structuralIssues": {
|
|
12
|
+
"type": "array",
|
|
13
|
+
"items": { "$ref": "#/$defs/structuralIssue" }
|
|
14
|
+
},
|
|
15
|
+
"resolutionIssues": {
|
|
16
|
+
"type": "array",
|
|
17
|
+
"items": { "$ref": "#/$defs/resolutionIssue" }
|
|
18
|
+
},
|
|
19
|
+
"resolutionSkipped": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"items": { "$ref": "#/$defs/resolutionSkipped" }
|
|
22
|
+
},
|
|
23
|
+
"eventLoad": { "$ref": "#/$defs/eventLoad" }
|
|
24
|
+
},
|
|
25
|
+
"$defs": {
|
|
26
|
+
"structuralIssue": {
|
|
27
|
+
"type": "object",
|
|
28
|
+
"additionalProperties": false,
|
|
29
|
+
"required": ["kind", "message"],
|
|
30
|
+
"properties": {
|
|
31
|
+
"kind": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"enum": [
|
|
34
|
+
"json_schema",
|
|
35
|
+
"duplicate_tool_id",
|
|
36
|
+
"sql_effects_duplicate_effect_id",
|
|
37
|
+
"sql_relational_duplicate_check_id"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"message": { "type": "string", "minLength": 1 },
|
|
41
|
+
"instancePath": { "type": "string" },
|
|
42
|
+
"keyword": { "type": "string" },
|
|
43
|
+
"toolId": { "type": "string" },
|
|
44
|
+
"effectId": { "type": "string" },
|
|
45
|
+
"checkId": { "type": "string" }
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"resolutionIssue": {
|
|
49
|
+
"type": "object",
|
|
50
|
+
"additionalProperties": false,
|
|
51
|
+
"required": ["workflowId", "code", "message", "seq", "toolId"],
|
|
52
|
+
"properties": {
|
|
53
|
+
"workflowId": { "type": "string" },
|
|
54
|
+
"code": { "type": "string" },
|
|
55
|
+
"message": { "type": "string" },
|
|
56
|
+
"seq": { "type": ["integer", "null"] },
|
|
57
|
+
"toolId": { "type": ["string", "null"] }
|
|
58
|
+
},
|
|
59
|
+
"allOf": [
|
|
60
|
+
{
|
|
61
|
+
"if": { "properties": { "code": { "const": "NO_STEPS_FOR_WORKFLOW" } } },
|
|
62
|
+
"then": {
|
|
63
|
+
"properties": {
|
|
64
|
+
"seq": { "type": "null" },
|
|
65
|
+
"toolId": { "type": "null" }
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"else": {
|
|
69
|
+
"properties": {
|
|
70
|
+
"seq": { "type": "integer" },
|
|
71
|
+
"toolId": { "type": "string", "minLength": 1 }
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
"resolutionSkipped": {
|
|
78
|
+
"type": "object",
|
|
79
|
+
"additionalProperties": false,
|
|
80
|
+
"required": ["workflowId", "seq", "toolId", "code", "message"],
|
|
81
|
+
"properties": {
|
|
82
|
+
"workflowId": { "type": "string" },
|
|
83
|
+
"seq": { "type": "integer" },
|
|
84
|
+
"toolId": { "type": "string", "minLength": 1 },
|
|
85
|
+
"code": { "const": "RETRY_OBSERVATIONS_DIVERGE" },
|
|
86
|
+
"message": { "type": "string", "minLength": 1 }
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"eventLoad": {
|
|
90
|
+
"type": "object",
|
|
91
|
+
"additionalProperties": false,
|
|
92
|
+
"required": ["workflowId", "malformedEventLineCount"],
|
|
93
|
+
"properties": {
|
|
94
|
+
"workflowId": { "type": "string", "minLength": 1 },
|
|
95
|
+
"malformedEventLineCount": { "type": "integer", "minimum": 0 }
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|