agentskeptic 0.1.1 → 0.1.3

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,188 +1,188 @@
1
- * {
2
- box-sizing: border-box;
3
- }
4
- body {
5
- font-family: system-ui, sans-serif;
6
- margin: 0;
7
- padding: 1rem 1.5rem 3rem;
8
- background: #0f1419;
9
- color: #e6edf3;
10
- }
11
- header h1 {
12
- margin: 0 0 0.25rem;
13
- }
14
- .sub {
15
- color: #8b949e;
16
- margin: 0 0 1rem;
17
- max-width: 52rem;
18
- }
19
- .tabs {
20
- display: flex;
21
- gap: 0.5rem;
22
- margin-bottom: 1rem;
23
- }
24
- .tab {
25
- background: #21262d;
26
- border: 1px solid #30363d;
27
- color: #e6edf3;
28
- padding: 0.4rem 0.8rem;
29
- cursor: pointer;
30
- border-radius: 6px;
31
- }
32
- .tab.active {
33
- background: #238636;
34
- border-color: #238636;
35
- }
36
- .panel {
37
- display: none;
38
- }
39
- .panel.active {
40
- display: block;
41
- }
42
- .filters {
43
- display: flex;
44
- flex-wrap: wrap;
45
- gap: 0.75rem;
46
- align-items: flex-end;
47
- margin-bottom: 1rem;
48
- }
49
- .filters label {
50
- display: flex;
51
- flex-direction: column;
52
- font-size: 0.8rem;
53
- color: #8b949e;
54
- gap: 0.2rem;
55
- }
56
- .filters input[type="text"],
57
- .filters input[type="number"],
58
- .filters select {
59
- background: #161b22;
60
- border: 1px solid #30363d;
61
- color: #e6edf3;
62
- padding: 0.35rem 0.5rem;
63
- border-radius: 4px;
64
- min-width: 8rem;
65
- }
66
- .filters .check {
67
- flex-direction: row;
68
- align-items: center;
69
- gap: 0.35rem;
70
- }
71
- .meta {
72
- color: #8b949e;
73
- font-size: 0.9rem;
74
- }
75
- table.runs {
76
- width: 100%;
77
- border-collapse: collapse;
78
- font-size: 0.85rem;
79
- }
80
- table.runs th,
81
- table.runs td {
82
- border: 1px solid #30363d;
83
- padding: 0.35rem 0.5rem;
84
- text-align: left;
85
- vertical-align: top;
86
- }
87
- table.runs th {
88
- background: #161b22;
89
- }
90
- tr.load-error {
91
- background: #3d1114;
92
- }
93
- tr.load-ok {
94
- background: #0d1117;
95
- }
96
- tr.selected {
97
- outline: 2px solid #58a6ff;
98
- }
99
- .json-out {
100
- background: #161b22;
101
- border: 1px solid #30363d;
102
- padding: 1rem;
103
- overflow: auto;
104
- max-height: 28rem;
105
- font-size: 0.8rem;
106
- white-space: pre-wrap;
107
- word-break: break-all;
108
- }
109
- .drawer {
110
- position: fixed;
111
- top: 0;
112
- right: 0;
113
- width: min(52rem, 96vw);
114
- height: 100vh;
115
- background: #161b22;
116
- border-left: 1px solid #30363d;
117
- overflow: auto;
118
- padding: 1rem;
119
- z-index: 20;
120
- box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
121
- }
122
- .drawer.hidden {
123
- display: none;
124
- }
125
- .drawer-head {
126
- display: flex;
127
- justify-content: space-between;
128
- align-items: center;
129
- margin-bottom: 1rem;
130
- }
131
- .focus-panel {
132
- background: #21262d;
133
- padding: 0.75rem;
134
- border-radius: 6px;
135
- margin-bottom: 1rem;
136
- font-size: 0.85rem;
137
- }
138
- .verdict-panel {
139
- background: #1a2332;
140
- border: 1px solid #388bfd;
141
- padding: 0.85rem 1rem;
142
- border-radius: 8px;
143
- margin-bottom: 1rem;
144
- font-size: 0.9rem;
145
- }
146
- .verdict-panel .verdict-status {
147
- font-weight: 600;
148
- font-size: 1rem;
149
- margin-bottom: 0.35rem;
150
- }
151
- .verdict-panel .verdict-trust {
152
- color: #8b949e;
153
- margin-bottom: 0.6rem;
154
- line-height: 1.4;
155
- }
156
- .verdict-panel .verdict-counts {
157
- font-size: 0.8rem;
158
- color: #c9d1d9;
159
- }
160
- .trace-step {
161
- padding: 0.35rem 0.5rem;
162
- margin: 0.2rem 0;
163
- border-radius: 4px;
164
- cursor: pointer;
165
- border: 1px solid transparent;
166
- }
167
- .trace-step:hover {
168
- border-color: #58a6ff;
169
- }
170
- .trace-step.focus-hit {
171
- border-color: #f0883e;
172
- background: #2d1f12;
173
- }
174
- button {
175
- cursor: pointer;
176
- background: #21262d;
177
- border: 1px solid #30363d;
178
- color: #e6edf3;
179
- padding: 0.4rem 0.75rem;
180
- border-radius: 6px;
181
- }
182
- button:disabled {
183
- opacity: 0.45;
184
- cursor: not-allowed;
185
- }
186
- button#close-detail {
187
- background: transparent;
188
- }
1
+ * {
2
+ box-sizing: border-box;
3
+ }
4
+ body {
5
+ font-family: system-ui, sans-serif;
6
+ margin: 0;
7
+ padding: 1rem 1.5rem 3rem;
8
+ background: #0f1419;
9
+ color: #e6edf3;
10
+ }
11
+ header h1 {
12
+ margin: 0 0 0.25rem;
13
+ }
14
+ .sub {
15
+ color: #8b949e;
16
+ margin: 0 0 1rem;
17
+ max-width: 52rem;
18
+ }
19
+ .tabs {
20
+ display: flex;
21
+ gap: 0.5rem;
22
+ margin-bottom: 1rem;
23
+ }
24
+ .tab {
25
+ background: #21262d;
26
+ border: 1px solid #30363d;
27
+ color: #e6edf3;
28
+ padding: 0.4rem 0.8rem;
29
+ cursor: pointer;
30
+ border-radius: 6px;
31
+ }
32
+ .tab.active {
33
+ background: #238636;
34
+ border-color: #238636;
35
+ }
36
+ .panel {
37
+ display: none;
38
+ }
39
+ .panel.active {
40
+ display: block;
41
+ }
42
+ .filters {
43
+ display: flex;
44
+ flex-wrap: wrap;
45
+ gap: 0.75rem;
46
+ align-items: flex-end;
47
+ margin-bottom: 1rem;
48
+ }
49
+ .filters label {
50
+ display: flex;
51
+ flex-direction: column;
52
+ font-size: 0.8rem;
53
+ color: #8b949e;
54
+ gap: 0.2rem;
55
+ }
56
+ .filters input[type="text"],
57
+ .filters input[type="number"],
58
+ .filters select {
59
+ background: #161b22;
60
+ border: 1px solid #30363d;
61
+ color: #e6edf3;
62
+ padding: 0.35rem 0.5rem;
63
+ border-radius: 4px;
64
+ min-width: 8rem;
65
+ }
66
+ .filters .check {
67
+ flex-direction: row;
68
+ align-items: center;
69
+ gap: 0.35rem;
70
+ }
71
+ .meta {
72
+ color: #8b949e;
73
+ font-size: 0.9rem;
74
+ }
75
+ table.runs {
76
+ width: 100%;
77
+ border-collapse: collapse;
78
+ font-size: 0.85rem;
79
+ }
80
+ table.runs th,
81
+ table.runs td {
82
+ border: 1px solid #30363d;
83
+ padding: 0.35rem 0.5rem;
84
+ text-align: left;
85
+ vertical-align: top;
86
+ }
87
+ table.runs th {
88
+ background: #161b22;
89
+ }
90
+ tr.load-error {
91
+ background: #3d1114;
92
+ }
93
+ tr.load-ok {
94
+ background: #0d1117;
95
+ }
96
+ tr.selected {
97
+ outline: 2px solid #58a6ff;
98
+ }
99
+ .json-out {
100
+ background: #161b22;
101
+ border: 1px solid #30363d;
102
+ padding: 1rem;
103
+ overflow: auto;
104
+ max-height: 28rem;
105
+ font-size: 0.8rem;
106
+ white-space: pre-wrap;
107
+ word-break: break-all;
108
+ }
109
+ .drawer {
110
+ position: fixed;
111
+ top: 0;
112
+ right: 0;
113
+ width: min(52rem, 96vw);
114
+ height: 100vh;
115
+ background: #161b22;
116
+ border-left: 1px solid #30363d;
117
+ overflow: auto;
118
+ padding: 1rem;
119
+ z-index: 20;
120
+ box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
121
+ }
122
+ .drawer.hidden {
123
+ display: none;
124
+ }
125
+ .drawer-head {
126
+ display: flex;
127
+ justify-content: space-between;
128
+ align-items: center;
129
+ margin-bottom: 1rem;
130
+ }
131
+ .focus-panel {
132
+ background: #21262d;
133
+ padding: 0.75rem;
134
+ border-radius: 6px;
135
+ margin-bottom: 1rem;
136
+ font-size: 0.85rem;
137
+ }
138
+ .verdict-panel {
139
+ background: #1a2332;
140
+ border: 1px solid #388bfd;
141
+ padding: 0.85rem 1rem;
142
+ border-radius: 8px;
143
+ margin-bottom: 1rem;
144
+ font-size: 0.9rem;
145
+ }
146
+ .verdict-panel .verdict-status {
147
+ font-weight: 600;
148
+ font-size: 1rem;
149
+ margin-bottom: 0.35rem;
150
+ }
151
+ .verdict-panel .verdict-trust {
152
+ color: #8b949e;
153
+ margin-bottom: 0.6rem;
154
+ line-height: 1.4;
155
+ }
156
+ .verdict-panel .verdict-counts {
157
+ font-size: 0.8rem;
158
+ color: #c9d1d9;
159
+ }
160
+ .trace-step {
161
+ padding: 0.35rem 0.5rem;
162
+ margin: 0.2rem 0;
163
+ border-radius: 4px;
164
+ cursor: pointer;
165
+ border: 1px solid transparent;
166
+ }
167
+ .trace-step:hover {
168
+ border-color: #58a6ff;
169
+ }
170
+ .trace-step.focus-hit {
171
+ border-color: #f0883e;
172
+ background: #2d1f12;
173
+ }
174
+ button {
175
+ cursor: pointer;
176
+ background: #21262d;
177
+ border: 1px solid #30363d;
178
+ color: #e6edf3;
179
+ padding: 0.4rem 0.75rem;
180
+ border-radius: 6px;
181
+ }
182
+ button:disabled {
183
+ opacity: 0.45;
184
+ cursor: not-allowed;
185
+ }
186
+ button#close-detail {
187
+ background: transparent;
188
+ }