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,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
+ }