@agentskit/harness 0.4.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 +19 -3
- package/README.md +8 -0
- package/capabilities/public-surface.json +465 -48
- package/compatibility/report.json +3 -3
- package/compatibility/report.md +1 -1
- package/dist/cli.js +2981 -71
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1494 -4
- package/dist/index.js +2876 -137
- package/dist/index.js.map +1 -1
- package/docs/ADR-0027-keep-pushing-loop.md +41 -0
- package/docs/LOOP.md +195 -0
- package/docs/MODULE-BOUNDARIES.md +29 -1
- package/docs/PRD-0.4.0.md +639 -0
- package/loop.config.example.yaml +121 -0
- package/package.json +38 -7
- package/release/manifest.json +29 -7
- package/release/notes.md +18 -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.5.0",
|
|
6
6
|
"entryPoint": "src/index.ts",
|
|
7
|
-
"sourceDigest": "
|
|
7
|
+
"sourceDigest": "cde5b73e321b9211bf30aeb3b7b1203d10368d1836f839384ab213ae64f84937",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
{
|
|
10
10
|
"id": "public-surface:adapters/agent",
|
|
11
|
-
"version": "0.
|
|
11
|
+
"version": "0.5.0",
|
|
12
12
|
"kind": "adapter",
|
|
13
13
|
"entryPoint": "src/index.ts",
|
|
14
14
|
"exports": [
|
|
@@ -20,18 +20,153 @@
|
|
|
20
20
|
"createCodingAgentAdapter"
|
|
21
21
|
]
|
|
22
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
|
+
},
|
|
23
55
|
{
|
|
24
56
|
"id": "public-surface:adapters/doc-bridge",
|
|
25
|
-
"version": "0.
|
|
57
|
+
"version": "0.5.0",
|
|
26
58
|
"kind": "adapter",
|
|
27
59
|
"entryPoint": "src/index.ts",
|
|
28
60
|
"exports": [
|
|
29
61
|
"createDocBridgeContextProvider"
|
|
30
62
|
]
|
|
31
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
|
+
},
|
|
32
167
|
{
|
|
33
168
|
"id": "public-surface:adapters/orca",
|
|
34
|
-
"version": "0.
|
|
169
|
+
"version": "0.5.0",
|
|
35
170
|
"kind": "adapter",
|
|
36
171
|
"entryPoint": "src/index.ts",
|
|
37
172
|
"exports": [
|
|
@@ -44,9 +179,28 @@
|
|
|
44
179
|
"createOrcaLifecycleProjection"
|
|
45
180
|
]
|
|
46
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
|
+
},
|
|
47
201
|
{
|
|
48
202
|
"id": "public-surface:adapters/tracking",
|
|
49
|
-
"version": "0.
|
|
203
|
+
"version": "0.5.0",
|
|
50
204
|
"kind": "adapter",
|
|
51
205
|
"entryPoint": "src/index.ts",
|
|
52
206
|
"exports": [
|
|
@@ -58,7 +212,7 @@
|
|
|
58
212
|
},
|
|
59
213
|
{
|
|
60
214
|
"id": "public-surface:context/index",
|
|
61
|
-
"version": "0.
|
|
215
|
+
"version": "0.5.0",
|
|
62
216
|
"kind": "kernel",
|
|
63
217
|
"entryPoint": "src/index.ts",
|
|
64
218
|
"exports": [
|
|
@@ -73,7 +227,7 @@
|
|
|
73
227
|
},
|
|
74
228
|
{
|
|
75
229
|
"id": "public-surface:delivery/index",
|
|
76
|
-
"version": "0.
|
|
230
|
+
"version": "0.5.0",
|
|
77
231
|
"kind": "kernel",
|
|
78
232
|
"entryPoint": "src/index.ts",
|
|
79
233
|
"exports": [
|
|
@@ -100,7 +254,7 @@
|
|
|
100
254
|
},
|
|
101
255
|
{
|
|
102
256
|
"id": "public-surface:execution/agent",
|
|
103
|
-
"version": "0.
|
|
257
|
+
"version": "0.5.0",
|
|
104
258
|
"kind": "execution",
|
|
105
259
|
"entryPoint": "src/index.ts",
|
|
106
260
|
"exports": [
|
|
@@ -110,7 +264,7 @@
|
|
|
110
264
|
},
|
|
111
265
|
{
|
|
112
266
|
"id": "public-surface:execution/bundle",
|
|
113
|
-
"version": "0.
|
|
267
|
+
"version": "0.5.0",
|
|
114
268
|
"kind": "execution",
|
|
115
269
|
"entryPoint": "src/index.ts",
|
|
116
270
|
"exports": [
|
|
@@ -123,7 +277,7 @@
|
|
|
123
277
|
},
|
|
124
278
|
{
|
|
125
279
|
"id": "public-surface:execution/config",
|
|
126
|
-
"version": "0.
|
|
280
|
+
"version": "0.5.0",
|
|
127
281
|
"kind": "execution",
|
|
128
282
|
"entryPoint": "src/index.ts",
|
|
129
283
|
"exports": [
|
|
@@ -133,7 +287,7 @@
|
|
|
133
287
|
},
|
|
134
288
|
{
|
|
135
289
|
"id": "public-surface:execution/coordination",
|
|
136
|
-
"version": "0.
|
|
290
|
+
"version": "0.5.0",
|
|
137
291
|
"kind": "execution",
|
|
138
292
|
"entryPoint": "src/index.ts",
|
|
139
293
|
"exports": [
|
|
@@ -147,7 +301,7 @@
|
|
|
147
301
|
},
|
|
148
302
|
{
|
|
149
303
|
"id": "public-surface:execution/files",
|
|
150
|
-
"version": "0.
|
|
304
|
+
"version": "0.5.0",
|
|
151
305
|
"kind": "execution",
|
|
152
306
|
"entryPoint": "src/index.ts",
|
|
153
307
|
"exports": [
|
|
@@ -156,7 +310,7 @@
|
|
|
156
310
|
},
|
|
157
311
|
{
|
|
158
312
|
"id": "public-surface:execution/machine",
|
|
159
|
-
"version": "0.
|
|
313
|
+
"version": "0.5.0",
|
|
160
314
|
"kind": "execution",
|
|
161
315
|
"entryPoint": "src/index.ts",
|
|
162
316
|
"exports": [
|
|
@@ -170,7 +324,7 @@
|
|
|
170
324
|
},
|
|
171
325
|
{
|
|
172
326
|
"id": "public-surface:execution/metrics",
|
|
173
|
-
"version": "0.
|
|
327
|
+
"version": "0.5.0",
|
|
174
328
|
"kind": "execution",
|
|
175
329
|
"entryPoint": "src/index.ts",
|
|
176
330
|
"exports": [
|
|
@@ -184,7 +338,7 @@
|
|
|
184
338
|
},
|
|
185
339
|
{
|
|
186
340
|
"id": "public-surface:execution/runtime",
|
|
187
|
-
"version": "0.
|
|
341
|
+
"version": "0.5.0",
|
|
188
342
|
"kind": "execution",
|
|
189
343
|
"entryPoint": "src/index.ts",
|
|
190
344
|
"exports": [
|
|
@@ -197,7 +351,7 @@
|
|
|
197
351
|
},
|
|
198
352
|
{
|
|
199
353
|
"id": "public-surface:execution/verification",
|
|
200
|
-
"version": "0.
|
|
354
|
+
"version": "0.5.0",
|
|
201
355
|
"kind": "execution",
|
|
202
356
|
"entryPoint": "src/index.ts",
|
|
203
357
|
"exports": [
|
|
@@ -214,7 +368,7 @@
|
|
|
214
368
|
},
|
|
215
369
|
{
|
|
216
370
|
"id": "public-surface:kernel/adapter-contract",
|
|
217
|
-
"version": "0.
|
|
371
|
+
"version": "0.5.0",
|
|
218
372
|
"kind": "kernel",
|
|
219
373
|
"entryPoint": "src/index.ts",
|
|
220
374
|
"exports": [
|
|
@@ -228,7 +382,7 @@
|
|
|
228
382
|
},
|
|
229
383
|
{
|
|
230
384
|
"id": "public-surface:kernel/artifacts",
|
|
231
|
-
"version": "0.
|
|
385
|
+
"version": "0.5.0",
|
|
232
386
|
"kind": "kernel",
|
|
233
387
|
"entryPoint": "src/index.ts",
|
|
234
388
|
"exports": [
|
|
@@ -253,7 +407,7 @@
|
|
|
253
407
|
},
|
|
254
408
|
{
|
|
255
409
|
"id": "public-surface:kernel/block",
|
|
256
|
-
"version": "0.
|
|
410
|
+
"version": "0.5.0",
|
|
257
411
|
"kind": "kernel",
|
|
258
412
|
"entryPoint": "src/index.ts",
|
|
259
413
|
"exports": [
|
|
@@ -267,7 +421,7 @@
|
|
|
267
421
|
},
|
|
268
422
|
{
|
|
269
423
|
"id": "public-surface:kernel/cache",
|
|
270
|
-
"version": "0.
|
|
424
|
+
"version": "0.5.0",
|
|
271
425
|
"kind": "kernel",
|
|
272
426
|
"entryPoint": "src/index.ts",
|
|
273
427
|
"exports": [
|
|
@@ -281,7 +435,7 @@
|
|
|
281
435
|
},
|
|
282
436
|
{
|
|
283
437
|
"id": "public-surface:kernel/capabilities",
|
|
284
|
-
"version": "0.
|
|
438
|
+
"version": "0.5.0",
|
|
285
439
|
"kind": "kernel",
|
|
286
440
|
"entryPoint": "src/index.ts",
|
|
287
441
|
"exports": [
|
|
@@ -298,7 +452,7 @@
|
|
|
298
452
|
},
|
|
299
453
|
{
|
|
300
454
|
"id": "public-surface:kernel/compatibility",
|
|
301
|
-
"version": "0.
|
|
455
|
+
"version": "0.5.0",
|
|
302
456
|
"kind": "kernel",
|
|
303
457
|
"entryPoint": "src/index.ts",
|
|
304
458
|
"exports": [
|
|
@@ -317,7 +471,7 @@
|
|
|
317
471
|
},
|
|
318
472
|
{
|
|
319
473
|
"id": "public-surface:kernel/constants",
|
|
320
|
-
"version": "0.
|
|
474
|
+
"version": "0.5.0",
|
|
321
475
|
"kind": "kernel",
|
|
322
476
|
"entryPoint": "src/index.ts",
|
|
323
477
|
"exports": [
|
|
@@ -327,7 +481,7 @@
|
|
|
327
481
|
},
|
|
328
482
|
{
|
|
329
483
|
"id": "public-surface:kernel/cycle",
|
|
330
|
-
"version": "0.
|
|
484
|
+
"version": "0.5.0",
|
|
331
485
|
"kind": "kernel",
|
|
332
486
|
"entryPoint": "src/index.ts",
|
|
333
487
|
"exports": [
|
|
@@ -338,7 +492,7 @@
|
|
|
338
492
|
},
|
|
339
493
|
{
|
|
340
494
|
"id": "public-surface:kernel/discovery",
|
|
341
|
-
"version": "0.
|
|
495
|
+
"version": "0.5.0",
|
|
342
496
|
"kind": "kernel",
|
|
343
497
|
"entryPoint": "src/index.ts",
|
|
344
498
|
"exports": [
|
|
@@ -349,7 +503,7 @@
|
|
|
349
503
|
},
|
|
350
504
|
{
|
|
351
505
|
"id": "public-surface:kernel/error-policy",
|
|
352
|
-
"version": "0.
|
|
506
|
+
"version": "0.5.0",
|
|
353
507
|
"kind": "kernel",
|
|
354
508
|
"entryPoint": "src/index.ts",
|
|
355
509
|
"exports": [
|
|
@@ -362,7 +516,7 @@
|
|
|
362
516
|
},
|
|
363
517
|
{
|
|
364
518
|
"id": "public-surface:kernel/errors",
|
|
365
|
-
"version": "0.
|
|
519
|
+
"version": "0.5.0",
|
|
366
520
|
"kind": "kernel",
|
|
367
521
|
"entryPoint": "src/index.ts",
|
|
368
522
|
"exports": [
|
|
@@ -372,7 +526,7 @@
|
|
|
372
526
|
},
|
|
373
527
|
{
|
|
374
528
|
"id": "public-surface:kernel/eval",
|
|
375
|
-
"version": "0.
|
|
529
|
+
"version": "0.5.0",
|
|
376
530
|
"kind": "kernel",
|
|
377
531
|
"entryPoint": "src/index.ts",
|
|
378
532
|
"exports": [
|
|
@@ -400,7 +554,7 @@
|
|
|
400
554
|
},
|
|
401
555
|
{
|
|
402
556
|
"id": "public-surface:kernel/events",
|
|
403
|
-
"version": "0.
|
|
557
|
+
"version": "0.5.0",
|
|
404
558
|
"kind": "kernel",
|
|
405
559
|
"entryPoint": "src/index.ts",
|
|
406
560
|
"exports": [
|
|
@@ -421,7 +575,7 @@
|
|
|
421
575
|
},
|
|
422
576
|
{
|
|
423
577
|
"id": "public-surface:kernel/experiment",
|
|
424
|
-
"version": "0.
|
|
578
|
+
"version": "0.5.0",
|
|
425
579
|
"kind": "kernel",
|
|
426
580
|
"entryPoint": "src/index.ts",
|
|
427
581
|
"exports": [
|
|
@@ -431,7 +585,7 @@
|
|
|
431
585
|
},
|
|
432
586
|
{
|
|
433
587
|
"id": "public-surface:kernel/learning",
|
|
434
|
-
"version": "0.
|
|
588
|
+
"version": "0.5.0",
|
|
435
589
|
"kind": "kernel",
|
|
436
590
|
"entryPoint": "src/index.ts",
|
|
437
591
|
"exports": [
|
|
@@ -444,7 +598,7 @@
|
|
|
444
598
|
},
|
|
445
599
|
{
|
|
446
600
|
"id": "public-surface:kernel/memory",
|
|
447
|
-
"version": "0.
|
|
601
|
+
"version": "0.5.0",
|
|
448
602
|
"kind": "kernel",
|
|
449
603
|
"entryPoint": "src/index.ts",
|
|
450
604
|
"exports": [
|
|
@@ -461,7 +615,7 @@
|
|
|
461
615
|
},
|
|
462
616
|
{
|
|
463
617
|
"id": "public-surface:kernel/model-policy",
|
|
464
|
-
"version": "0.
|
|
618
|
+
"version": "0.5.0",
|
|
465
619
|
"kind": "kernel",
|
|
466
620
|
"entryPoint": "src/index.ts",
|
|
467
621
|
"exports": [
|
|
@@ -475,7 +629,7 @@
|
|
|
475
629
|
},
|
|
476
630
|
{
|
|
477
631
|
"id": "public-surface:kernel/optimization",
|
|
478
|
-
"version": "0.
|
|
632
|
+
"version": "0.5.0",
|
|
479
633
|
"kind": "kernel",
|
|
480
634
|
"entryPoint": "src/index.ts",
|
|
481
635
|
"exports": [
|
|
@@ -491,7 +645,7 @@
|
|
|
491
645
|
},
|
|
492
646
|
{
|
|
493
647
|
"id": "public-surface:kernel/phase-executor",
|
|
494
|
-
"version": "0.
|
|
648
|
+
"version": "0.5.0",
|
|
495
649
|
"kind": "kernel",
|
|
496
650
|
"entryPoint": "src/index.ts",
|
|
497
651
|
"exports": [
|
|
@@ -529,7 +683,7 @@
|
|
|
529
683
|
},
|
|
530
684
|
{
|
|
531
685
|
"id": "public-surface:kernel/pilot",
|
|
532
|
-
"version": "0.
|
|
686
|
+
"version": "0.5.0",
|
|
533
687
|
"kind": "kernel",
|
|
534
688
|
"entryPoint": "src/index.ts",
|
|
535
689
|
"exports": [
|
|
@@ -539,7 +693,7 @@
|
|
|
539
693
|
},
|
|
540
694
|
{
|
|
541
695
|
"id": "public-surface:kernel/plugins",
|
|
542
|
-
"version": "0.
|
|
696
|
+
"version": "0.5.0",
|
|
543
697
|
"kind": "kernel",
|
|
544
698
|
"entryPoint": "src/index.ts",
|
|
545
699
|
"exports": [
|
|
@@ -551,7 +705,7 @@
|
|
|
551
705
|
},
|
|
552
706
|
{
|
|
553
707
|
"id": "public-surface:kernel/policy",
|
|
554
|
-
"version": "0.
|
|
708
|
+
"version": "0.5.0",
|
|
555
709
|
"kind": "kernel",
|
|
556
710
|
"entryPoint": "src/index.ts",
|
|
557
711
|
"exports": [
|
|
@@ -561,7 +715,7 @@
|
|
|
561
715
|
},
|
|
562
716
|
{
|
|
563
717
|
"id": "public-surface:kernel/preflight",
|
|
564
|
-
"version": "0.
|
|
718
|
+
"version": "0.5.0",
|
|
565
719
|
"kind": "kernel",
|
|
566
720
|
"entryPoint": "src/index.ts",
|
|
567
721
|
"exports": [
|
|
@@ -573,7 +727,7 @@
|
|
|
573
727
|
},
|
|
574
728
|
{
|
|
575
729
|
"id": "public-surface:kernel/quality",
|
|
576
|
-
"version": "0.
|
|
730
|
+
"version": "0.5.0",
|
|
577
731
|
"kind": "kernel",
|
|
578
732
|
"entryPoint": "src/index.ts",
|
|
579
733
|
"exports": [
|
|
@@ -595,7 +749,7 @@
|
|
|
595
749
|
},
|
|
596
750
|
{
|
|
597
751
|
"id": "public-surface:kernel/resilience",
|
|
598
|
-
"version": "0.
|
|
752
|
+
"version": "0.5.0",
|
|
599
753
|
"kind": "kernel",
|
|
600
754
|
"entryPoint": "src/index.ts",
|
|
601
755
|
"exports": [
|
|
@@ -611,7 +765,7 @@
|
|
|
611
765
|
},
|
|
612
766
|
{
|
|
613
767
|
"id": "public-surface:kernel/state-machine",
|
|
614
|
-
"version": "0.
|
|
768
|
+
"version": "0.5.0",
|
|
615
769
|
"kind": "kernel",
|
|
616
770
|
"entryPoint": "src/index.ts",
|
|
617
771
|
"exports": [
|
|
@@ -622,7 +776,7 @@
|
|
|
622
776
|
},
|
|
623
777
|
{
|
|
624
778
|
"id": "public-surface:kernel/status",
|
|
625
|
-
"version": "0.
|
|
779
|
+
"version": "0.5.0",
|
|
626
780
|
"kind": "kernel",
|
|
627
781
|
"entryPoint": "src/index.ts",
|
|
628
782
|
"exports": [
|
|
@@ -634,7 +788,7 @@
|
|
|
634
788
|
},
|
|
635
789
|
{
|
|
636
790
|
"id": "public-surface:kernel/types",
|
|
637
|
-
"version": "0.
|
|
791
|
+
"version": "0.5.0",
|
|
638
792
|
"kind": "kernel",
|
|
639
793
|
"entryPoint": "src/index.ts",
|
|
640
794
|
"exports": [
|
|
@@ -643,7 +797,7 @@
|
|
|
643
797
|
},
|
|
644
798
|
{
|
|
645
799
|
"id": "public-surface:kernel/wip",
|
|
646
|
-
"version": "0.
|
|
800
|
+
"version": "0.5.0",
|
|
647
801
|
"kind": "kernel",
|
|
648
802
|
"entryPoint": "src/index.ts",
|
|
649
803
|
"exports": [
|
|
@@ -654,7 +808,7 @@
|
|
|
654
808
|
},
|
|
655
809
|
{
|
|
656
810
|
"id": "public-surface:kernel/workflow",
|
|
657
|
-
"version": "0.
|
|
811
|
+
"version": "0.5.0",
|
|
658
812
|
"kind": "kernel",
|
|
659
813
|
"entryPoint": "src/index.ts",
|
|
660
814
|
"exports": [
|
|
@@ -662,7 +816,270 @@
|
|
|
662
816
|
"WorkflowResult",
|
|
663
817
|
"runWorkflow"
|
|
664
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
|
+
]
|
|
665
1082
|
}
|
|
666
1083
|
],
|
|
667
|
-
"digest": "
|
|
1084
|
+
"digest": "9dbeb29dc407f49e051eb594f9552fa7b1620b9405610a01e6409d0e5f9204b0"
|
|
668
1085
|
}
|