@agentskit/harness 0.3.0 → 0.5.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 +26 -3
- package/README.md +85 -2
- package/capabilities/public-surface.json +1085 -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 +3222 -168
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +2126 -38
- package/dist/index.js +4244 -461
- package/dist/index.js.map +1 -1
- package/docs/ADR-0026-kernel-adapters-boundary.md +82 -0
- package/docs/ADR-0027-keep-pushing-loop.md +41 -0
- package/docs/GETTING-STARTED.md +18 -0
- package/docs/LOOP.md +195 -0
- package/docs/MODULE-BOUNDARIES.md +171 -0
- package/docs/ORGANIZATION.md +13 -4
- package/docs/PRD-0.4.0.md +639 -0
- package/docs/TROUBLESHOOTING.md +24 -0
- package/examples/minimum-profile.mjs +27 -0
- package/loop.config.example.yaml +121 -0
- package/package.json +49 -7
- package/release/manifest.json +36 -0
- package/release/notes.md +25 -0
- package/release/qualification.json +14 -0
|
@@ -0,0 +1,1085 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "agentskit-harness-capability-manifest",
|
|
3
|
+
"schemaVersion": 1,
|
|
4
|
+
"package": "@agentskit/harness",
|
|
5
|
+
"packageVersion": "0.5.0",
|
|
6
|
+
"entryPoint": "src/index.ts",
|
|
7
|
+
"sourceDigest": "cde5b73e321b9211bf30aeb3b7b1203d10368d1836f839384ab213ae64f84937",
|
|
8
|
+
"capabilities": [
|
|
9
|
+
{
|
|
10
|
+
"id": "public-surface:adapters/agent",
|
|
11
|
+
"version": "0.5.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/code-review",
|
|
25
|
+
"version": "0.5.0",
|
|
26
|
+
"kind": "adapter",
|
|
27
|
+
"entryPoint": "src/index.ts",
|
|
28
|
+
"exports": [
|
|
29
|
+
"CodeReviewInput",
|
|
30
|
+
"CodeReviewOutcome",
|
|
31
|
+
"REVIEW_SEVERITIES",
|
|
32
|
+
"ReviewFinding",
|
|
33
|
+
"ReviewSeverity",
|
|
34
|
+
"atLeast",
|
|
35
|
+
"buildReviewArgv",
|
|
36
|
+
"parseReviewResult",
|
|
37
|
+
"renderFindingsForWorker",
|
|
38
|
+
"runCodeReview",
|
|
39
|
+
"severityRank"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "public-surface:adapters/command",
|
|
44
|
+
"version": "0.5.0",
|
|
45
|
+
"kind": "adapter",
|
|
46
|
+
"entryPoint": "src/index.ts",
|
|
47
|
+
"exports": [
|
|
48
|
+
"CommandResult",
|
|
49
|
+
"CommandRunOptions",
|
|
50
|
+
"CommandRunner",
|
|
51
|
+
"findExecutable",
|
|
52
|
+
"parseJsonEnvelope"
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"id": "public-surface:adapters/doc-bridge",
|
|
57
|
+
"version": "0.5.0",
|
|
58
|
+
"kind": "adapter",
|
|
59
|
+
"entryPoint": "src/index.ts",
|
|
60
|
+
"exports": [
|
|
61
|
+
"createDocBridgeContextProvider"
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"id": "public-surface:adapters/github-cli",
|
|
66
|
+
"version": "0.5.0",
|
|
67
|
+
"kind": "adapter",
|
|
68
|
+
"entryPoint": "src/index.ts",
|
|
69
|
+
"exports": [
|
|
70
|
+
"CheckOutcome",
|
|
71
|
+
"ChecksAssessment",
|
|
72
|
+
"GitHubCliOptions",
|
|
73
|
+
"PR_FIELDS",
|
|
74
|
+
"PullRequestCheck",
|
|
75
|
+
"PullRequestSnapshot",
|
|
76
|
+
"assessChecks",
|
|
77
|
+
"githubComment",
|
|
78
|
+
"githubCommentArgv",
|
|
79
|
+
"githubCommentExists",
|
|
80
|
+
"githubMerge",
|
|
81
|
+
"githubMergeArgv",
|
|
82
|
+
"githubOpenPullRequests",
|
|
83
|
+
"githubPullRequest",
|
|
84
|
+
"githubPullRequestsForBranch",
|
|
85
|
+
"parsePullRequest",
|
|
86
|
+
"touchesProtectedPaths"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "public-surface:adapters/linear-orca",
|
|
91
|
+
"version": "0.5.0",
|
|
92
|
+
"kind": "adapter",
|
|
93
|
+
"entryPoint": "src/index.ts",
|
|
94
|
+
"exports": [
|
|
95
|
+
"FetchQueueInput",
|
|
96
|
+
"LinearIssueDetail",
|
|
97
|
+
"LinearListInput",
|
|
98
|
+
"LinearQueueFilter",
|
|
99
|
+
"LinearWriteOptions",
|
|
100
|
+
"LoopIssue",
|
|
101
|
+
"buildListIssuesArgv",
|
|
102
|
+
"createLinearTrackingAdapter",
|
|
103
|
+
"fetchLinearIssue",
|
|
104
|
+
"fetchLinearQueue",
|
|
105
|
+
"filterAndOrderQueue",
|
|
106
|
+
"linearAttach",
|
|
107
|
+
"linearAttachArgv",
|
|
108
|
+
"linearCommentAdd",
|
|
109
|
+
"linearCommentAddArgv",
|
|
110
|
+
"linearLabelAdd",
|
|
111
|
+
"linearLabelArgv",
|
|
112
|
+
"linearLabelRemove",
|
|
113
|
+
"linearStatusSet",
|
|
114
|
+
"linearStatusSetArgv",
|
|
115
|
+
"parseLinearIssueDetail",
|
|
116
|
+
"parseLinearIssues",
|
|
117
|
+
"writeIdFor"
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"id": "public-surface:adapters/orca-cli",
|
|
122
|
+
"version": "0.5.0",
|
|
123
|
+
"kind": "adapter",
|
|
124
|
+
"entryPoint": "src/index.ts",
|
|
125
|
+
"exports": [
|
|
126
|
+
"OrcaAgentHookState",
|
|
127
|
+
"OrcaAutomation",
|
|
128
|
+
"OrcaAutomationSpec",
|
|
129
|
+
"OrcaCliOptions",
|
|
130
|
+
"OrcaCreatedWorktree",
|
|
131
|
+
"OrcaSendReceipt",
|
|
132
|
+
"OrcaStatus",
|
|
133
|
+
"OrcaTerminal",
|
|
134
|
+
"OrcaWorktree",
|
|
135
|
+
"compareVersions",
|
|
136
|
+
"orcaAccountList",
|
|
137
|
+
"orcaAgentHooks",
|
|
138
|
+
"orcaAutomationCreateArgv",
|
|
139
|
+
"orcaAutomationEditArgv",
|
|
140
|
+
"orcaAutomationRemove",
|
|
141
|
+
"orcaAutomationRun",
|
|
142
|
+
"orcaAutomationRuns",
|
|
143
|
+
"orcaAutomationsList",
|
|
144
|
+
"orcaJson",
|
|
145
|
+
"orcaStatus",
|
|
146
|
+
"orcaTerminalCreate",
|
|
147
|
+
"orcaTerminalList",
|
|
148
|
+
"orcaTerminalScreen",
|
|
149
|
+
"orcaTerminalSend",
|
|
150
|
+
"orcaTerminalWait",
|
|
151
|
+
"orcaVersion",
|
|
152
|
+
"orcaWorktreeCreate",
|
|
153
|
+
"orcaWorktreeRemove",
|
|
154
|
+
"orcaWorktreeSet",
|
|
155
|
+
"orcaWorktreeSetArgv",
|
|
156
|
+
"orcaWorktrees",
|
|
157
|
+
"parseOrcaAgentHooks",
|
|
158
|
+
"parseOrcaAutomations",
|
|
159
|
+
"parseOrcaSendReceipt",
|
|
160
|
+
"parseOrcaStatus",
|
|
161
|
+
"parseOrcaTerminals",
|
|
162
|
+
"parseOrcaVersion",
|
|
163
|
+
"parseOrcaWorktreeCreate",
|
|
164
|
+
"parseOrcaWorktrees"
|
|
165
|
+
]
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"id": "public-surface:adapters/orca",
|
|
169
|
+
"version": "0.5.0",
|
|
170
|
+
"kind": "adapter",
|
|
171
|
+
"entryPoint": "src/index.ts",
|
|
172
|
+
"exports": [
|
|
173
|
+
"OrcaDispatchInput",
|
|
174
|
+
"OrcaDispatchPlan",
|
|
175
|
+
"OrcaLeaseState",
|
|
176
|
+
"OrcaLifecycleInput",
|
|
177
|
+
"OrcaLifecycleProjection",
|
|
178
|
+
"createOrcaDispatchPlan",
|
|
179
|
+
"createOrcaLifecycleProjection"
|
|
180
|
+
]
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"id": "public-surface:adapters/providers",
|
|
184
|
+
"version": "0.5.0",
|
|
185
|
+
"kind": "adapter",
|
|
186
|
+
"entryPoint": "src/index.ts",
|
|
187
|
+
"exports": [
|
|
188
|
+
"DetectProvidersInput",
|
|
189
|
+
"ProviderAuthStatus",
|
|
190
|
+
"ProviderAvailability",
|
|
191
|
+
"ProviderSpec",
|
|
192
|
+
"ProviderUsage",
|
|
193
|
+
"UsageWindow",
|
|
194
|
+
"authStatusFor",
|
|
195
|
+
"cooldownUntil",
|
|
196
|
+
"detectProviders",
|
|
197
|
+
"parseProviderUsage",
|
|
198
|
+
"parseUsageWindows"
|
|
199
|
+
]
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"id": "public-surface:adapters/tracking",
|
|
203
|
+
"version": "0.5.0",
|
|
204
|
+
"kind": "adapter",
|
|
205
|
+
"entryPoint": "src/index.ts",
|
|
206
|
+
"exports": [
|
|
207
|
+
"TrackingAdapter",
|
|
208
|
+
"TrackingTransition",
|
|
209
|
+
"createTrackingAdapter",
|
|
210
|
+
"createTrackingTransition"
|
|
211
|
+
]
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"id": "public-surface:context/index",
|
|
215
|
+
"version": "0.5.0",
|
|
216
|
+
"kind": "kernel",
|
|
217
|
+
"entryPoint": "src/index.ts",
|
|
218
|
+
"exports": [
|
|
219
|
+
"*",
|
|
220
|
+
"CONTEXT_PROVIDER_SLOT",
|
|
221
|
+
"hashContextSnapshot",
|
|
222
|
+
"hashContextSnapshots",
|
|
223
|
+
"readContextSnapshots",
|
|
224
|
+
"validateContextSnapshot",
|
|
225
|
+
"validateContextSnapshots"
|
|
226
|
+
]
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"id": "public-surface:delivery/index",
|
|
230
|
+
"version": "0.5.0",
|
|
231
|
+
"kind": "kernel",
|
|
232
|
+
"entryPoint": "src/index.ts",
|
|
233
|
+
"exports": [
|
|
234
|
+
"*",
|
|
235
|
+
"AdversarialReviewResult",
|
|
236
|
+
"GateAssessment",
|
|
237
|
+
"GateBinding",
|
|
238
|
+
"GateCriterion",
|
|
239
|
+
"PullRequestApproval",
|
|
240
|
+
"QaTransitionAssessment",
|
|
241
|
+
"ReviewLens",
|
|
242
|
+
"ReviewVerdict",
|
|
243
|
+
"assessAcceptance",
|
|
244
|
+
"assessIntegration",
|
|
245
|
+
"assessPreflight",
|
|
246
|
+
"assessProduction",
|
|
247
|
+
"assessQaTransition",
|
|
248
|
+
"assessWorktreeCleanup",
|
|
249
|
+
"composePullRequest",
|
|
250
|
+
"createPullRequestApproval",
|
|
251
|
+
"runAdversarialReview",
|
|
252
|
+
"verifyPullRequestApproval"
|
|
253
|
+
]
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"id": "public-surface:execution/agent",
|
|
257
|
+
"version": "0.5.0",
|
|
258
|
+
"kind": "execution",
|
|
259
|
+
"entryPoint": "src/index.ts",
|
|
260
|
+
"exports": [
|
|
261
|
+
"*",
|
|
262
|
+
"createSessionRecorder"
|
|
263
|
+
]
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"id": "public-surface:execution/bundle",
|
|
267
|
+
"version": "0.5.0",
|
|
268
|
+
"kind": "execution",
|
|
269
|
+
"entryPoint": "src/index.ts",
|
|
270
|
+
"exports": [
|
|
271
|
+
"*",
|
|
272
|
+
"EVIDENCE_BUNDLE_SCHEMA_VERSION",
|
|
273
|
+
"exportEvidenceBundle",
|
|
274
|
+
"readEvidenceTrustStore",
|
|
275
|
+
"verifyEvidenceBundle"
|
|
276
|
+
]
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"id": "public-surface:execution/config",
|
|
280
|
+
"version": "0.5.0",
|
|
281
|
+
"kind": "execution",
|
|
282
|
+
"entryPoint": "src/index.ts",
|
|
283
|
+
"exports": [
|
|
284
|
+
"loadConfig",
|
|
285
|
+
"validateConfig"
|
|
286
|
+
]
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"id": "public-surface:execution/coordination",
|
|
290
|
+
"version": "0.5.0",
|
|
291
|
+
"kind": "execution",
|
|
292
|
+
"entryPoint": "src/index.ts",
|
|
293
|
+
"exports": [
|
|
294
|
+
"ClaimResult",
|
|
295
|
+
"CoordinationIdentity",
|
|
296
|
+
"DispatchLease",
|
|
297
|
+
"DispatchLedger",
|
|
298
|
+
"DispatchRecord",
|
|
299
|
+
"createDispatchLedger"
|
|
300
|
+
]
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"id": "public-surface:execution/files",
|
|
304
|
+
"version": "0.5.0",
|
|
305
|
+
"kind": "execution",
|
|
306
|
+
"entryPoint": "src/index.ts",
|
|
307
|
+
"exports": [
|
|
308
|
+
"loadLatestRun"
|
|
309
|
+
]
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"id": "public-surface:execution/machine",
|
|
313
|
+
"version": "0.5.0",
|
|
314
|
+
"kind": "execution",
|
|
315
|
+
"entryPoint": "src/index.ts",
|
|
316
|
+
"exports": [
|
|
317
|
+
"*",
|
|
318
|
+
"MachineThresholds",
|
|
319
|
+
"adaptiveConcurrency",
|
|
320
|
+
"createMachineMonitor",
|
|
321
|
+
"sampleMachine",
|
|
322
|
+
"summarizeMachine"
|
|
323
|
+
]
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"id": "public-surface:execution/metrics",
|
|
327
|
+
"version": "0.5.0",
|
|
328
|
+
"kind": "execution",
|
|
329
|
+
"entryPoint": "src/index.ts",
|
|
330
|
+
"exports": [
|
|
331
|
+
"*",
|
|
332
|
+
"BENCHMARK_SCHEMA_VERSION",
|
|
333
|
+
"benchmarkRuns",
|
|
334
|
+
"loadBenchmarkManifest",
|
|
335
|
+
"recordBenchmarkObservation",
|
|
336
|
+
"validateBenchmarkManifest"
|
|
337
|
+
]
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"id": "public-surface:execution/runtime",
|
|
341
|
+
"version": "0.5.0",
|
|
342
|
+
"kind": "execution",
|
|
343
|
+
"entryPoint": "src/index.ts",
|
|
344
|
+
"exports": [
|
|
345
|
+
"*",
|
|
346
|
+
"createConfiguredToolRuntime",
|
|
347
|
+
"createDockerToolRuntime",
|
|
348
|
+
"createProcessToolRuntime",
|
|
349
|
+
"createToolRuntime"
|
|
350
|
+
]
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"id": "public-surface:execution/verification",
|
|
354
|
+
"version": "0.5.0",
|
|
355
|
+
"kind": "execution",
|
|
356
|
+
"entryPoint": "src/index.ts",
|
|
357
|
+
"exports": [
|
|
358
|
+
"approveRun",
|
|
359
|
+
"authorizeRun",
|
|
360
|
+
"cancelRun",
|
|
361
|
+
"cleanTaskArtifacts",
|
|
362
|
+
"planRun",
|
|
363
|
+
"reconcileRun",
|
|
364
|
+
"retryRun",
|
|
365
|
+
"startRun",
|
|
366
|
+
"verifyRun"
|
|
367
|
+
]
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"id": "public-surface:kernel/adapter-contract",
|
|
371
|
+
"version": "0.5.0",
|
|
372
|
+
"kind": "kernel",
|
|
373
|
+
"entryPoint": "src/index.ts",
|
|
374
|
+
"exports": [
|
|
375
|
+
"ASSURANCE_LEVELS",
|
|
376
|
+
"AdapterMetadata",
|
|
377
|
+
"AdapterTelemetry",
|
|
378
|
+
"AssuranceLevel",
|
|
379
|
+
"unknownTelemetry",
|
|
380
|
+
"validateAdapterMetadata"
|
|
381
|
+
]
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"id": "public-surface:kernel/artifacts",
|
|
385
|
+
"version": "0.5.0",
|
|
386
|
+
"kind": "kernel",
|
|
387
|
+
"entryPoint": "src/index.ts",
|
|
388
|
+
"exports": [
|
|
389
|
+
"ARTIFACT_SCHEMA_VERSION",
|
|
390
|
+
"ARTIFACT_TYPES",
|
|
391
|
+
"ArtifactBinding",
|
|
392
|
+
"ArtifactEnvelope",
|
|
393
|
+
"ArtifactEnvelopeInput",
|
|
394
|
+
"ArtifactType",
|
|
395
|
+
"FileArtifactStore",
|
|
396
|
+
"artifactDigest",
|
|
397
|
+
"artifactFilePath",
|
|
398
|
+
"artifactIsFresh",
|
|
399
|
+
"artifactMarkdownPath",
|
|
400
|
+
"createArtifactEnvelope",
|
|
401
|
+
"createPhaseArtifact",
|
|
402
|
+
"readArtifactFile",
|
|
403
|
+
"renderArtifactMarkdown",
|
|
404
|
+
"resumeStateFromArtifacts",
|
|
405
|
+
"validateArtifactEnvelope"
|
|
406
|
+
]
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"id": "public-surface:kernel/block",
|
|
410
|
+
"version": "0.5.0",
|
|
411
|
+
"kind": "kernel",
|
|
412
|
+
"entryPoint": "src/index.ts",
|
|
413
|
+
"exports": [
|
|
414
|
+
"BLOCK_STATUSES",
|
|
415
|
+
"BlockAssessment",
|
|
416
|
+
"BlockManifest",
|
|
417
|
+
"BlockStatus",
|
|
418
|
+
"assessBlock",
|
|
419
|
+
"validateBlockManifest"
|
|
420
|
+
]
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"id": "public-surface:kernel/cache",
|
|
424
|
+
"version": "0.5.0",
|
|
425
|
+
"kind": "kernel",
|
|
426
|
+
"entryPoint": "src/index.ts",
|
|
427
|
+
"exports": [
|
|
428
|
+
"LlmCache",
|
|
429
|
+
"LlmCacheKeyInput",
|
|
430
|
+
"LlmCacheStats",
|
|
431
|
+
"createLlmCache",
|
|
432
|
+
"createLlmCacheKey",
|
|
433
|
+
"validateCacheableOperation"
|
|
434
|
+
]
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"id": "public-surface:kernel/capabilities",
|
|
438
|
+
"version": "0.5.0",
|
|
439
|
+
"kind": "kernel",
|
|
440
|
+
"entryPoint": "src/index.ts",
|
|
441
|
+
"exports": [
|
|
442
|
+
"*",
|
|
443
|
+
"CAPABILITY_KINDS",
|
|
444
|
+
"CAPABILITY_MANIFEST_SCHEMA_VERSION",
|
|
445
|
+
"CapabilityDescriptor",
|
|
446
|
+
"CapabilityKind",
|
|
447
|
+
"CapabilityManifest",
|
|
448
|
+
"CapabilityManifestInput",
|
|
449
|
+
"createCapabilityManifest",
|
|
450
|
+
"validateCapabilityManifest"
|
|
451
|
+
]
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"id": "public-surface:kernel/compatibility",
|
|
455
|
+
"version": "0.5.0",
|
|
456
|
+
"kind": "kernel",
|
|
457
|
+
"entryPoint": "src/index.ts",
|
|
458
|
+
"exports": [
|
|
459
|
+
"COMPATIBILITY_COMPONENTS",
|
|
460
|
+
"COMPATIBILITY_SCHEMA_VERSION",
|
|
461
|
+
"CompatibilityComponent",
|
|
462
|
+
"CompatibilityComponentId",
|
|
463
|
+
"CompatibilityManifest",
|
|
464
|
+
"CompatibilityObservation",
|
|
465
|
+
"CompatibilityReport",
|
|
466
|
+
"CompatibilityStatus",
|
|
467
|
+
"assessCompatibility",
|
|
468
|
+
"createCompatibilityManifest",
|
|
469
|
+
"validateCompatibilityManifest"
|
|
470
|
+
]
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"id": "public-surface:kernel/constants",
|
|
474
|
+
"version": "0.5.0",
|
|
475
|
+
"kind": "kernel",
|
|
476
|
+
"entryPoint": "src/index.ts",
|
|
477
|
+
"exports": [
|
|
478
|
+
"LEGAL_TRANSITIONS",
|
|
479
|
+
"STATES"
|
|
480
|
+
]
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"id": "public-surface:kernel/cycle",
|
|
484
|
+
"version": "0.5.0",
|
|
485
|
+
"kind": "kernel",
|
|
486
|
+
"entryPoint": "src/index.ts",
|
|
487
|
+
"exports": [
|
|
488
|
+
"*",
|
|
489
|
+
"IMPROVEMENT_CYCLE_STEPS",
|
|
490
|
+
"assessImprovementCycle"
|
|
491
|
+
]
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"id": "public-surface:kernel/discovery",
|
|
495
|
+
"version": "0.5.0",
|
|
496
|
+
"kind": "kernel",
|
|
497
|
+
"entryPoint": "src/index.ts",
|
|
498
|
+
"exports": [
|
|
499
|
+
"*",
|
|
500
|
+
"assessDiscovery",
|
|
501
|
+
"isDiscoveryCurrent"
|
|
502
|
+
]
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"id": "public-surface:kernel/error-policy",
|
|
506
|
+
"version": "0.5.0",
|
|
507
|
+
"kind": "kernel",
|
|
508
|
+
"entryPoint": "src/index.ts",
|
|
509
|
+
"exports": [
|
|
510
|
+
"HARNESS_ERROR_CATALOG",
|
|
511
|
+
"HarnessErrorClassification",
|
|
512
|
+
"HarnessErrorDisposition",
|
|
513
|
+
"classifyHarnessError",
|
|
514
|
+
"validateHarnessErrorClassification"
|
|
515
|
+
]
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"id": "public-surface:kernel/errors",
|
|
519
|
+
"version": "0.5.0",
|
|
520
|
+
"kind": "kernel",
|
|
521
|
+
"entryPoint": "src/index.ts",
|
|
522
|
+
"exports": [
|
|
523
|
+
"HARNESS_ERROR_CODES",
|
|
524
|
+
"HarnessError"
|
|
525
|
+
]
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"id": "public-surface:kernel/eval",
|
|
529
|
+
"version": "0.5.0",
|
|
530
|
+
"kind": "kernel",
|
|
531
|
+
"entryPoint": "src/index.ts",
|
|
532
|
+
"exports": [
|
|
533
|
+
"AgentEvalCase",
|
|
534
|
+
"AgentEvalReport",
|
|
535
|
+
"AgentEvalSuite",
|
|
536
|
+
"EVAL_COMPONENTS",
|
|
537
|
+
"EVAL_LAYERS",
|
|
538
|
+
"EVAL_MANIFEST_SCHEMA_VERSION",
|
|
539
|
+
"EvalBatteryReport",
|
|
540
|
+
"EvalCaseDefinition",
|
|
541
|
+
"EvalCaseReport",
|
|
542
|
+
"EvalComponent",
|
|
543
|
+
"EvalExpectation",
|
|
544
|
+
"EvalLayer",
|
|
545
|
+
"EvalManifest",
|
|
546
|
+
"EvalObservation",
|
|
547
|
+
"EvalObservationStatus",
|
|
548
|
+
"assessAgentEval",
|
|
549
|
+
"createEvalManifest",
|
|
550
|
+
"runAgentEval",
|
|
551
|
+
"runEvalBattery",
|
|
552
|
+
"validateEvalManifest"
|
|
553
|
+
]
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"id": "public-surface:kernel/events",
|
|
557
|
+
"version": "0.5.0",
|
|
558
|
+
"kind": "kernel",
|
|
559
|
+
"entryPoint": "src/index.ts",
|
|
560
|
+
"exports": [
|
|
561
|
+
"*",
|
|
562
|
+
"EVENT_LOG_GENESIS",
|
|
563
|
+
"FileEventStore",
|
|
564
|
+
"HARNESS_EVENT_ENVELOPE_SCHEMA_VERSION",
|
|
565
|
+
"HARNESS_EVENT_SCHEMA_VERSION",
|
|
566
|
+
"HARNESS_EVENT_TYPES",
|
|
567
|
+
"HarnessEventEnvelope",
|
|
568
|
+
"HarnessEventEnvelopeInput",
|
|
569
|
+
"HarnessEventProvenance",
|
|
570
|
+
"createHarnessEventEnvelope",
|
|
571
|
+
"inspectEventLogLock",
|
|
572
|
+
"recoverEventLogLock",
|
|
573
|
+
"validateHarnessEventEnvelope"
|
|
574
|
+
]
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"id": "public-surface:kernel/experiment",
|
|
578
|
+
"version": "0.5.0",
|
|
579
|
+
"kind": "kernel",
|
|
580
|
+
"entryPoint": "src/index.ts",
|
|
581
|
+
"exports": [
|
|
582
|
+
"*",
|
|
583
|
+
"selectRuntime"
|
|
584
|
+
]
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"id": "public-surface:kernel/learning",
|
|
588
|
+
"version": "0.5.0",
|
|
589
|
+
"kind": "kernel",
|
|
590
|
+
"entryPoint": "src/index.ts",
|
|
591
|
+
"exports": [
|
|
592
|
+
"LEARNING_STATUSES",
|
|
593
|
+
"LearningRecord",
|
|
594
|
+
"LearningStatus",
|
|
595
|
+
"parseRetro",
|
|
596
|
+
"promoteLearnings"
|
|
597
|
+
]
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"id": "public-surface:kernel/memory",
|
|
601
|
+
"version": "0.5.0",
|
|
602
|
+
"kind": "kernel",
|
|
603
|
+
"entryPoint": "src/index.ts",
|
|
604
|
+
"exports": [
|
|
605
|
+
"AgentMemoryAdapter",
|
|
606
|
+
"AgentMemoryHit",
|
|
607
|
+
"AgentMemoryKvStore",
|
|
608
|
+
"AgentMemoryRecord",
|
|
609
|
+
"MEMORY_SCOPES",
|
|
610
|
+
"MemoryScope",
|
|
611
|
+
"createInMemoryMemoryAdapter",
|
|
612
|
+
"createKvMemoryAdapter",
|
|
613
|
+
"validateMemoryRecord"
|
|
614
|
+
]
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"id": "public-surface:kernel/model-policy",
|
|
618
|
+
"version": "0.5.0",
|
|
619
|
+
"kind": "kernel",
|
|
620
|
+
"entryPoint": "src/index.ts",
|
|
621
|
+
"exports": [
|
|
622
|
+
"MODEL_ROLES",
|
|
623
|
+
"ModelBinding",
|
|
624
|
+
"ModelPolicy",
|
|
625
|
+
"ModelRole",
|
|
626
|
+
"createModelPolicy",
|
|
627
|
+
"modelFor"
|
|
628
|
+
]
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"id": "public-surface:kernel/optimization",
|
|
632
|
+
"version": "0.5.0",
|
|
633
|
+
"kind": "kernel",
|
|
634
|
+
"entryPoint": "src/index.ts",
|
|
635
|
+
"exports": [
|
|
636
|
+
"CacheUsage",
|
|
637
|
+
"MemoryUsage",
|
|
638
|
+
"OptimizationComparison",
|
|
639
|
+
"OptimizationObservation",
|
|
640
|
+
"ParallelismUsage",
|
|
641
|
+
"TokenUsage",
|
|
642
|
+
"compareOptimization",
|
|
643
|
+
"validateOptimizationObservation"
|
|
644
|
+
]
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"id": "public-surface:kernel/phase-executor",
|
|
648
|
+
"version": "0.5.0",
|
|
649
|
+
"kind": "kernel",
|
|
650
|
+
"entryPoint": "src/index.ts",
|
|
651
|
+
"exports": [
|
|
652
|
+
"ExecutePhaseProfileOptions",
|
|
653
|
+
"NormalizedPhaseProfile",
|
|
654
|
+
"PHASE_DECISIONS",
|
|
655
|
+
"PHASE_EFFECTS",
|
|
656
|
+
"PHASE_EFFECT_ACTIONS",
|
|
657
|
+
"PHASE_MODES",
|
|
658
|
+
"PhaseAmbiguity",
|
|
659
|
+
"PhaseContext",
|
|
660
|
+
"PhaseDecision",
|
|
661
|
+
"PhaseDecisionPacket",
|
|
662
|
+
"PhaseDefinition",
|
|
663
|
+
"PhaseEffect",
|
|
664
|
+
"PhaseEffectAction",
|
|
665
|
+
"PhaseEffectPolicy",
|
|
666
|
+
"PhaseExecution",
|
|
667
|
+
"PhaseExecutionReport",
|
|
668
|
+
"PhaseGateEvaluator",
|
|
669
|
+
"PhaseGateResult",
|
|
670
|
+
"PhaseHandler",
|
|
671
|
+
"PhaseHandlerResult",
|
|
672
|
+
"PhaseMode",
|
|
673
|
+
"PhasePreflight",
|
|
674
|
+
"PhasePreflightResult",
|
|
675
|
+
"PhaseProfile",
|
|
676
|
+
"PhaseResumeState",
|
|
677
|
+
"PhaseRetryPolicy",
|
|
678
|
+
"PhaseRoutePlan",
|
|
679
|
+
"createPhaseProfile",
|
|
680
|
+
"executePhaseProfile",
|
|
681
|
+
"planPhaseProfile"
|
|
682
|
+
]
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"id": "public-surface:kernel/pilot",
|
|
686
|
+
"version": "0.5.0",
|
|
687
|
+
"kind": "kernel",
|
|
688
|
+
"entryPoint": "src/index.ts",
|
|
689
|
+
"exports": [
|
|
690
|
+
"*",
|
|
691
|
+
"assessPilot"
|
|
692
|
+
]
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"id": "public-surface:kernel/plugins",
|
|
696
|
+
"version": "0.5.0",
|
|
697
|
+
"kind": "kernel",
|
|
698
|
+
"entryPoint": "src/index.ts",
|
|
699
|
+
"exports": [
|
|
700
|
+
"*",
|
|
701
|
+
"HARNESS_PLUGIN_API_VERSION",
|
|
702
|
+
"createPluginRegistry",
|
|
703
|
+
"createPluginSlot"
|
|
704
|
+
]
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"id": "public-surface:kernel/policy",
|
|
708
|
+
"version": "0.5.0",
|
|
709
|
+
"kind": "kernel",
|
|
710
|
+
"entryPoint": "src/index.ts",
|
|
711
|
+
"exports": [
|
|
712
|
+
"*",
|
|
713
|
+
"createPolicyGate"
|
|
714
|
+
]
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"id": "public-surface:kernel/preflight",
|
|
718
|
+
"version": "0.5.0",
|
|
719
|
+
"kind": "kernel",
|
|
720
|
+
"entryPoint": "src/index.ts",
|
|
721
|
+
"exports": [
|
|
722
|
+
"ChangedFile",
|
|
723
|
+
"FilePreflightPlan",
|
|
724
|
+
"planFilePreflight",
|
|
725
|
+
"validateSafeCommand"
|
|
726
|
+
]
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"id": "public-surface:kernel/quality",
|
|
730
|
+
"version": "0.5.0",
|
|
731
|
+
"kind": "kernel",
|
|
732
|
+
"entryPoint": "src/index.ts",
|
|
733
|
+
"exports": [
|
|
734
|
+
"MetricStatus",
|
|
735
|
+
"PhaseMachineMetrics",
|
|
736
|
+
"PhaseTelemetry",
|
|
737
|
+
"PhaseTokenMetrics",
|
|
738
|
+
"QUALITY_DIMENSIONS",
|
|
739
|
+
"QualityDimension",
|
|
740
|
+
"QualityDimensionScore",
|
|
741
|
+
"QualityMatrix",
|
|
742
|
+
"WatchdogBlocker",
|
|
743
|
+
"WatchdogBudget",
|
|
744
|
+
"WatchdogResult",
|
|
745
|
+
"createQualityMatrix",
|
|
746
|
+
"evaluateWatchdog",
|
|
747
|
+
"validatePhaseTelemetry"
|
|
748
|
+
]
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"id": "public-surface:kernel/resilience",
|
|
752
|
+
"version": "0.5.0",
|
|
753
|
+
"kind": "kernel",
|
|
754
|
+
"entryPoint": "src/index.ts",
|
|
755
|
+
"exports": [
|
|
756
|
+
"FailureClass",
|
|
757
|
+
"FailureClassification",
|
|
758
|
+
"RecoveryObservation",
|
|
759
|
+
"RecoveryPolicy",
|
|
760
|
+
"RecoveryResult",
|
|
761
|
+
"classifyFailure",
|
|
762
|
+
"recoveryDelayMs",
|
|
763
|
+
"runWithRecovery"
|
|
764
|
+
]
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"id": "public-surface:kernel/state-machine",
|
|
768
|
+
"version": "0.5.0",
|
|
769
|
+
"kind": "kernel",
|
|
770
|
+
"entryPoint": "src/index.ts",
|
|
771
|
+
"exports": [
|
|
772
|
+
"approvedDecision",
|
|
773
|
+
"assertHuman",
|
|
774
|
+
"transition"
|
|
775
|
+
]
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"id": "public-surface:kernel/status",
|
|
779
|
+
"version": "0.5.0",
|
|
780
|
+
"kind": "kernel",
|
|
781
|
+
"entryPoint": "src/index.ts",
|
|
782
|
+
"exports": [
|
|
783
|
+
"StatusBlock",
|
|
784
|
+
"StatusSnapshot",
|
|
785
|
+
"createStatusSnapshot",
|
|
786
|
+
"validateStatusSnapshot"
|
|
787
|
+
]
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"id": "public-surface:kernel/types",
|
|
791
|
+
"version": "0.5.0",
|
|
792
|
+
"kind": "kernel",
|
|
793
|
+
"entryPoint": "src/index.ts",
|
|
794
|
+
"exports": [
|
|
795
|
+
"*"
|
|
796
|
+
]
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"id": "public-surface:kernel/wip",
|
|
800
|
+
"version": "0.5.0",
|
|
801
|
+
"kind": "kernel",
|
|
802
|
+
"entryPoint": "src/index.ts",
|
|
803
|
+
"exports": [
|
|
804
|
+
"*",
|
|
805
|
+
"WIP_STATES",
|
|
806
|
+
"assessWip"
|
|
807
|
+
]
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"id": "public-surface:kernel/workflow",
|
|
811
|
+
"version": "0.5.0",
|
|
812
|
+
"kind": "kernel",
|
|
813
|
+
"entryPoint": "src/index.ts",
|
|
814
|
+
"exports": [
|
|
815
|
+
"WorkflowNode",
|
|
816
|
+
"WorkflowResult",
|
|
817
|
+
"runWorkflow"
|
|
818
|
+
]
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"id": "public-surface:loop/brief",
|
|
822
|
+
"version": "0.5.0",
|
|
823
|
+
"kind": "composition",
|
|
824
|
+
"entryPoint": "src/index.ts",
|
|
825
|
+
"exports": [
|
|
826
|
+
"WorkerBriefInput",
|
|
827
|
+
"renderWorkerBrief"
|
|
828
|
+
]
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"id": "public-surface:loop/config",
|
|
832
|
+
"version": "0.5.0",
|
|
833
|
+
"kind": "composition",
|
|
834
|
+
"entryPoint": "src/index.ts",
|
|
835
|
+
"exports": [
|
|
836
|
+
"LOOP_CONFIG_FILE",
|
|
837
|
+
"LOOP_CONFIG_SCHEMA_VERSION",
|
|
838
|
+
"LOOP_LOCAL_CONFIG_FILE",
|
|
839
|
+
"LoadedLoopConfig",
|
|
840
|
+
"LoopConfig",
|
|
841
|
+
"LoopConfigInput",
|
|
842
|
+
"LoopConfigSchema",
|
|
843
|
+
"LoopProviderConfig",
|
|
844
|
+
"ModelReference",
|
|
845
|
+
"loadLoopConfig",
|
|
846
|
+
"mergeLoopConfig",
|
|
847
|
+
"parseLoopConfigText",
|
|
848
|
+
"parseModelRef",
|
|
849
|
+
"providerIdentity",
|
|
850
|
+
"renderHeadlessArgv",
|
|
851
|
+
"renderTuiCommand",
|
|
852
|
+
"tiersFor",
|
|
853
|
+
"validateLoopConfig"
|
|
854
|
+
]
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"id": "public-surface:loop/contract",
|
|
858
|
+
"version": "0.5.0",
|
|
859
|
+
"kind": "composition",
|
|
860
|
+
"entryPoint": "src/index.ts",
|
|
861
|
+
"exports": [
|
|
862
|
+
"CONTRACT_CLOSE",
|
|
863
|
+
"CONTRACT_OPEN",
|
|
864
|
+
"CONTRACT_SCHEMA_VERSION",
|
|
865
|
+
"ContractAssessment",
|
|
866
|
+
"ContractOutcomeSchema",
|
|
867
|
+
"GenerateContractInput",
|
|
868
|
+
"ProviderFailure",
|
|
869
|
+
"StoredContract",
|
|
870
|
+
"TaskContract",
|
|
871
|
+
"TaskContractSchema",
|
|
872
|
+
"assessContract",
|
|
873
|
+
"classifyProviderFailure",
|
|
874
|
+
"contractIsFresh",
|
|
875
|
+
"contractPath",
|
|
876
|
+
"generateContract",
|
|
877
|
+
"parseContractOutput",
|
|
878
|
+
"readStoredContract",
|
|
879
|
+
"renderContractPrompt",
|
|
880
|
+
"resolveDocContext",
|
|
881
|
+
"untrusted",
|
|
882
|
+
"writeStoredContract"
|
|
883
|
+
]
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"id": "public-surface:loop/cooldown",
|
|
887
|
+
"version": "0.5.0",
|
|
888
|
+
"kind": "composition",
|
|
889
|
+
"entryPoint": "src/index.ts",
|
|
890
|
+
"exports": [
|
|
891
|
+
"CooldownEntry",
|
|
892
|
+
"CooldownState",
|
|
893
|
+
"activeCooldowns",
|
|
894
|
+
"clearProviderCooldown",
|
|
895
|
+
"cooldownPath",
|
|
896
|
+
"markProviderExhausted",
|
|
897
|
+
"readCooldowns"
|
|
898
|
+
]
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"id": "public-surface:loop/deliver",
|
|
902
|
+
"version": "0.5.0",
|
|
903
|
+
"kind": "composition",
|
|
904
|
+
"entryPoint": "src/index.ts",
|
|
905
|
+
"exports": [
|
|
906
|
+
"DeliverInput",
|
|
907
|
+
"DeliverOutcome",
|
|
908
|
+
"DeliverReport",
|
|
909
|
+
"DeliverResult",
|
|
910
|
+
"DeliveryState",
|
|
911
|
+
"deliveryStatePath",
|
|
912
|
+
"listDispatched",
|
|
913
|
+
"precheckDeliver",
|
|
914
|
+
"readDeliveryState",
|
|
915
|
+
"runDeliver"
|
|
916
|
+
]
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
"id": "public-surface:loop/doctor",
|
|
920
|
+
"version": "0.5.0",
|
|
921
|
+
"kind": "composition",
|
|
922
|
+
"entryPoint": "src/index.ts",
|
|
923
|
+
"exports": [
|
|
924
|
+
"DoctorCheck",
|
|
925
|
+
"DoctorCheckStatus",
|
|
926
|
+
"LoopDoctorInput",
|
|
927
|
+
"LoopDoctorReport",
|
|
928
|
+
"countRunningWorkers",
|
|
929
|
+
"providerSpecs",
|
|
930
|
+
"runLoopDoctor"
|
|
931
|
+
]
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"id": "public-surface:loop/guided-install",
|
|
935
|
+
"version": "0.5.0",
|
|
936
|
+
"kind": "composition",
|
|
937
|
+
"entryPoint": "src/index.ts",
|
|
938
|
+
"exports": [
|
|
939
|
+
"GuidedInstallIO",
|
|
940
|
+
"GuidedInstallInput",
|
|
941
|
+
"GuidedInstallReport",
|
|
942
|
+
"installPreflight",
|
|
943
|
+
"runGuidedInstall"
|
|
944
|
+
]
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"id": "public-surface:loop/install",
|
|
948
|
+
"version": "0.5.0",
|
|
949
|
+
"kind": "composition",
|
|
950
|
+
"entryPoint": "src/index.ts",
|
|
951
|
+
"exports": [
|
|
952
|
+
"AutomationStatus",
|
|
953
|
+
"InstallAction",
|
|
954
|
+
"InstallInput",
|
|
955
|
+
"InstallReport",
|
|
956
|
+
"LOOP_STAGES",
|
|
957
|
+
"LoopStage",
|
|
958
|
+
"LoopStatusReport",
|
|
959
|
+
"automationName",
|
|
960
|
+
"automationPrompt",
|
|
961
|
+
"automationSpecs",
|
|
962
|
+
"installLoopAutomations",
|
|
963
|
+
"loopStatus",
|
|
964
|
+
"parseAutomationRuns",
|
|
965
|
+
"precheckCommand",
|
|
966
|
+
"shellQuote",
|
|
967
|
+
"uninstallLoopAutomations"
|
|
968
|
+
]
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"id": "public-surface:loop/local-config",
|
|
972
|
+
"version": "0.5.0",
|
|
973
|
+
"kind": "composition",
|
|
974
|
+
"entryPoint": "src/index.ts",
|
|
975
|
+
"exports": [
|
|
976
|
+
"LocalConfigAnswers",
|
|
977
|
+
"LocalConfigPrompter",
|
|
978
|
+
"TeamMember",
|
|
979
|
+
"fetchTeamMembers",
|
|
980
|
+
"hasLocalConfig",
|
|
981
|
+
"localConfigPath",
|
|
982
|
+
"parseTeamMembers",
|
|
983
|
+
"promptLocalConfig",
|
|
984
|
+
"renderLocalConfig",
|
|
985
|
+
"writeLocalConfig"
|
|
986
|
+
]
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"id": "public-surface:loop/process",
|
|
990
|
+
"version": "0.5.0",
|
|
991
|
+
"kind": "composition",
|
|
992
|
+
"entryPoint": "src/index.ts",
|
|
993
|
+
"exports": [
|
|
994
|
+
"createProcessRunner"
|
|
995
|
+
]
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"id": "public-surface:loop/retro",
|
|
999
|
+
"version": "0.5.0",
|
|
1000
|
+
"kind": "composition",
|
|
1001
|
+
"entryPoint": "src/index.ts",
|
|
1002
|
+
"exports": [
|
|
1003
|
+
"HARNESS_REPO_URL",
|
|
1004
|
+
"LoopEvent",
|
|
1005
|
+
"RetroInput",
|
|
1006
|
+
"RetroIssueRow",
|
|
1007
|
+
"RetroReport",
|
|
1008
|
+
"RetroSuggestion",
|
|
1009
|
+
"RetroTarget",
|
|
1010
|
+
"RetroWindow",
|
|
1011
|
+
"buildRetroReport",
|
|
1012
|
+
"buildSuggestions",
|
|
1013
|
+
"normalizeReason",
|
|
1014
|
+
"parseSince",
|
|
1015
|
+
"readLoopEvents",
|
|
1016
|
+
"renderRetroMarkdown",
|
|
1017
|
+
"retroLearnings"
|
|
1018
|
+
]
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"id": "public-surface:loop/routing",
|
|
1022
|
+
"version": "0.5.0",
|
|
1023
|
+
"kind": "composition",
|
|
1024
|
+
"entryPoint": "src/index.ts",
|
|
1025
|
+
"exports": [
|
|
1026
|
+
"RankedModel",
|
|
1027
|
+
"RoutingDecision",
|
|
1028
|
+
"RoutingSkip",
|
|
1029
|
+
"rankModels",
|
|
1030
|
+
"routeAllRoles",
|
|
1031
|
+
"selectModel"
|
|
1032
|
+
]
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"id": "public-surface:loop/slots",
|
|
1036
|
+
"version": "0.5.0",
|
|
1037
|
+
"kind": "composition",
|
|
1038
|
+
"entryPoint": "src/index.ts",
|
|
1039
|
+
"exports": [
|
|
1040
|
+
"SlotAssessment",
|
|
1041
|
+
"SlotInput",
|
|
1042
|
+
"assessSlots",
|
|
1043
|
+
"availableMemoryBytes",
|
|
1044
|
+
"isWsl",
|
|
1045
|
+
"parseMemInfo",
|
|
1046
|
+
"parseVmStat"
|
|
1047
|
+
]
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
"id": "public-surface:loop/tick",
|
|
1051
|
+
"version": "0.5.0",
|
|
1052
|
+
"kind": "composition",
|
|
1053
|
+
"entryPoint": "src/index.ts",
|
|
1054
|
+
"exports": [
|
|
1055
|
+
"DispatchRecordFile",
|
|
1056
|
+
"LoopState",
|
|
1057
|
+
"TickCandidateResult",
|
|
1058
|
+
"TickInput",
|
|
1059
|
+
"TickOutcome",
|
|
1060
|
+
"TickReport",
|
|
1061
|
+
"appendLoopEvent",
|
|
1062
|
+
"branchFor",
|
|
1063
|
+
"busyIssues",
|
|
1064
|
+
"dispatchRecordPath",
|
|
1065
|
+
"gatherLoopState",
|
|
1066
|
+
"launchWorkerTerminal",
|
|
1067
|
+
"precheckTick",
|
|
1068
|
+
"readDispatchRecord",
|
|
1069
|
+
"runTick",
|
|
1070
|
+
"worktreeNameFor"
|
|
1071
|
+
]
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"id": "public-surface:loop/ui/terminal",
|
|
1075
|
+
"version": "0.5.0",
|
|
1076
|
+
"kind": "composition",
|
|
1077
|
+
"entryPoint": "src/index.ts",
|
|
1078
|
+
"exports": [
|
|
1079
|
+
"RichIO",
|
|
1080
|
+
"createRichIO"
|
|
1081
|
+
]
|
|
1082
|
+
}
|
|
1083
|
+
],
|
|
1084
|
+
"digest": "9dbeb29dc407f49e051eb594f9552fa7b1620b9405610a01e6409d0e5f9204b0"
|
|
1085
|
+
}
|