@agentskit/harness 0.3.0 → 0.4.0
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/CHANGELOG.md +7 -0
- package/README.md +77 -2
- package/capabilities/public-surface.json +668 -0
- package/compatibility/manifest.json +17 -0
- package/compatibility/migration.md +10 -0
- package/compatibility/report.json +23 -0
- package/compatibility/report.md +22 -0
- package/compatibility/rollback.md +8 -0
- package/dist/cli.js +185 -41
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +633 -35
- package/dist/index.js +1344 -300
- package/dist/index.js.map +1 -1
- package/docs/ADR-0026-kernel-adapters-boundary.md +82 -0
- package/docs/GETTING-STARTED.md +18 -0
- package/docs/MODULE-BOUNDARIES.md +143 -0
- package/docs/ORGANIZATION.md +13 -4
- package/docs/TROUBLESHOOTING.md +24 -0
- package/examples/minimum-profile.mjs +27 -0
- package/package.json +13 -2
- package/release/manifest.json +14 -0
- package/release/notes.md +10 -0
- package/release/qualification.json +14 -0
|
@@ -0,0 +1,668 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "agentskit-harness-capability-manifest",
|
|
3
|
+
"schemaVersion": 1,
|
|
4
|
+
"package": "@agentskit/harness",
|
|
5
|
+
"packageVersion": "0.4.0",
|
|
6
|
+
"entryPoint": "src/index.ts",
|
|
7
|
+
"sourceDigest": "3d17be04952278acc607379c2e8ea5895bc9b34b89e231a73a297d8878a09d3b",
|
|
8
|
+
"capabilities": [
|
|
9
|
+
{
|
|
10
|
+
"id": "public-surface:adapters/agent",
|
|
11
|
+
"version": "0.4.0",
|
|
12
|
+
"kind": "adapter",
|
|
13
|
+
"entryPoint": "src/index.ts",
|
|
14
|
+
"exports": [
|
|
15
|
+
"AgentUsage",
|
|
16
|
+
"CodingAgentAdapter",
|
|
17
|
+
"CodingAgentHandlerResult",
|
|
18
|
+
"CodingAgentRequest",
|
|
19
|
+
"CodingAgentResult",
|
|
20
|
+
"createCodingAgentAdapter"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "public-surface:adapters/doc-bridge",
|
|
25
|
+
"version": "0.4.0",
|
|
26
|
+
"kind": "adapter",
|
|
27
|
+
"entryPoint": "src/index.ts",
|
|
28
|
+
"exports": [
|
|
29
|
+
"createDocBridgeContextProvider"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "public-surface:adapters/orca",
|
|
34
|
+
"version": "0.4.0",
|
|
35
|
+
"kind": "adapter",
|
|
36
|
+
"entryPoint": "src/index.ts",
|
|
37
|
+
"exports": [
|
|
38
|
+
"OrcaDispatchInput",
|
|
39
|
+
"OrcaDispatchPlan",
|
|
40
|
+
"OrcaLeaseState",
|
|
41
|
+
"OrcaLifecycleInput",
|
|
42
|
+
"OrcaLifecycleProjection",
|
|
43
|
+
"createOrcaDispatchPlan",
|
|
44
|
+
"createOrcaLifecycleProjection"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "public-surface:adapters/tracking",
|
|
49
|
+
"version": "0.4.0",
|
|
50
|
+
"kind": "adapter",
|
|
51
|
+
"entryPoint": "src/index.ts",
|
|
52
|
+
"exports": [
|
|
53
|
+
"TrackingAdapter",
|
|
54
|
+
"TrackingTransition",
|
|
55
|
+
"createTrackingAdapter",
|
|
56
|
+
"createTrackingTransition"
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "public-surface:context/index",
|
|
61
|
+
"version": "0.4.0",
|
|
62
|
+
"kind": "kernel",
|
|
63
|
+
"entryPoint": "src/index.ts",
|
|
64
|
+
"exports": [
|
|
65
|
+
"*",
|
|
66
|
+
"CONTEXT_PROVIDER_SLOT",
|
|
67
|
+
"hashContextSnapshot",
|
|
68
|
+
"hashContextSnapshots",
|
|
69
|
+
"readContextSnapshots",
|
|
70
|
+
"validateContextSnapshot",
|
|
71
|
+
"validateContextSnapshots"
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": "public-surface:delivery/index",
|
|
76
|
+
"version": "0.4.0",
|
|
77
|
+
"kind": "kernel",
|
|
78
|
+
"entryPoint": "src/index.ts",
|
|
79
|
+
"exports": [
|
|
80
|
+
"*",
|
|
81
|
+
"AdversarialReviewResult",
|
|
82
|
+
"GateAssessment",
|
|
83
|
+
"GateBinding",
|
|
84
|
+
"GateCriterion",
|
|
85
|
+
"PullRequestApproval",
|
|
86
|
+
"QaTransitionAssessment",
|
|
87
|
+
"ReviewLens",
|
|
88
|
+
"ReviewVerdict",
|
|
89
|
+
"assessAcceptance",
|
|
90
|
+
"assessIntegration",
|
|
91
|
+
"assessPreflight",
|
|
92
|
+
"assessProduction",
|
|
93
|
+
"assessQaTransition",
|
|
94
|
+
"assessWorktreeCleanup",
|
|
95
|
+
"composePullRequest",
|
|
96
|
+
"createPullRequestApproval",
|
|
97
|
+
"runAdversarialReview",
|
|
98
|
+
"verifyPullRequestApproval"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "public-surface:execution/agent",
|
|
103
|
+
"version": "0.4.0",
|
|
104
|
+
"kind": "execution",
|
|
105
|
+
"entryPoint": "src/index.ts",
|
|
106
|
+
"exports": [
|
|
107
|
+
"*",
|
|
108
|
+
"createSessionRecorder"
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"id": "public-surface:execution/bundle",
|
|
113
|
+
"version": "0.4.0",
|
|
114
|
+
"kind": "execution",
|
|
115
|
+
"entryPoint": "src/index.ts",
|
|
116
|
+
"exports": [
|
|
117
|
+
"*",
|
|
118
|
+
"EVIDENCE_BUNDLE_SCHEMA_VERSION",
|
|
119
|
+
"exportEvidenceBundle",
|
|
120
|
+
"readEvidenceTrustStore",
|
|
121
|
+
"verifyEvidenceBundle"
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"id": "public-surface:execution/config",
|
|
126
|
+
"version": "0.4.0",
|
|
127
|
+
"kind": "execution",
|
|
128
|
+
"entryPoint": "src/index.ts",
|
|
129
|
+
"exports": [
|
|
130
|
+
"loadConfig",
|
|
131
|
+
"validateConfig"
|
|
132
|
+
]
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"id": "public-surface:execution/coordination",
|
|
136
|
+
"version": "0.4.0",
|
|
137
|
+
"kind": "execution",
|
|
138
|
+
"entryPoint": "src/index.ts",
|
|
139
|
+
"exports": [
|
|
140
|
+
"ClaimResult",
|
|
141
|
+
"CoordinationIdentity",
|
|
142
|
+
"DispatchLease",
|
|
143
|
+
"DispatchLedger",
|
|
144
|
+
"DispatchRecord",
|
|
145
|
+
"createDispatchLedger"
|
|
146
|
+
]
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"id": "public-surface:execution/files",
|
|
150
|
+
"version": "0.4.0",
|
|
151
|
+
"kind": "execution",
|
|
152
|
+
"entryPoint": "src/index.ts",
|
|
153
|
+
"exports": [
|
|
154
|
+
"loadLatestRun"
|
|
155
|
+
]
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"id": "public-surface:execution/machine",
|
|
159
|
+
"version": "0.4.0",
|
|
160
|
+
"kind": "execution",
|
|
161
|
+
"entryPoint": "src/index.ts",
|
|
162
|
+
"exports": [
|
|
163
|
+
"*",
|
|
164
|
+
"MachineThresholds",
|
|
165
|
+
"adaptiveConcurrency",
|
|
166
|
+
"createMachineMonitor",
|
|
167
|
+
"sampleMachine",
|
|
168
|
+
"summarizeMachine"
|
|
169
|
+
]
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"id": "public-surface:execution/metrics",
|
|
173
|
+
"version": "0.4.0",
|
|
174
|
+
"kind": "execution",
|
|
175
|
+
"entryPoint": "src/index.ts",
|
|
176
|
+
"exports": [
|
|
177
|
+
"*",
|
|
178
|
+
"BENCHMARK_SCHEMA_VERSION",
|
|
179
|
+
"benchmarkRuns",
|
|
180
|
+
"loadBenchmarkManifest",
|
|
181
|
+
"recordBenchmarkObservation",
|
|
182
|
+
"validateBenchmarkManifest"
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"id": "public-surface:execution/runtime",
|
|
187
|
+
"version": "0.4.0",
|
|
188
|
+
"kind": "execution",
|
|
189
|
+
"entryPoint": "src/index.ts",
|
|
190
|
+
"exports": [
|
|
191
|
+
"*",
|
|
192
|
+
"createConfiguredToolRuntime",
|
|
193
|
+
"createDockerToolRuntime",
|
|
194
|
+
"createProcessToolRuntime",
|
|
195
|
+
"createToolRuntime"
|
|
196
|
+
]
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"id": "public-surface:execution/verification",
|
|
200
|
+
"version": "0.4.0",
|
|
201
|
+
"kind": "execution",
|
|
202
|
+
"entryPoint": "src/index.ts",
|
|
203
|
+
"exports": [
|
|
204
|
+
"approveRun",
|
|
205
|
+
"authorizeRun",
|
|
206
|
+
"cancelRun",
|
|
207
|
+
"cleanTaskArtifacts",
|
|
208
|
+
"planRun",
|
|
209
|
+
"reconcileRun",
|
|
210
|
+
"retryRun",
|
|
211
|
+
"startRun",
|
|
212
|
+
"verifyRun"
|
|
213
|
+
]
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"id": "public-surface:kernel/adapter-contract",
|
|
217
|
+
"version": "0.4.0",
|
|
218
|
+
"kind": "kernel",
|
|
219
|
+
"entryPoint": "src/index.ts",
|
|
220
|
+
"exports": [
|
|
221
|
+
"ASSURANCE_LEVELS",
|
|
222
|
+
"AdapterMetadata",
|
|
223
|
+
"AdapterTelemetry",
|
|
224
|
+
"AssuranceLevel",
|
|
225
|
+
"unknownTelemetry",
|
|
226
|
+
"validateAdapterMetadata"
|
|
227
|
+
]
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"id": "public-surface:kernel/artifacts",
|
|
231
|
+
"version": "0.4.0",
|
|
232
|
+
"kind": "kernel",
|
|
233
|
+
"entryPoint": "src/index.ts",
|
|
234
|
+
"exports": [
|
|
235
|
+
"ARTIFACT_SCHEMA_VERSION",
|
|
236
|
+
"ARTIFACT_TYPES",
|
|
237
|
+
"ArtifactBinding",
|
|
238
|
+
"ArtifactEnvelope",
|
|
239
|
+
"ArtifactEnvelopeInput",
|
|
240
|
+
"ArtifactType",
|
|
241
|
+
"FileArtifactStore",
|
|
242
|
+
"artifactDigest",
|
|
243
|
+
"artifactFilePath",
|
|
244
|
+
"artifactIsFresh",
|
|
245
|
+
"artifactMarkdownPath",
|
|
246
|
+
"createArtifactEnvelope",
|
|
247
|
+
"createPhaseArtifact",
|
|
248
|
+
"readArtifactFile",
|
|
249
|
+
"renderArtifactMarkdown",
|
|
250
|
+
"resumeStateFromArtifacts",
|
|
251
|
+
"validateArtifactEnvelope"
|
|
252
|
+
]
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"id": "public-surface:kernel/block",
|
|
256
|
+
"version": "0.4.0",
|
|
257
|
+
"kind": "kernel",
|
|
258
|
+
"entryPoint": "src/index.ts",
|
|
259
|
+
"exports": [
|
|
260
|
+
"BLOCK_STATUSES",
|
|
261
|
+
"BlockAssessment",
|
|
262
|
+
"BlockManifest",
|
|
263
|
+
"BlockStatus",
|
|
264
|
+
"assessBlock",
|
|
265
|
+
"validateBlockManifest"
|
|
266
|
+
]
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"id": "public-surface:kernel/cache",
|
|
270
|
+
"version": "0.4.0",
|
|
271
|
+
"kind": "kernel",
|
|
272
|
+
"entryPoint": "src/index.ts",
|
|
273
|
+
"exports": [
|
|
274
|
+
"LlmCache",
|
|
275
|
+
"LlmCacheKeyInput",
|
|
276
|
+
"LlmCacheStats",
|
|
277
|
+
"createLlmCache",
|
|
278
|
+
"createLlmCacheKey",
|
|
279
|
+
"validateCacheableOperation"
|
|
280
|
+
]
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"id": "public-surface:kernel/capabilities",
|
|
284
|
+
"version": "0.4.0",
|
|
285
|
+
"kind": "kernel",
|
|
286
|
+
"entryPoint": "src/index.ts",
|
|
287
|
+
"exports": [
|
|
288
|
+
"*",
|
|
289
|
+
"CAPABILITY_KINDS",
|
|
290
|
+
"CAPABILITY_MANIFEST_SCHEMA_VERSION",
|
|
291
|
+
"CapabilityDescriptor",
|
|
292
|
+
"CapabilityKind",
|
|
293
|
+
"CapabilityManifest",
|
|
294
|
+
"CapabilityManifestInput",
|
|
295
|
+
"createCapabilityManifest",
|
|
296
|
+
"validateCapabilityManifest"
|
|
297
|
+
]
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"id": "public-surface:kernel/compatibility",
|
|
301
|
+
"version": "0.4.0",
|
|
302
|
+
"kind": "kernel",
|
|
303
|
+
"entryPoint": "src/index.ts",
|
|
304
|
+
"exports": [
|
|
305
|
+
"COMPATIBILITY_COMPONENTS",
|
|
306
|
+
"COMPATIBILITY_SCHEMA_VERSION",
|
|
307
|
+
"CompatibilityComponent",
|
|
308
|
+
"CompatibilityComponentId",
|
|
309
|
+
"CompatibilityManifest",
|
|
310
|
+
"CompatibilityObservation",
|
|
311
|
+
"CompatibilityReport",
|
|
312
|
+
"CompatibilityStatus",
|
|
313
|
+
"assessCompatibility",
|
|
314
|
+
"createCompatibilityManifest",
|
|
315
|
+
"validateCompatibilityManifest"
|
|
316
|
+
]
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"id": "public-surface:kernel/constants",
|
|
320
|
+
"version": "0.4.0",
|
|
321
|
+
"kind": "kernel",
|
|
322
|
+
"entryPoint": "src/index.ts",
|
|
323
|
+
"exports": [
|
|
324
|
+
"LEGAL_TRANSITIONS",
|
|
325
|
+
"STATES"
|
|
326
|
+
]
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"id": "public-surface:kernel/cycle",
|
|
330
|
+
"version": "0.4.0",
|
|
331
|
+
"kind": "kernel",
|
|
332
|
+
"entryPoint": "src/index.ts",
|
|
333
|
+
"exports": [
|
|
334
|
+
"*",
|
|
335
|
+
"IMPROVEMENT_CYCLE_STEPS",
|
|
336
|
+
"assessImprovementCycle"
|
|
337
|
+
]
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"id": "public-surface:kernel/discovery",
|
|
341
|
+
"version": "0.4.0",
|
|
342
|
+
"kind": "kernel",
|
|
343
|
+
"entryPoint": "src/index.ts",
|
|
344
|
+
"exports": [
|
|
345
|
+
"*",
|
|
346
|
+
"assessDiscovery",
|
|
347
|
+
"isDiscoveryCurrent"
|
|
348
|
+
]
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"id": "public-surface:kernel/error-policy",
|
|
352
|
+
"version": "0.4.0",
|
|
353
|
+
"kind": "kernel",
|
|
354
|
+
"entryPoint": "src/index.ts",
|
|
355
|
+
"exports": [
|
|
356
|
+
"HARNESS_ERROR_CATALOG",
|
|
357
|
+
"HarnessErrorClassification",
|
|
358
|
+
"HarnessErrorDisposition",
|
|
359
|
+
"classifyHarnessError",
|
|
360
|
+
"validateHarnessErrorClassification"
|
|
361
|
+
]
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"id": "public-surface:kernel/errors",
|
|
365
|
+
"version": "0.4.0",
|
|
366
|
+
"kind": "kernel",
|
|
367
|
+
"entryPoint": "src/index.ts",
|
|
368
|
+
"exports": [
|
|
369
|
+
"HARNESS_ERROR_CODES",
|
|
370
|
+
"HarnessError"
|
|
371
|
+
]
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"id": "public-surface:kernel/eval",
|
|
375
|
+
"version": "0.4.0",
|
|
376
|
+
"kind": "kernel",
|
|
377
|
+
"entryPoint": "src/index.ts",
|
|
378
|
+
"exports": [
|
|
379
|
+
"AgentEvalCase",
|
|
380
|
+
"AgentEvalReport",
|
|
381
|
+
"AgentEvalSuite",
|
|
382
|
+
"EVAL_COMPONENTS",
|
|
383
|
+
"EVAL_LAYERS",
|
|
384
|
+
"EVAL_MANIFEST_SCHEMA_VERSION",
|
|
385
|
+
"EvalBatteryReport",
|
|
386
|
+
"EvalCaseDefinition",
|
|
387
|
+
"EvalCaseReport",
|
|
388
|
+
"EvalComponent",
|
|
389
|
+
"EvalExpectation",
|
|
390
|
+
"EvalLayer",
|
|
391
|
+
"EvalManifest",
|
|
392
|
+
"EvalObservation",
|
|
393
|
+
"EvalObservationStatus",
|
|
394
|
+
"assessAgentEval",
|
|
395
|
+
"createEvalManifest",
|
|
396
|
+
"runAgentEval",
|
|
397
|
+
"runEvalBattery",
|
|
398
|
+
"validateEvalManifest"
|
|
399
|
+
]
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"id": "public-surface:kernel/events",
|
|
403
|
+
"version": "0.4.0",
|
|
404
|
+
"kind": "kernel",
|
|
405
|
+
"entryPoint": "src/index.ts",
|
|
406
|
+
"exports": [
|
|
407
|
+
"*",
|
|
408
|
+
"EVENT_LOG_GENESIS",
|
|
409
|
+
"FileEventStore",
|
|
410
|
+
"HARNESS_EVENT_ENVELOPE_SCHEMA_VERSION",
|
|
411
|
+
"HARNESS_EVENT_SCHEMA_VERSION",
|
|
412
|
+
"HARNESS_EVENT_TYPES",
|
|
413
|
+
"HarnessEventEnvelope",
|
|
414
|
+
"HarnessEventEnvelopeInput",
|
|
415
|
+
"HarnessEventProvenance",
|
|
416
|
+
"createHarnessEventEnvelope",
|
|
417
|
+
"inspectEventLogLock",
|
|
418
|
+
"recoverEventLogLock",
|
|
419
|
+
"validateHarnessEventEnvelope"
|
|
420
|
+
]
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"id": "public-surface:kernel/experiment",
|
|
424
|
+
"version": "0.4.0",
|
|
425
|
+
"kind": "kernel",
|
|
426
|
+
"entryPoint": "src/index.ts",
|
|
427
|
+
"exports": [
|
|
428
|
+
"*",
|
|
429
|
+
"selectRuntime"
|
|
430
|
+
]
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"id": "public-surface:kernel/learning",
|
|
434
|
+
"version": "0.4.0",
|
|
435
|
+
"kind": "kernel",
|
|
436
|
+
"entryPoint": "src/index.ts",
|
|
437
|
+
"exports": [
|
|
438
|
+
"LEARNING_STATUSES",
|
|
439
|
+
"LearningRecord",
|
|
440
|
+
"LearningStatus",
|
|
441
|
+
"parseRetro",
|
|
442
|
+
"promoteLearnings"
|
|
443
|
+
]
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"id": "public-surface:kernel/memory",
|
|
447
|
+
"version": "0.4.0",
|
|
448
|
+
"kind": "kernel",
|
|
449
|
+
"entryPoint": "src/index.ts",
|
|
450
|
+
"exports": [
|
|
451
|
+
"AgentMemoryAdapter",
|
|
452
|
+
"AgentMemoryHit",
|
|
453
|
+
"AgentMemoryKvStore",
|
|
454
|
+
"AgentMemoryRecord",
|
|
455
|
+
"MEMORY_SCOPES",
|
|
456
|
+
"MemoryScope",
|
|
457
|
+
"createInMemoryMemoryAdapter",
|
|
458
|
+
"createKvMemoryAdapter",
|
|
459
|
+
"validateMemoryRecord"
|
|
460
|
+
]
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"id": "public-surface:kernel/model-policy",
|
|
464
|
+
"version": "0.4.0",
|
|
465
|
+
"kind": "kernel",
|
|
466
|
+
"entryPoint": "src/index.ts",
|
|
467
|
+
"exports": [
|
|
468
|
+
"MODEL_ROLES",
|
|
469
|
+
"ModelBinding",
|
|
470
|
+
"ModelPolicy",
|
|
471
|
+
"ModelRole",
|
|
472
|
+
"createModelPolicy",
|
|
473
|
+
"modelFor"
|
|
474
|
+
]
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"id": "public-surface:kernel/optimization",
|
|
478
|
+
"version": "0.4.0",
|
|
479
|
+
"kind": "kernel",
|
|
480
|
+
"entryPoint": "src/index.ts",
|
|
481
|
+
"exports": [
|
|
482
|
+
"CacheUsage",
|
|
483
|
+
"MemoryUsage",
|
|
484
|
+
"OptimizationComparison",
|
|
485
|
+
"OptimizationObservation",
|
|
486
|
+
"ParallelismUsage",
|
|
487
|
+
"TokenUsage",
|
|
488
|
+
"compareOptimization",
|
|
489
|
+
"validateOptimizationObservation"
|
|
490
|
+
]
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"id": "public-surface:kernel/phase-executor",
|
|
494
|
+
"version": "0.4.0",
|
|
495
|
+
"kind": "kernel",
|
|
496
|
+
"entryPoint": "src/index.ts",
|
|
497
|
+
"exports": [
|
|
498
|
+
"ExecutePhaseProfileOptions",
|
|
499
|
+
"NormalizedPhaseProfile",
|
|
500
|
+
"PHASE_DECISIONS",
|
|
501
|
+
"PHASE_EFFECTS",
|
|
502
|
+
"PHASE_EFFECT_ACTIONS",
|
|
503
|
+
"PHASE_MODES",
|
|
504
|
+
"PhaseAmbiguity",
|
|
505
|
+
"PhaseContext",
|
|
506
|
+
"PhaseDecision",
|
|
507
|
+
"PhaseDecisionPacket",
|
|
508
|
+
"PhaseDefinition",
|
|
509
|
+
"PhaseEffect",
|
|
510
|
+
"PhaseEffectAction",
|
|
511
|
+
"PhaseEffectPolicy",
|
|
512
|
+
"PhaseExecution",
|
|
513
|
+
"PhaseExecutionReport",
|
|
514
|
+
"PhaseGateEvaluator",
|
|
515
|
+
"PhaseGateResult",
|
|
516
|
+
"PhaseHandler",
|
|
517
|
+
"PhaseHandlerResult",
|
|
518
|
+
"PhaseMode",
|
|
519
|
+
"PhasePreflight",
|
|
520
|
+
"PhasePreflightResult",
|
|
521
|
+
"PhaseProfile",
|
|
522
|
+
"PhaseResumeState",
|
|
523
|
+
"PhaseRetryPolicy",
|
|
524
|
+
"PhaseRoutePlan",
|
|
525
|
+
"createPhaseProfile",
|
|
526
|
+
"executePhaseProfile",
|
|
527
|
+
"planPhaseProfile"
|
|
528
|
+
]
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"id": "public-surface:kernel/pilot",
|
|
532
|
+
"version": "0.4.0",
|
|
533
|
+
"kind": "kernel",
|
|
534
|
+
"entryPoint": "src/index.ts",
|
|
535
|
+
"exports": [
|
|
536
|
+
"*",
|
|
537
|
+
"assessPilot"
|
|
538
|
+
]
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"id": "public-surface:kernel/plugins",
|
|
542
|
+
"version": "0.4.0",
|
|
543
|
+
"kind": "kernel",
|
|
544
|
+
"entryPoint": "src/index.ts",
|
|
545
|
+
"exports": [
|
|
546
|
+
"*",
|
|
547
|
+
"HARNESS_PLUGIN_API_VERSION",
|
|
548
|
+
"createPluginRegistry",
|
|
549
|
+
"createPluginSlot"
|
|
550
|
+
]
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"id": "public-surface:kernel/policy",
|
|
554
|
+
"version": "0.4.0",
|
|
555
|
+
"kind": "kernel",
|
|
556
|
+
"entryPoint": "src/index.ts",
|
|
557
|
+
"exports": [
|
|
558
|
+
"*",
|
|
559
|
+
"createPolicyGate"
|
|
560
|
+
]
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"id": "public-surface:kernel/preflight",
|
|
564
|
+
"version": "0.4.0",
|
|
565
|
+
"kind": "kernel",
|
|
566
|
+
"entryPoint": "src/index.ts",
|
|
567
|
+
"exports": [
|
|
568
|
+
"ChangedFile",
|
|
569
|
+
"FilePreflightPlan",
|
|
570
|
+
"planFilePreflight",
|
|
571
|
+
"validateSafeCommand"
|
|
572
|
+
]
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"id": "public-surface:kernel/quality",
|
|
576
|
+
"version": "0.4.0",
|
|
577
|
+
"kind": "kernel",
|
|
578
|
+
"entryPoint": "src/index.ts",
|
|
579
|
+
"exports": [
|
|
580
|
+
"MetricStatus",
|
|
581
|
+
"PhaseMachineMetrics",
|
|
582
|
+
"PhaseTelemetry",
|
|
583
|
+
"PhaseTokenMetrics",
|
|
584
|
+
"QUALITY_DIMENSIONS",
|
|
585
|
+
"QualityDimension",
|
|
586
|
+
"QualityDimensionScore",
|
|
587
|
+
"QualityMatrix",
|
|
588
|
+
"WatchdogBlocker",
|
|
589
|
+
"WatchdogBudget",
|
|
590
|
+
"WatchdogResult",
|
|
591
|
+
"createQualityMatrix",
|
|
592
|
+
"evaluateWatchdog",
|
|
593
|
+
"validatePhaseTelemetry"
|
|
594
|
+
]
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"id": "public-surface:kernel/resilience",
|
|
598
|
+
"version": "0.4.0",
|
|
599
|
+
"kind": "kernel",
|
|
600
|
+
"entryPoint": "src/index.ts",
|
|
601
|
+
"exports": [
|
|
602
|
+
"FailureClass",
|
|
603
|
+
"FailureClassification",
|
|
604
|
+
"RecoveryObservation",
|
|
605
|
+
"RecoveryPolicy",
|
|
606
|
+
"RecoveryResult",
|
|
607
|
+
"classifyFailure",
|
|
608
|
+
"recoveryDelayMs",
|
|
609
|
+
"runWithRecovery"
|
|
610
|
+
]
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"id": "public-surface:kernel/state-machine",
|
|
614
|
+
"version": "0.4.0",
|
|
615
|
+
"kind": "kernel",
|
|
616
|
+
"entryPoint": "src/index.ts",
|
|
617
|
+
"exports": [
|
|
618
|
+
"approvedDecision",
|
|
619
|
+
"assertHuman",
|
|
620
|
+
"transition"
|
|
621
|
+
]
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"id": "public-surface:kernel/status",
|
|
625
|
+
"version": "0.4.0",
|
|
626
|
+
"kind": "kernel",
|
|
627
|
+
"entryPoint": "src/index.ts",
|
|
628
|
+
"exports": [
|
|
629
|
+
"StatusBlock",
|
|
630
|
+
"StatusSnapshot",
|
|
631
|
+
"createStatusSnapshot",
|
|
632
|
+
"validateStatusSnapshot"
|
|
633
|
+
]
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"id": "public-surface:kernel/types",
|
|
637
|
+
"version": "0.4.0",
|
|
638
|
+
"kind": "kernel",
|
|
639
|
+
"entryPoint": "src/index.ts",
|
|
640
|
+
"exports": [
|
|
641
|
+
"*"
|
|
642
|
+
]
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"id": "public-surface:kernel/wip",
|
|
646
|
+
"version": "0.4.0",
|
|
647
|
+
"kind": "kernel",
|
|
648
|
+
"entryPoint": "src/index.ts",
|
|
649
|
+
"exports": [
|
|
650
|
+
"*",
|
|
651
|
+
"WIP_STATES",
|
|
652
|
+
"assessWip"
|
|
653
|
+
]
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"id": "public-surface:kernel/workflow",
|
|
657
|
+
"version": "0.4.0",
|
|
658
|
+
"kind": "kernel",
|
|
659
|
+
"entryPoint": "src/index.ts",
|
|
660
|
+
"exports": [
|
|
661
|
+
"WorkflowNode",
|
|
662
|
+
"WorkflowResult",
|
|
663
|
+
"runWorkflow"
|
|
664
|
+
]
|
|
665
|
+
}
|
|
666
|
+
],
|
|
667
|
+
"digest": "072e4e83b1073f0bb62507b8fece6703eb57b33f5c4b621442d6368642b63e79"
|
|
668
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "agentskit-harness-compatibility-manifest",
|
|
3
|
+
"schemaVersion": 1,
|
|
4
|
+
"harnessVersion": "0.4.0",
|
|
5
|
+
"sourceRevision": "dad0818e5ef36be7427bdbf8f8e1522c1b2e1ec5",
|
|
6
|
+
"components": [
|
|
7
|
+
{ "id": "core", "package": "@agentskit/core", "version": "1.12.9", "revision": "d89a2d74108c29f2c6227948265449e985af3a0a", "repository": "https://github.com/AgentsKit-io/agentskit", "adapterBoundary": "real-adapter", "testCommand": "pnpm --filter @agentskit/core test", "evalCommand": "pnpm --filter @agentskit/core test:coverage", "previousVersion": "@agentskit/core@1.12.8", "noHarnessBaseline": "benchmarks/harness-0.4.0-baseline.json", "migrationEvidence": "compatibility/migration.md", "rollbackEvidence": "compatibility/rollback.md" },
|
|
8
|
+
{ "id": "memory", "package": "@agentskit/memory", "version": "0.11.9", "revision": "d89a2d74108c29f2c6227948265449e985af3a0a", "repository": "https://github.com/AgentsKit-io/agentskit", "adapterBoundary": "real-adapter", "testCommand": "pnpm --filter @agentskit/memory test", "evalCommand": "pnpm --filter @agentskit/memory test:coverage", "previousVersion": "@agentskit/memory@0.11.8", "noHarnessBaseline": "benchmarks/harness-0.4.0-baseline.json", "migrationEvidence": "compatibility/migration.md", "rollbackEvidence": "compatibility/rollback.md" },
|
|
9
|
+
{ "id": "eval", "package": "@agentskit/eval", "version": "0.6.5", "revision": "d89a2d74108c29f2c6227948265449e985af3a0a", "repository": "https://github.com/AgentsKit-io/agentskit", "adapterBoundary": "real-adapter", "testCommand": "pnpm --filter @agentskit/eval test", "evalCommand": "pnpm --filter @agentskit/eval test:interop", "previousVersion": "@agentskit/eval@0.6.3", "noHarnessBaseline": "benchmarks/harness-0.4.0-baseline.json", "migrationEvidence": "compatibility/migration.md", "rollbackEvidence": "compatibility/rollback.md" },
|
|
10
|
+
{ "id": "doc-bridge", "package": "@agentskit/doc-bridge", "version": "1.7.45", "revision": "9f9e9ddd4f736981c2bea243fef33b68be2b5002", "repository": "https://github.com/AgentsKit-io/doc-bridge", "adapterBoundary": "real-adapter", "testCommand": "pnpm test", "evalCommand": "pnpm test:verification-harness", "previousVersion": "@agentskit/doc-bridge@1.7.44", "noHarnessBaseline": "benchmarks/harness-0.4.0-baseline.json", "migrationEvidence": "compatibility/migration.md", "rollbackEvidence": "compatibility/rollback.md" },
|
|
11
|
+
{ "id": "code-review", "package": "@agentskit/code-review", "version": "0.30.8", "revision": "c993f9a9359157a767d738d60c30add2b02fd09a", "repository": "https://github.com/AgentsKit-io/code-review", "adapterBoundary": "real-adapter", "testCommand": "npm test", "evalCommand": "npm run quality:matrix", "previousVersion": "@agentskit/code-review@0.30.7", "noHarnessBaseline": "benchmarks/harness-0.4.0-baseline.json", "migrationEvidence": "compatibility/migration.md", "rollbackEvidence": "compatibility/rollback.md" },
|
|
12
|
+
{ "id": "adapter-boundary", "package": "@agentskit/harness", "version": "0.4.0", "revision": "dad0818e5ef36be7427bdbf8f8e1522c1b2e1ec5", "repository": "https://github.com/AgentsKit-io/harness", "adapterBoundary": "real-adapter", "testCommand": "pnpm test:adapters", "evalCommand": "pnpm test:eval-battery", "previousVersion": "@agentskit/harness@0.3.0", "noHarnessBaseline": "benchmarks/harness-0.4.0-baseline.json", "migrationEvidence": "compatibility/migration.md", "rollbackEvidence": "compatibility/rollback.md" },
|
|
13
|
+
{ "id": "runtime", "package": "@agentskit/harness", "version": "0.4.0", "revision": "dad0818e5ef36be7427bdbf8f8e1522c1b2e1ec5", "repository": "https://github.com/AgentsKit-io/harness", "adapterBoundary": "real-adapter", "testCommand": "pnpm test:runtime", "evalCommand": "pnpm test:runtime-attestation", "previousVersion": "@agentskit/harness@0.3.0", "noHarnessBaseline": "benchmarks/harness-0.4.0-baseline.json", "migrationEvidence": "compatibility/migration.md", "rollbackEvidence": "compatibility/rollback.md" }
|
|
14
|
+
],
|
|
15
|
+
"evidenceOutputs": ["compatibility/report.json", "compatibility/report.md", "compatibility/migration.md", "compatibility/rollback.md"],
|
|
16
|
+
"digest": "97d842eebdddc5c2c9c91f42c5275f28db69b2309f5e797ced653831d0b7687a"
|
|
17
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Compatibility migration rehearsal
|
|
2
|
+
|
|
3
|
+
The manifest pins package versions and source revisions before an integration
|
|
4
|
+
run. Execute each component's `testCommand` and `evalCommand` from a clean
|
|
5
|
+
checkout, then attach the output to `compatibility/report.json` and compare it
|
|
6
|
+
with the declared previous version and no-Harness baseline.
|
|
7
|
+
|
|
8
|
+
This file is the reproducible procedure; it is not evidence of a successful
|
|
9
|
+
upstream run by itself. Missing or stale command output remains `unknown` and
|
|
10
|
+
blocks the compatibility gate.
|