@agentskit/harness 0.4.0 → 0.6.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 +29 -3
- package/README.md +9 -0
- package/capabilities/public-surface.json +571 -49
- package/compatibility/report.json +3 -3
- package/compatibility/report.md +1 -1
- package/dist/cli.js +3679 -157
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1786 -28
- package/dist/index.js +3640 -269
- package/dist/index.js.map +1 -1
- package/docs/ADR-0027-keep-pushing-loop.md +41 -0
- package/docs/ADR-0028-mcp-adapter-boundary.md +45 -0
- package/docs/LOOP.md +276 -0
- package/docs/MODULE-BOUNDARIES.md +37 -4
- package/docs/PRD-0.4.0.md +639 -0
- package/loop.config.example.yaml +157 -0
- package/package.json +38 -7
- package/release/manifest.json +29 -7
- package/release/notes.md +22 -3
- package/release/qualification.json +4 -4
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
"type": "agentskit-harness-capability-manifest",
|
|
3
3
|
"schemaVersion": 1,
|
|
4
4
|
"package": "@agentskit/harness",
|
|
5
|
-
"packageVersion": "0.
|
|
5
|
+
"packageVersion": "0.6.0",
|
|
6
6
|
"entryPoint": "src/index.ts",
|
|
7
|
-
"sourceDigest": "
|
|
7
|
+
"sourceDigest": "0c2f78dcedb17c5e4ea44206bee3a87cf370b94ab9f063cc780227897f3fad75",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
{
|
|
10
10
|
"id": "public-surface:adapters/agent",
|
|
11
|
-
"version": "0.
|
|
11
|
+
"version": "0.6.0",
|
|
12
12
|
"kind": "adapter",
|
|
13
13
|
"entryPoint": "src/index.ts",
|
|
14
14
|
"exports": [
|
|
@@ -20,18 +20,170 @@
|
|
|
20
20
|
"createCodingAgentAdapter"
|
|
21
21
|
]
|
|
22
22
|
},
|
|
23
|
+
{
|
|
24
|
+
"id": "public-surface:adapters/code-review",
|
|
25
|
+
"version": "0.6.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.6.0",
|
|
45
|
+
"kind": "adapter",
|
|
46
|
+
"entryPoint": "src/index.ts",
|
|
47
|
+
"exports": [
|
|
48
|
+
"CommandResult",
|
|
49
|
+
"CommandRunOptions",
|
|
50
|
+
"CommandRunner",
|
|
51
|
+
"findExecutable",
|
|
52
|
+
"parseJsonEnvelope"
|
|
53
|
+
]
|
|
54
|
+
},
|
|
23
55
|
{
|
|
24
56
|
"id": "public-surface:adapters/doc-bridge",
|
|
25
|
-
"version": "0.
|
|
57
|
+
"version": "0.6.0",
|
|
58
|
+
"kind": "adapter",
|
|
59
|
+
"entryPoint": "src/index.ts",
|
|
60
|
+
"exports": [
|
|
61
|
+
"DocBridgeIndexInspection",
|
|
62
|
+
"createDocBridgeContextProvider",
|
|
63
|
+
"inspectDocBridgeIndex"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"id": "public-surface:adapters/github-cli",
|
|
68
|
+
"version": "0.6.0",
|
|
69
|
+
"kind": "adapter",
|
|
70
|
+
"entryPoint": "src/index.ts",
|
|
71
|
+
"exports": [
|
|
72
|
+
"CheckOutcome",
|
|
73
|
+
"ChecksAssessment",
|
|
74
|
+
"GitHubCliOptions",
|
|
75
|
+
"PR_FIELDS",
|
|
76
|
+
"PullRequestCheck",
|
|
77
|
+
"PullRequestSnapshot",
|
|
78
|
+
"assessChecks",
|
|
79
|
+
"githubComment",
|
|
80
|
+
"githubCommentArgv",
|
|
81
|
+
"githubCommentExists",
|
|
82
|
+
"githubMerge",
|
|
83
|
+
"githubMergeArgv",
|
|
84
|
+
"githubOpenPullRequests",
|
|
85
|
+
"githubPullRequest",
|
|
86
|
+
"githubPullRequestsForBranch",
|
|
87
|
+
"parsePullRequest",
|
|
88
|
+
"touchesProtectedPaths"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"id": "public-surface:adapters/linear-orca",
|
|
93
|
+
"version": "0.6.0",
|
|
94
|
+
"kind": "adapter",
|
|
95
|
+
"entryPoint": "src/index.ts",
|
|
96
|
+
"exports": [
|
|
97
|
+
"FetchQueueInput",
|
|
98
|
+
"LinearIssueDetail",
|
|
99
|
+
"LinearListInput",
|
|
100
|
+
"LinearQueueFilter",
|
|
101
|
+
"LinearWriteOptions",
|
|
102
|
+
"LoopIssue",
|
|
103
|
+
"buildListIssuesArgv",
|
|
104
|
+
"createLinearTrackingAdapter",
|
|
105
|
+
"fetchLinearIssue",
|
|
106
|
+
"fetchLinearQueue",
|
|
107
|
+
"filterAndOrderQueue",
|
|
108
|
+
"linearAttach",
|
|
109
|
+
"linearAttachArgv",
|
|
110
|
+
"linearCommentAdd",
|
|
111
|
+
"linearCommentAddArgv",
|
|
112
|
+
"linearLabelAdd",
|
|
113
|
+
"linearLabelArgv",
|
|
114
|
+
"linearLabelRemove",
|
|
115
|
+
"linearStatusSet",
|
|
116
|
+
"linearStatusSetArgv",
|
|
117
|
+
"parseLinearIssueDetail",
|
|
118
|
+
"parseLinearIssues",
|
|
119
|
+
"writeIdFor"
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "public-surface:adapters/mcp",
|
|
124
|
+
"version": "0.6.0",
|
|
125
|
+
"kind": "adapter",
|
|
126
|
+
"entryPoint": "src/index.ts",
|
|
127
|
+
"exports": [
|
|
128
|
+
"McpPolicy",
|
|
129
|
+
"McpToolBridge",
|
|
130
|
+
"McpToolBridgeOptions",
|
|
131
|
+
"McpToolCallInput",
|
|
132
|
+
"McpToolCallResult",
|
|
133
|
+
"createMcpToolBridge",
|
|
134
|
+
"hashMcpArgs"
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"id": "public-surface:adapters/orca-cli",
|
|
139
|
+
"version": "0.6.0",
|
|
26
140
|
"kind": "adapter",
|
|
27
141
|
"entryPoint": "src/index.ts",
|
|
28
142
|
"exports": [
|
|
29
|
-
"
|
|
143
|
+
"OrcaAgentHookState",
|
|
144
|
+
"OrcaAutomation",
|
|
145
|
+
"OrcaAutomationSpec",
|
|
146
|
+
"OrcaCliOptions",
|
|
147
|
+
"OrcaCreatedWorktree",
|
|
148
|
+
"OrcaSendReceipt",
|
|
149
|
+
"OrcaStatus",
|
|
150
|
+
"OrcaTerminal",
|
|
151
|
+
"OrcaWorktree",
|
|
152
|
+
"compareVersions",
|
|
153
|
+
"orcaAccountList",
|
|
154
|
+
"orcaAgentHooks",
|
|
155
|
+
"orcaAutomationCreateArgv",
|
|
156
|
+
"orcaAutomationEditArgv",
|
|
157
|
+
"orcaAutomationRemove",
|
|
158
|
+
"orcaAutomationRun",
|
|
159
|
+
"orcaAutomationRuns",
|
|
160
|
+
"orcaAutomationsList",
|
|
161
|
+
"orcaJson",
|
|
162
|
+
"orcaStatus",
|
|
163
|
+
"orcaTerminalCreate",
|
|
164
|
+
"orcaTerminalList",
|
|
165
|
+
"orcaTerminalScreen",
|
|
166
|
+
"orcaTerminalSend",
|
|
167
|
+
"orcaTerminalWait",
|
|
168
|
+
"orcaVersion",
|
|
169
|
+
"orcaWorktreeCreate",
|
|
170
|
+
"orcaWorktreeRemove",
|
|
171
|
+
"orcaWorktreeSet",
|
|
172
|
+
"orcaWorktreeSetArgv",
|
|
173
|
+
"orcaWorktrees",
|
|
174
|
+
"parseOrcaAgentHooks",
|
|
175
|
+
"parseOrcaAutomations",
|
|
176
|
+
"parseOrcaSendReceipt",
|
|
177
|
+
"parseOrcaStatus",
|
|
178
|
+
"parseOrcaTerminals",
|
|
179
|
+
"parseOrcaVersion",
|
|
180
|
+
"parseOrcaWorktreeCreate",
|
|
181
|
+
"parseOrcaWorktrees"
|
|
30
182
|
]
|
|
31
183
|
},
|
|
32
184
|
{
|
|
33
185
|
"id": "public-surface:adapters/orca",
|
|
34
|
-
"version": "0.
|
|
186
|
+
"version": "0.6.0",
|
|
35
187
|
"kind": "adapter",
|
|
36
188
|
"entryPoint": "src/index.ts",
|
|
37
189
|
"exports": [
|
|
@@ -44,9 +196,42 @@
|
|
|
44
196
|
"createOrcaLifecycleProjection"
|
|
45
197
|
]
|
|
46
198
|
},
|
|
199
|
+
{
|
|
200
|
+
"id": "public-surface:adapters/providers",
|
|
201
|
+
"version": "0.6.0",
|
|
202
|
+
"kind": "adapter",
|
|
203
|
+
"entryPoint": "src/index.ts",
|
|
204
|
+
"exports": [
|
|
205
|
+
"DetectProvidersInput",
|
|
206
|
+
"ProviderAuthStatus",
|
|
207
|
+
"ProviderAvailability",
|
|
208
|
+
"ProviderSpec",
|
|
209
|
+
"ProviderUsage",
|
|
210
|
+
"UsageWindow",
|
|
211
|
+
"authStatusFor",
|
|
212
|
+
"cooldownUntil",
|
|
213
|
+
"detectProviders",
|
|
214
|
+
"parseProviderUsage",
|
|
215
|
+
"parseUsageWindows"
|
|
216
|
+
]
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"id": "public-surface:adapters/rag-context",
|
|
220
|
+
"version": "0.6.0",
|
|
221
|
+
"kind": "adapter",
|
|
222
|
+
"entryPoint": "src/index.ts",
|
|
223
|
+
"exports": [
|
|
224
|
+
"ArgvRagContextProviderOptions",
|
|
225
|
+
"RagContextProviderOptions",
|
|
226
|
+
"RagQueryResult",
|
|
227
|
+
"createArgvRagContextProvider",
|
|
228
|
+
"createRagContextProvider",
|
|
229
|
+
"parseRagQueryOutput"
|
|
230
|
+
]
|
|
231
|
+
},
|
|
47
232
|
{
|
|
48
233
|
"id": "public-surface:adapters/tracking",
|
|
49
|
-
"version": "0.
|
|
234
|
+
"version": "0.6.0",
|
|
50
235
|
"kind": "adapter",
|
|
51
236
|
"entryPoint": "src/index.ts",
|
|
52
237
|
"exports": [
|
|
@@ -58,7 +243,7 @@
|
|
|
58
243
|
},
|
|
59
244
|
{
|
|
60
245
|
"id": "public-surface:context/index",
|
|
61
|
-
"version": "0.
|
|
246
|
+
"version": "0.6.0",
|
|
62
247
|
"kind": "kernel",
|
|
63
248
|
"entryPoint": "src/index.ts",
|
|
64
249
|
"exports": [
|
|
@@ -73,7 +258,7 @@
|
|
|
73
258
|
},
|
|
74
259
|
{
|
|
75
260
|
"id": "public-surface:delivery/index",
|
|
76
|
-
"version": "0.
|
|
261
|
+
"version": "0.6.0",
|
|
77
262
|
"kind": "kernel",
|
|
78
263
|
"entryPoint": "src/index.ts",
|
|
79
264
|
"exports": [
|
|
@@ -100,7 +285,7 @@
|
|
|
100
285
|
},
|
|
101
286
|
{
|
|
102
287
|
"id": "public-surface:execution/agent",
|
|
103
|
-
"version": "0.
|
|
288
|
+
"version": "0.6.0",
|
|
104
289
|
"kind": "execution",
|
|
105
290
|
"entryPoint": "src/index.ts",
|
|
106
291
|
"exports": [
|
|
@@ -110,7 +295,7 @@
|
|
|
110
295
|
},
|
|
111
296
|
{
|
|
112
297
|
"id": "public-surface:execution/bundle",
|
|
113
|
-
"version": "0.
|
|
298
|
+
"version": "0.6.0",
|
|
114
299
|
"kind": "execution",
|
|
115
300
|
"entryPoint": "src/index.ts",
|
|
116
301
|
"exports": [
|
|
@@ -123,7 +308,7 @@
|
|
|
123
308
|
},
|
|
124
309
|
{
|
|
125
310
|
"id": "public-surface:execution/config",
|
|
126
|
-
"version": "0.
|
|
311
|
+
"version": "0.6.0",
|
|
127
312
|
"kind": "execution",
|
|
128
313
|
"entryPoint": "src/index.ts",
|
|
129
314
|
"exports": [
|
|
@@ -133,7 +318,7 @@
|
|
|
133
318
|
},
|
|
134
319
|
{
|
|
135
320
|
"id": "public-surface:execution/coordination",
|
|
136
|
-
"version": "0.
|
|
321
|
+
"version": "0.6.0",
|
|
137
322
|
"kind": "execution",
|
|
138
323
|
"entryPoint": "src/index.ts",
|
|
139
324
|
"exports": [
|
|
@@ -147,7 +332,7 @@
|
|
|
147
332
|
},
|
|
148
333
|
{
|
|
149
334
|
"id": "public-surface:execution/files",
|
|
150
|
-
"version": "0.
|
|
335
|
+
"version": "0.6.0",
|
|
151
336
|
"kind": "execution",
|
|
152
337
|
"entryPoint": "src/index.ts",
|
|
153
338
|
"exports": [
|
|
@@ -156,7 +341,7 @@
|
|
|
156
341
|
},
|
|
157
342
|
{
|
|
158
343
|
"id": "public-surface:execution/machine",
|
|
159
|
-
"version": "0.
|
|
344
|
+
"version": "0.6.0",
|
|
160
345
|
"kind": "execution",
|
|
161
346
|
"entryPoint": "src/index.ts",
|
|
162
347
|
"exports": [
|
|
@@ -170,7 +355,7 @@
|
|
|
170
355
|
},
|
|
171
356
|
{
|
|
172
357
|
"id": "public-surface:execution/metrics",
|
|
173
|
-
"version": "0.
|
|
358
|
+
"version": "0.6.0",
|
|
174
359
|
"kind": "execution",
|
|
175
360
|
"entryPoint": "src/index.ts",
|
|
176
361
|
"exports": [
|
|
@@ -184,7 +369,7 @@
|
|
|
184
369
|
},
|
|
185
370
|
{
|
|
186
371
|
"id": "public-surface:execution/runtime",
|
|
187
|
-
"version": "0.
|
|
372
|
+
"version": "0.6.0",
|
|
188
373
|
"kind": "execution",
|
|
189
374
|
"entryPoint": "src/index.ts",
|
|
190
375
|
"exports": [
|
|
@@ -197,7 +382,7 @@
|
|
|
197
382
|
},
|
|
198
383
|
{
|
|
199
384
|
"id": "public-surface:execution/verification",
|
|
200
|
-
"version": "0.
|
|
385
|
+
"version": "0.6.0",
|
|
201
386
|
"kind": "execution",
|
|
202
387
|
"entryPoint": "src/index.ts",
|
|
203
388
|
"exports": [
|
|
@@ -214,7 +399,7 @@
|
|
|
214
399
|
},
|
|
215
400
|
{
|
|
216
401
|
"id": "public-surface:kernel/adapter-contract",
|
|
217
|
-
"version": "0.
|
|
402
|
+
"version": "0.6.0",
|
|
218
403
|
"kind": "kernel",
|
|
219
404
|
"entryPoint": "src/index.ts",
|
|
220
405
|
"exports": [
|
|
@@ -228,7 +413,7 @@
|
|
|
228
413
|
},
|
|
229
414
|
{
|
|
230
415
|
"id": "public-surface:kernel/artifacts",
|
|
231
|
-
"version": "0.
|
|
416
|
+
"version": "0.6.0",
|
|
232
417
|
"kind": "kernel",
|
|
233
418
|
"entryPoint": "src/index.ts",
|
|
234
419
|
"exports": [
|
|
@@ -253,7 +438,7 @@
|
|
|
253
438
|
},
|
|
254
439
|
{
|
|
255
440
|
"id": "public-surface:kernel/block",
|
|
256
|
-
"version": "0.
|
|
441
|
+
"version": "0.6.0",
|
|
257
442
|
"kind": "kernel",
|
|
258
443
|
"entryPoint": "src/index.ts",
|
|
259
444
|
"exports": [
|
|
@@ -267,7 +452,7 @@
|
|
|
267
452
|
},
|
|
268
453
|
{
|
|
269
454
|
"id": "public-surface:kernel/cache",
|
|
270
|
-
"version": "0.
|
|
455
|
+
"version": "0.6.0",
|
|
271
456
|
"kind": "kernel",
|
|
272
457
|
"entryPoint": "src/index.ts",
|
|
273
458
|
"exports": [
|
|
@@ -281,7 +466,7 @@
|
|
|
281
466
|
},
|
|
282
467
|
{
|
|
283
468
|
"id": "public-surface:kernel/capabilities",
|
|
284
|
-
"version": "0.
|
|
469
|
+
"version": "0.6.0",
|
|
285
470
|
"kind": "kernel",
|
|
286
471
|
"entryPoint": "src/index.ts",
|
|
287
472
|
"exports": [
|
|
@@ -298,7 +483,7 @@
|
|
|
298
483
|
},
|
|
299
484
|
{
|
|
300
485
|
"id": "public-surface:kernel/compatibility",
|
|
301
|
-
"version": "0.
|
|
486
|
+
"version": "0.6.0",
|
|
302
487
|
"kind": "kernel",
|
|
303
488
|
"entryPoint": "src/index.ts",
|
|
304
489
|
"exports": [
|
|
@@ -317,7 +502,7 @@
|
|
|
317
502
|
},
|
|
318
503
|
{
|
|
319
504
|
"id": "public-surface:kernel/constants",
|
|
320
|
-
"version": "0.
|
|
505
|
+
"version": "0.6.0",
|
|
321
506
|
"kind": "kernel",
|
|
322
507
|
"entryPoint": "src/index.ts",
|
|
323
508
|
"exports": [
|
|
@@ -327,7 +512,7 @@
|
|
|
327
512
|
},
|
|
328
513
|
{
|
|
329
514
|
"id": "public-surface:kernel/cycle",
|
|
330
|
-
"version": "0.
|
|
515
|
+
"version": "0.6.0",
|
|
331
516
|
"kind": "kernel",
|
|
332
517
|
"entryPoint": "src/index.ts",
|
|
333
518
|
"exports": [
|
|
@@ -338,7 +523,7 @@
|
|
|
338
523
|
},
|
|
339
524
|
{
|
|
340
525
|
"id": "public-surface:kernel/discovery",
|
|
341
|
-
"version": "0.
|
|
526
|
+
"version": "0.6.0",
|
|
342
527
|
"kind": "kernel",
|
|
343
528
|
"entryPoint": "src/index.ts",
|
|
344
529
|
"exports": [
|
|
@@ -349,7 +534,7 @@
|
|
|
349
534
|
},
|
|
350
535
|
{
|
|
351
536
|
"id": "public-surface:kernel/error-policy",
|
|
352
|
-
"version": "0.
|
|
537
|
+
"version": "0.6.0",
|
|
353
538
|
"kind": "kernel",
|
|
354
539
|
"entryPoint": "src/index.ts",
|
|
355
540
|
"exports": [
|
|
@@ -362,7 +547,7 @@
|
|
|
362
547
|
},
|
|
363
548
|
{
|
|
364
549
|
"id": "public-surface:kernel/errors",
|
|
365
|
-
"version": "0.
|
|
550
|
+
"version": "0.6.0",
|
|
366
551
|
"kind": "kernel",
|
|
367
552
|
"entryPoint": "src/index.ts",
|
|
368
553
|
"exports": [
|
|
@@ -372,7 +557,7 @@
|
|
|
372
557
|
},
|
|
373
558
|
{
|
|
374
559
|
"id": "public-surface:kernel/eval",
|
|
375
|
-
"version": "0.
|
|
560
|
+
"version": "0.6.0",
|
|
376
561
|
"kind": "kernel",
|
|
377
562
|
"entryPoint": "src/index.ts",
|
|
378
563
|
"exports": [
|
|
@@ -400,7 +585,7 @@
|
|
|
400
585
|
},
|
|
401
586
|
{
|
|
402
587
|
"id": "public-surface:kernel/events",
|
|
403
|
-
"version": "0.
|
|
588
|
+
"version": "0.6.0",
|
|
404
589
|
"kind": "kernel",
|
|
405
590
|
"entryPoint": "src/index.ts",
|
|
406
591
|
"exports": [
|
|
@@ -421,7 +606,7 @@
|
|
|
421
606
|
},
|
|
422
607
|
{
|
|
423
608
|
"id": "public-surface:kernel/experiment",
|
|
424
|
-
"version": "0.
|
|
609
|
+
"version": "0.6.0",
|
|
425
610
|
"kind": "kernel",
|
|
426
611
|
"entryPoint": "src/index.ts",
|
|
427
612
|
"exports": [
|
|
@@ -431,7 +616,7 @@
|
|
|
431
616
|
},
|
|
432
617
|
{
|
|
433
618
|
"id": "public-surface:kernel/learning",
|
|
434
|
-
"version": "0.
|
|
619
|
+
"version": "0.6.0",
|
|
435
620
|
"kind": "kernel",
|
|
436
621
|
"entryPoint": "src/index.ts",
|
|
437
622
|
"exports": [
|
|
@@ -444,7 +629,7 @@
|
|
|
444
629
|
},
|
|
445
630
|
{
|
|
446
631
|
"id": "public-surface:kernel/memory",
|
|
447
|
-
"version": "0.
|
|
632
|
+
"version": "0.6.0",
|
|
448
633
|
"kind": "kernel",
|
|
449
634
|
"entryPoint": "src/index.ts",
|
|
450
635
|
"exports": [
|
|
@@ -461,7 +646,7 @@
|
|
|
461
646
|
},
|
|
462
647
|
{
|
|
463
648
|
"id": "public-surface:kernel/model-policy",
|
|
464
|
-
"version": "0.
|
|
649
|
+
"version": "0.6.0",
|
|
465
650
|
"kind": "kernel",
|
|
466
651
|
"entryPoint": "src/index.ts",
|
|
467
652
|
"exports": [
|
|
@@ -475,7 +660,7 @@
|
|
|
475
660
|
},
|
|
476
661
|
{
|
|
477
662
|
"id": "public-surface:kernel/optimization",
|
|
478
|
-
"version": "0.
|
|
663
|
+
"version": "0.6.0",
|
|
479
664
|
"kind": "kernel",
|
|
480
665
|
"entryPoint": "src/index.ts",
|
|
481
666
|
"exports": [
|
|
@@ -491,7 +676,7 @@
|
|
|
491
676
|
},
|
|
492
677
|
{
|
|
493
678
|
"id": "public-surface:kernel/phase-executor",
|
|
494
|
-
"version": "0.
|
|
679
|
+
"version": "0.6.0",
|
|
495
680
|
"kind": "kernel",
|
|
496
681
|
"entryPoint": "src/index.ts",
|
|
497
682
|
"exports": [
|
|
@@ -529,7 +714,7 @@
|
|
|
529
714
|
},
|
|
530
715
|
{
|
|
531
716
|
"id": "public-surface:kernel/pilot",
|
|
532
|
-
"version": "0.
|
|
717
|
+
"version": "0.6.0",
|
|
533
718
|
"kind": "kernel",
|
|
534
719
|
"entryPoint": "src/index.ts",
|
|
535
720
|
"exports": [
|
|
@@ -539,7 +724,7 @@
|
|
|
539
724
|
},
|
|
540
725
|
{
|
|
541
726
|
"id": "public-surface:kernel/plugins",
|
|
542
|
-
"version": "0.
|
|
727
|
+
"version": "0.6.0",
|
|
543
728
|
"kind": "kernel",
|
|
544
729
|
"entryPoint": "src/index.ts",
|
|
545
730
|
"exports": [
|
|
@@ -551,7 +736,7 @@
|
|
|
551
736
|
},
|
|
552
737
|
{
|
|
553
738
|
"id": "public-surface:kernel/policy",
|
|
554
|
-
"version": "0.
|
|
739
|
+
"version": "0.6.0",
|
|
555
740
|
"kind": "kernel",
|
|
556
741
|
"entryPoint": "src/index.ts",
|
|
557
742
|
"exports": [
|
|
@@ -561,7 +746,7 @@
|
|
|
561
746
|
},
|
|
562
747
|
{
|
|
563
748
|
"id": "public-surface:kernel/preflight",
|
|
564
|
-
"version": "0.
|
|
749
|
+
"version": "0.6.0",
|
|
565
750
|
"kind": "kernel",
|
|
566
751
|
"entryPoint": "src/index.ts",
|
|
567
752
|
"exports": [
|
|
@@ -573,7 +758,7 @@
|
|
|
573
758
|
},
|
|
574
759
|
{
|
|
575
760
|
"id": "public-surface:kernel/quality",
|
|
576
|
-
"version": "0.
|
|
761
|
+
"version": "0.6.0",
|
|
577
762
|
"kind": "kernel",
|
|
578
763
|
"entryPoint": "src/index.ts",
|
|
579
764
|
"exports": [
|
|
@@ -595,7 +780,7 @@
|
|
|
595
780
|
},
|
|
596
781
|
{
|
|
597
782
|
"id": "public-surface:kernel/resilience",
|
|
598
|
-
"version": "0.
|
|
783
|
+
"version": "0.6.0",
|
|
599
784
|
"kind": "kernel",
|
|
600
785
|
"entryPoint": "src/index.ts",
|
|
601
786
|
"exports": [
|
|
@@ -611,7 +796,7 @@
|
|
|
611
796
|
},
|
|
612
797
|
{
|
|
613
798
|
"id": "public-surface:kernel/state-machine",
|
|
614
|
-
"version": "0.
|
|
799
|
+
"version": "0.6.0",
|
|
615
800
|
"kind": "kernel",
|
|
616
801
|
"entryPoint": "src/index.ts",
|
|
617
802
|
"exports": [
|
|
@@ -622,7 +807,7 @@
|
|
|
622
807
|
},
|
|
623
808
|
{
|
|
624
809
|
"id": "public-surface:kernel/status",
|
|
625
|
-
"version": "0.
|
|
810
|
+
"version": "0.6.0",
|
|
626
811
|
"kind": "kernel",
|
|
627
812
|
"entryPoint": "src/index.ts",
|
|
628
813
|
"exports": [
|
|
@@ -634,7 +819,7 @@
|
|
|
634
819
|
},
|
|
635
820
|
{
|
|
636
821
|
"id": "public-surface:kernel/types",
|
|
637
|
-
"version": "0.
|
|
822
|
+
"version": "0.6.0",
|
|
638
823
|
"kind": "kernel",
|
|
639
824
|
"entryPoint": "src/index.ts",
|
|
640
825
|
"exports": [
|
|
@@ -643,7 +828,7 @@
|
|
|
643
828
|
},
|
|
644
829
|
{
|
|
645
830
|
"id": "public-surface:kernel/wip",
|
|
646
|
-
"version": "0.
|
|
831
|
+
"version": "0.6.0",
|
|
647
832
|
"kind": "kernel",
|
|
648
833
|
"entryPoint": "src/index.ts",
|
|
649
834
|
"exports": [
|
|
@@ -654,7 +839,7 @@
|
|
|
654
839
|
},
|
|
655
840
|
{
|
|
656
841
|
"id": "public-surface:kernel/workflow",
|
|
657
|
-
"version": "0.
|
|
842
|
+
"version": "0.6.0",
|
|
658
843
|
"kind": "kernel",
|
|
659
844
|
"entryPoint": "src/index.ts",
|
|
660
845
|
"exports": [
|
|
@@ -662,7 +847,344 @@
|
|
|
662
847
|
"WorkflowResult",
|
|
663
848
|
"runWorkflow"
|
|
664
849
|
]
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"id": "public-surface:loop/agent-registry",
|
|
853
|
+
"version": "0.6.0",
|
|
854
|
+
"kind": "composition",
|
|
855
|
+
"entryPoint": "src/index.ts",
|
|
856
|
+
"exports": [
|
|
857
|
+
"AGENT_REGISTRY_SCHEMA_VERSION",
|
|
858
|
+
"AgentRegistry",
|
|
859
|
+
"AgentRegistryEntry",
|
|
860
|
+
"AgentRegistryEntrySchema",
|
|
861
|
+
"AgentRegistrySchema",
|
|
862
|
+
"ResolvedAgent",
|
|
863
|
+
"loadAgentRegistry",
|
|
864
|
+
"parseAgentRegistryText",
|
|
865
|
+
"resolveAgentForRole"
|
|
866
|
+
]
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"id": "public-surface:loop/brief",
|
|
870
|
+
"version": "0.6.0",
|
|
871
|
+
"kind": "composition",
|
|
872
|
+
"entryPoint": "src/index.ts",
|
|
873
|
+
"exports": [
|
|
874
|
+
"WorkerBriefInput",
|
|
875
|
+
"renderWorkerBrief"
|
|
876
|
+
]
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"id": "public-surface:loop/config",
|
|
880
|
+
"version": "0.6.0",
|
|
881
|
+
"kind": "composition",
|
|
882
|
+
"entryPoint": "src/index.ts",
|
|
883
|
+
"exports": [
|
|
884
|
+
"LOOP_CONFIG_FILE",
|
|
885
|
+
"LOOP_CONFIG_SCHEMA_VERSION",
|
|
886
|
+
"LOOP_LOCAL_CONFIG_FILE",
|
|
887
|
+
"LoadedLoopConfig",
|
|
888
|
+
"LoopConfig",
|
|
889
|
+
"LoopConfigInput",
|
|
890
|
+
"LoopConfigSchema",
|
|
891
|
+
"LoopProviderConfig",
|
|
892
|
+
"ModelReference",
|
|
893
|
+
"loadLoopConfig",
|
|
894
|
+
"mergeLoopConfig",
|
|
895
|
+
"parseLoopConfigText",
|
|
896
|
+
"parseModelRef",
|
|
897
|
+
"providerIdentity",
|
|
898
|
+
"renderHeadlessArgv",
|
|
899
|
+
"renderTuiCommand",
|
|
900
|
+
"tiersFor",
|
|
901
|
+
"validateLoopConfig"
|
|
902
|
+
]
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"id": "public-surface:loop/contract",
|
|
906
|
+
"version": "0.6.0",
|
|
907
|
+
"kind": "composition",
|
|
908
|
+
"entryPoint": "src/index.ts",
|
|
909
|
+
"exports": [
|
|
910
|
+
"CONTRACT_CLOSE",
|
|
911
|
+
"CONTRACT_OPEN",
|
|
912
|
+
"CONTRACT_SCHEMA_VERSION",
|
|
913
|
+
"ContractAssessment",
|
|
914
|
+
"ContractOutcomeSchema",
|
|
915
|
+
"GenerateContractInput",
|
|
916
|
+
"ProviderFailure",
|
|
917
|
+
"StoredContract",
|
|
918
|
+
"TaskContract",
|
|
919
|
+
"TaskContractSchema",
|
|
920
|
+
"assessContract",
|
|
921
|
+
"classifyProviderFailure",
|
|
922
|
+
"contractIsFresh",
|
|
923
|
+
"contractPath",
|
|
924
|
+
"generateContract",
|
|
925
|
+
"parseContractOutput",
|
|
926
|
+
"readStoredContract",
|
|
927
|
+
"renderContractPrompt",
|
|
928
|
+
"resolveDocContext",
|
|
929
|
+
"untrusted",
|
|
930
|
+
"writeStoredContract"
|
|
931
|
+
]
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"id": "public-surface:loop/cooldown",
|
|
935
|
+
"version": "0.6.0",
|
|
936
|
+
"kind": "composition",
|
|
937
|
+
"entryPoint": "src/index.ts",
|
|
938
|
+
"exports": [
|
|
939
|
+
"CooldownEntry",
|
|
940
|
+
"CooldownState",
|
|
941
|
+
"activeCooldowns",
|
|
942
|
+
"clearProviderCooldown",
|
|
943
|
+
"cooldownPath",
|
|
944
|
+
"markProviderExhausted",
|
|
945
|
+
"readCooldowns"
|
|
946
|
+
]
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"id": "public-surface:loop/debrief",
|
|
950
|
+
"version": "0.6.0",
|
|
951
|
+
"kind": "composition",
|
|
952
|
+
"entryPoint": "src/index.ts",
|
|
953
|
+
"exports": [
|
|
954
|
+
"DebriefInput",
|
|
955
|
+
"DebriefIssueRow",
|
|
956
|
+
"DebriefReport",
|
|
957
|
+
"buildDebriefReport",
|
|
958
|
+
"renderDebriefMarkdown"
|
|
959
|
+
]
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"id": "public-surface:loop/deliver",
|
|
963
|
+
"version": "0.6.0",
|
|
964
|
+
"kind": "composition",
|
|
965
|
+
"entryPoint": "src/index.ts",
|
|
966
|
+
"exports": [
|
|
967
|
+
"DeliverInput",
|
|
968
|
+
"DeliverOutcome",
|
|
969
|
+
"DeliverReport",
|
|
970
|
+
"DeliverResult",
|
|
971
|
+
"DeliveryState",
|
|
972
|
+
"deliveryStatePath",
|
|
973
|
+
"listDispatched",
|
|
974
|
+
"precheckDeliver",
|
|
975
|
+
"readDeliveryState",
|
|
976
|
+
"runDeliver"
|
|
977
|
+
]
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"id": "public-surface:loop/doctor",
|
|
981
|
+
"version": "0.6.0",
|
|
982
|
+
"kind": "composition",
|
|
983
|
+
"entryPoint": "src/index.ts",
|
|
984
|
+
"exports": [
|
|
985
|
+
"DoctorCheck",
|
|
986
|
+
"DoctorCheckStatus",
|
|
987
|
+
"LoopDoctorInput",
|
|
988
|
+
"LoopDoctorReport",
|
|
989
|
+
"countRunningWorkers",
|
|
990
|
+
"providerSpecs",
|
|
991
|
+
"runLoopDoctor"
|
|
992
|
+
]
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"id": "public-surface:loop/guided-install",
|
|
996
|
+
"version": "0.6.0",
|
|
997
|
+
"kind": "composition",
|
|
998
|
+
"entryPoint": "src/index.ts",
|
|
999
|
+
"exports": [
|
|
1000
|
+
"GuidedInstallIO",
|
|
1001
|
+
"GuidedInstallInput",
|
|
1002
|
+
"GuidedInstallReport",
|
|
1003
|
+
"installPreflight",
|
|
1004
|
+
"runGuidedInstall"
|
|
1005
|
+
]
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"id": "public-surface:loop/install",
|
|
1009
|
+
"version": "0.6.0",
|
|
1010
|
+
"kind": "composition",
|
|
1011
|
+
"entryPoint": "src/index.ts",
|
|
1012
|
+
"exports": [
|
|
1013
|
+
"AutomationStatus",
|
|
1014
|
+
"InstallAction",
|
|
1015
|
+
"InstallInput",
|
|
1016
|
+
"InstallReport",
|
|
1017
|
+
"LOOP_STAGES",
|
|
1018
|
+
"LoopStage",
|
|
1019
|
+
"LoopStatusReport",
|
|
1020
|
+
"automationName",
|
|
1021
|
+
"automationPrompt",
|
|
1022
|
+
"automationSpecs",
|
|
1023
|
+
"installLoopAutomations",
|
|
1024
|
+
"loopStatus",
|
|
1025
|
+
"parseAutomationRuns",
|
|
1026
|
+
"precheckCommand",
|
|
1027
|
+
"shellQuote",
|
|
1028
|
+
"uninstallLoopAutomations"
|
|
1029
|
+
]
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"id": "public-surface:loop/local-config",
|
|
1033
|
+
"version": "0.6.0",
|
|
1034
|
+
"kind": "composition",
|
|
1035
|
+
"entryPoint": "src/index.ts",
|
|
1036
|
+
"exports": [
|
|
1037
|
+
"LocalConfigAnswers",
|
|
1038
|
+
"LocalConfigPrompter",
|
|
1039
|
+
"TeamMember",
|
|
1040
|
+
"fetchTeamMembers",
|
|
1041
|
+
"hasLocalConfig",
|
|
1042
|
+
"localConfigPath",
|
|
1043
|
+
"parseTeamMembers",
|
|
1044
|
+
"promptLocalConfig",
|
|
1045
|
+
"renderLocalConfig",
|
|
1046
|
+
"writeLocalConfig"
|
|
1047
|
+
]
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
"id": "public-surface:loop/memory",
|
|
1051
|
+
"version": "0.6.0",
|
|
1052
|
+
"kind": "composition",
|
|
1053
|
+
"entryPoint": "src/index.ts",
|
|
1054
|
+
"exports": [
|
|
1055
|
+
"LearningsLedger",
|
|
1056
|
+
"MemoryContextPlan",
|
|
1057
|
+
"MemoryPromptSelection",
|
|
1058
|
+
"createFileMemoryAdapter",
|
|
1059
|
+
"createFileMemoryKvStore",
|
|
1060
|
+
"learningToMemoryRecord",
|
|
1061
|
+
"learningsPath",
|
|
1062
|
+
"memoryDigestOf",
|
|
1063
|
+
"openLoopMemory",
|
|
1064
|
+
"planMemoryContext",
|
|
1065
|
+
"preferMemoryOverDocBridge",
|
|
1066
|
+
"promoteLearningsToMemory",
|
|
1067
|
+
"readLearningsLedger",
|
|
1068
|
+
"selectMemoryForPrompt",
|
|
1069
|
+
"upsertProposedLearnings",
|
|
1070
|
+
"writeLearningsLedger"
|
|
1071
|
+
]
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"id": "public-surface:loop/process",
|
|
1075
|
+
"version": "0.6.0",
|
|
1076
|
+
"kind": "composition",
|
|
1077
|
+
"entryPoint": "src/index.ts",
|
|
1078
|
+
"exports": [
|
|
1079
|
+
"createProcessRunner"
|
|
1080
|
+
]
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
"id": "public-surface:loop/retro",
|
|
1084
|
+
"version": "0.6.0",
|
|
1085
|
+
"kind": "composition",
|
|
1086
|
+
"entryPoint": "src/index.ts",
|
|
1087
|
+
"exports": [
|
|
1088
|
+
"HARNESS_REPO_URL",
|
|
1089
|
+
"LoopEvent",
|
|
1090
|
+
"RetroInput",
|
|
1091
|
+
"RetroIssueRow",
|
|
1092
|
+
"RetroReport",
|
|
1093
|
+
"RetroStageReport",
|
|
1094
|
+
"RetroSuggestion",
|
|
1095
|
+
"RetroTarget",
|
|
1096
|
+
"RetroWindow",
|
|
1097
|
+
"buildRetroReport",
|
|
1098
|
+
"buildSuggestions",
|
|
1099
|
+
"normalizeReason",
|
|
1100
|
+
"parseSince",
|
|
1101
|
+
"readLoopEvents",
|
|
1102
|
+
"renderRetroMarkdown",
|
|
1103
|
+
"retroLearnings",
|
|
1104
|
+
"runRetroStage"
|
|
1105
|
+
]
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"id": "public-surface:loop/routing",
|
|
1109
|
+
"version": "0.6.0",
|
|
1110
|
+
"kind": "composition",
|
|
1111
|
+
"entryPoint": "src/index.ts",
|
|
1112
|
+
"exports": [
|
|
1113
|
+
"RankedModel",
|
|
1114
|
+
"RoutingDecision",
|
|
1115
|
+
"RoutingSkip",
|
|
1116
|
+
"rankModels",
|
|
1117
|
+
"routeAllRoles",
|
|
1118
|
+
"selectModel"
|
|
1119
|
+
]
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
"id": "public-surface:loop/slots",
|
|
1123
|
+
"version": "0.6.0",
|
|
1124
|
+
"kind": "composition",
|
|
1125
|
+
"entryPoint": "src/index.ts",
|
|
1126
|
+
"exports": [
|
|
1127
|
+
"SlotAssessment",
|
|
1128
|
+
"SlotInput",
|
|
1129
|
+
"assessSlots",
|
|
1130
|
+
"availableMemoryBytes",
|
|
1131
|
+
"isWsl",
|
|
1132
|
+
"parseMemInfo",
|
|
1133
|
+
"parseVmStat"
|
|
1134
|
+
]
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"id": "public-surface:loop/tick",
|
|
1138
|
+
"version": "0.6.0",
|
|
1139
|
+
"kind": "composition",
|
|
1140
|
+
"entryPoint": "src/index.ts",
|
|
1141
|
+
"exports": [
|
|
1142
|
+
"DispatchRecordFile",
|
|
1143
|
+
"LoopState",
|
|
1144
|
+
"TickCandidateResult",
|
|
1145
|
+
"TickInput",
|
|
1146
|
+
"TickOutcome",
|
|
1147
|
+
"TickReport",
|
|
1148
|
+
"appendLoopEvent",
|
|
1149
|
+
"branchFor",
|
|
1150
|
+
"busyIssues",
|
|
1151
|
+
"dispatchRecordPath",
|
|
1152
|
+
"gatherLoopState",
|
|
1153
|
+
"launchWorkerTerminal",
|
|
1154
|
+
"precheckTick",
|
|
1155
|
+
"readDispatchRecord",
|
|
1156
|
+
"runTick",
|
|
1157
|
+
"worktreeNameFor"
|
|
1158
|
+
]
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
"id": "public-surface:loop/ui/terminal",
|
|
1162
|
+
"version": "0.6.0",
|
|
1163
|
+
"kind": "composition",
|
|
1164
|
+
"entryPoint": "src/index.ts",
|
|
1165
|
+
"exports": [
|
|
1166
|
+
"RichIO",
|
|
1167
|
+
"createRichIO"
|
|
1168
|
+
]
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"id": "public-surface:loop/watch",
|
|
1172
|
+
"version": "0.6.0",
|
|
1173
|
+
"kind": "composition",
|
|
1174
|
+
"entryPoint": "src/index.ts",
|
|
1175
|
+
"exports": [
|
|
1176
|
+
"WatchEvent",
|
|
1177
|
+
"WatchEventKind",
|
|
1178
|
+
"WatchInput",
|
|
1179
|
+
"WatchReport",
|
|
1180
|
+
"WatchTargetSnapshot",
|
|
1181
|
+
"classifyWatchEvent",
|
|
1182
|
+
"classifyWatchPhase",
|
|
1183
|
+
"formatWatchEvent",
|
|
1184
|
+
"snapshotWatchTargets",
|
|
1185
|
+
"watchDeliveries"
|
|
1186
|
+
]
|
|
665
1187
|
}
|
|
666
1188
|
],
|
|
667
|
-
"digest": "
|
|
1189
|
+
"digest": "9fe2e47222eccc6a31ffdd562631eef2bb9b125ced5b8ec99327610e366e32cf"
|
|
668
1190
|
}
|