@agentskit/harness 0.5.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 +10 -0
- package/README.md +2 -1
- package/capabilities/public-surface.json +176 -71
- package/dist/cli.js +739 -127
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +322 -54
- package/dist/index.js +884 -252
- package/dist/index.js.map +1 -1
- package/docs/ADR-0028-mcp-adapter-boundary.md +45 -0
- package/docs/LOOP.md +81 -0
- package/docs/MODULE-BOUNDARIES.md +8 -3
- package/loop.config.example.yaml +38 -2
- package/package.json +1 -1
- package/release/manifest.json +1 -1
- package/release/notes.md +4 -0
|
@@ -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": [
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"id": "public-surface:adapters/code-review",
|
|
25
|
-
"version": "0.
|
|
25
|
+
"version": "0.6.0",
|
|
26
26
|
"kind": "adapter",
|
|
27
27
|
"entryPoint": "src/index.ts",
|
|
28
28
|
"exports": [
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
{
|
|
43
43
|
"id": "public-surface:adapters/command",
|
|
44
|
-
"version": "0.
|
|
44
|
+
"version": "0.6.0",
|
|
45
45
|
"kind": "adapter",
|
|
46
46
|
"entryPoint": "src/index.ts",
|
|
47
47
|
"exports": [
|
|
@@ -54,16 +54,18 @@
|
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
56
|
"id": "public-surface:adapters/doc-bridge",
|
|
57
|
-
"version": "0.
|
|
57
|
+
"version": "0.6.0",
|
|
58
58
|
"kind": "adapter",
|
|
59
59
|
"entryPoint": "src/index.ts",
|
|
60
60
|
"exports": [
|
|
61
|
-
"
|
|
61
|
+
"DocBridgeIndexInspection",
|
|
62
|
+
"createDocBridgeContextProvider",
|
|
63
|
+
"inspectDocBridgeIndex"
|
|
62
64
|
]
|
|
63
65
|
},
|
|
64
66
|
{
|
|
65
67
|
"id": "public-surface:adapters/github-cli",
|
|
66
|
-
"version": "0.
|
|
68
|
+
"version": "0.6.0",
|
|
67
69
|
"kind": "adapter",
|
|
68
70
|
"entryPoint": "src/index.ts",
|
|
69
71
|
"exports": [
|
|
@@ -88,7 +90,7 @@
|
|
|
88
90
|
},
|
|
89
91
|
{
|
|
90
92
|
"id": "public-surface:adapters/linear-orca",
|
|
91
|
-
"version": "0.
|
|
93
|
+
"version": "0.6.0",
|
|
92
94
|
"kind": "adapter",
|
|
93
95
|
"entryPoint": "src/index.ts",
|
|
94
96
|
"exports": [
|
|
@@ -117,9 +119,24 @@
|
|
|
117
119
|
"writeIdFor"
|
|
118
120
|
]
|
|
119
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
|
+
},
|
|
120
137
|
{
|
|
121
138
|
"id": "public-surface:adapters/orca-cli",
|
|
122
|
-
"version": "0.
|
|
139
|
+
"version": "0.6.0",
|
|
123
140
|
"kind": "adapter",
|
|
124
141
|
"entryPoint": "src/index.ts",
|
|
125
142
|
"exports": [
|
|
@@ -166,7 +183,7 @@
|
|
|
166
183
|
},
|
|
167
184
|
{
|
|
168
185
|
"id": "public-surface:adapters/orca",
|
|
169
|
-
"version": "0.
|
|
186
|
+
"version": "0.6.0",
|
|
170
187
|
"kind": "adapter",
|
|
171
188
|
"entryPoint": "src/index.ts",
|
|
172
189
|
"exports": [
|
|
@@ -181,7 +198,7 @@
|
|
|
181
198
|
},
|
|
182
199
|
{
|
|
183
200
|
"id": "public-surface:adapters/providers",
|
|
184
|
-
"version": "0.
|
|
201
|
+
"version": "0.6.0",
|
|
185
202
|
"kind": "adapter",
|
|
186
203
|
"entryPoint": "src/index.ts",
|
|
187
204
|
"exports": [
|
|
@@ -198,9 +215,23 @@
|
|
|
198
215
|
"parseUsageWindows"
|
|
199
216
|
]
|
|
200
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
|
+
},
|
|
201
232
|
{
|
|
202
233
|
"id": "public-surface:adapters/tracking",
|
|
203
|
-
"version": "0.
|
|
234
|
+
"version": "0.6.0",
|
|
204
235
|
"kind": "adapter",
|
|
205
236
|
"entryPoint": "src/index.ts",
|
|
206
237
|
"exports": [
|
|
@@ -212,7 +243,7 @@
|
|
|
212
243
|
},
|
|
213
244
|
{
|
|
214
245
|
"id": "public-surface:context/index",
|
|
215
|
-
"version": "0.
|
|
246
|
+
"version": "0.6.0",
|
|
216
247
|
"kind": "kernel",
|
|
217
248
|
"entryPoint": "src/index.ts",
|
|
218
249
|
"exports": [
|
|
@@ -227,7 +258,7 @@
|
|
|
227
258
|
},
|
|
228
259
|
{
|
|
229
260
|
"id": "public-surface:delivery/index",
|
|
230
|
-
"version": "0.
|
|
261
|
+
"version": "0.6.0",
|
|
231
262
|
"kind": "kernel",
|
|
232
263
|
"entryPoint": "src/index.ts",
|
|
233
264
|
"exports": [
|
|
@@ -254,7 +285,7 @@
|
|
|
254
285
|
},
|
|
255
286
|
{
|
|
256
287
|
"id": "public-surface:execution/agent",
|
|
257
|
-
"version": "0.
|
|
288
|
+
"version": "0.6.0",
|
|
258
289
|
"kind": "execution",
|
|
259
290
|
"entryPoint": "src/index.ts",
|
|
260
291
|
"exports": [
|
|
@@ -264,7 +295,7 @@
|
|
|
264
295
|
},
|
|
265
296
|
{
|
|
266
297
|
"id": "public-surface:execution/bundle",
|
|
267
|
-
"version": "0.
|
|
298
|
+
"version": "0.6.0",
|
|
268
299
|
"kind": "execution",
|
|
269
300
|
"entryPoint": "src/index.ts",
|
|
270
301
|
"exports": [
|
|
@@ -277,7 +308,7 @@
|
|
|
277
308
|
},
|
|
278
309
|
{
|
|
279
310
|
"id": "public-surface:execution/config",
|
|
280
|
-
"version": "0.
|
|
311
|
+
"version": "0.6.0",
|
|
281
312
|
"kind": "execution",
|
|
282
313
|
"entryPoint": "src/index.ts",
|
|
283
314
|
"exports": [
|
|
@@ -287,7 +318,7 @@
|
|
|
287
318
|
},
|
|
288
319
|
{
|
|
289
320
|
"id": "public-surface:execution/coordination",
|
|
290
|
-
"version": "0.
|
|
321
|
+
"version": "0.6.0",
|
|
291
322
|
"kind": "execution",
|
|
292
323
|
"entryPoint": "src/index.ts",
|
|
293
324
|
"exports": [
|
|
@@ -301,7 +332,7 @@
|
|
|
301
332
|
},
|
|
302
333
|
{
|
|
303
334
|
"id": "public-surface:execution/files",
|
|
304
|
-
"version": "0.
|
|
335
|
+
"version": "0.6.0",
|
|
305
336
|
"kind": "execution",
|
|
306
337
|
"entryPoint": "src/index.ts",
|
|
307
338
|
"exports": [
|
|
@@ -310,7 +341,7 @@
|
|
|
310
341
|
},
|
|
311
342
|
{
|
|
312
343
|
"id": "public-surface:execution/machine",
|
|
313
|
-
"version": "0.
|
|
344
|
+
"version": "0.6.0",
|
|
314
345
|
"kind": "execution",
|
|
315
346
|
"entryPoint": "src/index.ts",
|
|
316
347
|
"exports": [
|
|
@@ -324,7 +355,7 @@
|
|
|
324
355
|
},
|
|
325
356
|
{
|
|
326
357
|
"id": "public-surface:execution/metrics",
|
|
327
|
-
"version": "0.
|
|
358
|
+
"version": "0.6.0",
|
|
328
359
|
"kind": "execution",
|
|
329
360
|
"entryPoint": "src/index.ts",
|
|
330
361
|
"exports": [
|
|
@@ -338,7 +369,7 @@
|
|
|
338
369
|
},
|
|
339
370
|
{
|
|
340
371
|
"id": "public-surface:execution/runtime",
|
|
341
|
-
"version": "0.
|
|
372
|
+
"version": "0.6.0",
|
|
342
373
|
"kind": "execution",
|
|
343
374
|
"entryPoint": "src/index.ts",
|
|
344
375
|
"exports": [
|
|
@@ -351,7 +382,7 @@
|
|
|
351
382
|
},
|
|
352
383
|
{
|
|
353
384
|
"id": "public-surface:execution/verification",
|
|
354
|
-
"version": "0.
|
|
385
|
+
"version": "0.6.0",
|
|
355
386
|
"kind": "execution",
|
|
356
387
|
"entryPoint": "src/index.ts",
|
|
357
388
|
"exports": [
|
|
@@ -368,7 +399,7 @@
|
|
|
368
399
|
},
|
|
369
400
|
{
|
|
370
401
|
"id": "public-surface:kernel/adapter-contract",
|
|
371
|
-
"version": "0.
|
|
402
|
+
"version": "0.6.0",
|
|
372
403
|
"kind": "kernel",
|
|
373
404
|
"entryPoint": "src/index.ts",
|
|
374
405
|
"exports": [
|
|
@@ -382,7 +413,7 @@
|
|
|
382
413
|
},
|
|
383
414
|
{
|
|
384
415
|
"id": "public-surface:kernel/artifacts",
|
|
385
|
-
"version": "0.
|
|
416
|
+
"version": "0.6.0",
|
|
386
417
|
"kind": "kernel",
|
|
387
418
|
"entryPoint": "src/index.ts",
|
|
388
419
|
"exports": [
|
|
@@ -407,7 +438,7 @@
|
|
|
407
438
|
},
|
|
408
439
|
{
|
|
409
440
|
"id": "public-surface:kernel/block",
|
|
410
|
-
"version": "0.
|
|
441
|
+
"version": "0.6.0",
|
|
411
442
|
"kind": "kernel",
|
|
412
443
|
"entryPoint": "src/index.ts",
|
|
413
444
|
"exports": [
|
|
@@ -421,7 +452,7 @@
|
|
|
421
452
|
},
|
|
422
453
|
{
|
|
423
454
|
"id": "public-surface:kernel/cache",
|
|
424
|
-
"version": "0.
|
|
455
|
+
"version": "0.6.0",
|
|
425
456
|
"kind": "kernel",
|
|
426
457
|
"entryPoint": "src/index.ts",
|
|
427
458
|
"exports": [
|
|
@@ -435,7 +466,7 @@
|
|
|
435
466
|
},
|
|
436
467
|
{
|
|
437
468
|
"id": "public-surface:kernel/capabilities",
|
|
438
|
-
"version": "0.
|
|
469
|
+
"version": "0.6.0",
|
|
439
470
|
"kind": "kernel",
|
|
440
471
|
"entryPoint": "src/index.ts",
|
|
441
472
|
"exports": [
|
|
@@ -452,7 +483,7 @@
|
|
|
452
483
|
},
|
|
453
484
|
{
|
|
454
485
|
"id": "public-surface:kernel/compatibility",
|
|
455
|
-
"version": "0.
|
|
486
|
+
"version": "0.6.0",
|
|
456
487
|
"kind": "kernel",
|
|
457
488
|
"entryPoint": "src/index.ts",
|
|
458
489
|
"exports": [
|
|
@@ -471,7 +502,7 @@
|
|
|
471
502
|
},
|
|
472
503
|
{
|
|
473
504
|
"id": "public-surface:kernel/constants",
|
|
474
|
-
"version": "0.
|
|
505
|
+
"version": "0.6.0",
|
|
475
506
|
"kind": "kernel",
|
|
476
507
|
"entryPoint": "src/index.ts",
|
|
477
508
|
"exports": [
|
|
@@ -481,7 +512,7 @@
|
|
|
481
512
|
},
|
|
482
513
|
{
|
|
483
514
|
"id": "public-surface:kernel/cycle",
|
|
484
|
-
"version": "0.
|
|
515
|
+
"version": "0.6.0",
|
|
485
516
|
"kind": "kernel",
|
|
486
517
|
"entryPoint": "src/index.ts",
|
|
487
518
|
"exports": [
|
|
@@ -492,7 +523,7 @@
|
|
|
492
523
|
},
|
|
493
524
|
{
|
|
494
525
|
"id": "public-surface:kernel/discovery",
|
|
495
|
-
"version": "0.
|
|
526
|
+
"version": "0.6.0",
|
|
496
527
|
"kind": "kernel",
|
|
497
528
|
"entryPoint": "src/index.ts",
|
|
498
529
|
"exports": [
|
|
@@ -503,7 +534,7 @@
|
|
|
503
534
|
},
|
|
504
535
|
{
|
|
505
536
|
"id": "public-surface:kernel/error-policy",
|
|
506
|
-
"version": "0.
|
|
537
|
+
"version": "0.6.0",
|
|
507
538
|
"kind": "kernel",
|
|
508
539
|
"entryPoint": "src/index.ts",
|
|
509
540
|
"exports": [
|
|
@@ -516,7 +547,7 @@
|
|
|
516
547
|
},
|
|
517
548
|
{
|
|
518
549
|
"id": "public-surface:kernel/errors",
|
|
519
|
-
"version": "0.
|
|
550
|
+
"version": "0.6.0",
|
|
520
551
|
"kind": "kernel",
|
|
521
552
|
"entryPoint": "src/index.ts",
|
|
522
553
|
"exports": [
|
|
@@ -526,7 +557,7 @@
|
|
|
526
557
|
},
|
|
527
558
|
{
|
|
528
559
|
"id": "public-surface:kernel/eval",
|
|
529
|
-
"version": "0.
|
|
560
|
+
"version": "0.6.0",
|
|
530
561
|
"kind": "kernel",
|
|
531
562
|
"entryPoint": "src/index.ts",
|
|
532
563
|
"exports": [
|
|
@@ -554,7 +585,7 @@
|
|
|
554
585
|
},
|
|
555
586
|
{
|
|
556
587
|
"id": "public-surface:kernel/events",
|
|
557
|
-
"version": "0.
|
|
588
|
+
"version": "0.6.0",
|
|
558
589
|
"kind": "kernel",
|
|
559
590
|
"entryPoint": "src/index.ts",
|
|
560
591
|
"exports": [
|
|
@@ -575,7 +606,7 @@
|
|
|
575
606
|
},
|
|
576
607
|
{
|
|
577
608
|
"id": "public-surface:kernel/experiment",
|
|
578
|
-
"version": "0.
|
|
609
|
+
"version": "0.6.0",
|
|
579
610
|
"kind": "kernel",
|
|
580
611
|
"entryPoint": "src/index.ts",
|
|
581
612
|
"exports": [
|
|
@@ -585,7 +616,7 @@
|
|
|
585
616
|
},
|
|
586
617
|
{
|
|
587
618
|
"id": "public-surface:kernel/learning",
|
|
588
|
-
"version": "0.
|
|
619
|
+
"version": "0.6.0",
|
|
589
620
|
"kind": "kernel",
|
|
590
621
|
"entryPoint": "src/index.ts",
|
|
591
622
|
"exports": [
|
|
@@ -598,7 +629,7 @@
|
|
|
598
629
|
},
|
|
599
630
|
{
|
|
600
631
|
"id": "public-surface:kernel/memory",
|
|
601
|
-
"version": "0.
|
|
632
|
+
"version": "0.6.0",
|
|
602
633
|
"kind": "kernel",
|
|
603
634
|
"entryPoint": "src/index.ts",
|
|
604
635
|
"exports": [
|
|
@@ -615,7 +646,7 @@
|
|
|
615
646
|
},
|
|
616
647
|
{
|
|
617
648
|
"id": "public-surface:kernel/model-policy",
|
|
618
|
-
"version": "0.
|
|
649
|
+
"version": "0.6.0",
|
|
619
650
|
"kind": "kernel",
|
|
620
651
|
"entryPoint": "src/index.ts",
|
|
621
652
|
"exports": [
|
|
@@ -629,7 +660,7 @@
|
|
|
629
660
|
},
|
|
630
661
|
{
|
|
631
662
|
"id": "public-surface:kernel/optimization",
|
|
632
|
-
"version": "0.
|
|
663
|
+
"version": "0.6.0",
|
|
633
664
|
"kind": "kernel",
|
|
634
665
|
"entryPoint": "src/index.ts",
|
|
635
666
|
"exports": [
|
|
@@ -645,7 +676,7 @@
|
|
|
645
676
|
},
|
|
646
677
|
{
|
|
647
678
|
"id": "public-surface:kernel/phase-executor",
|
|
648
|
-
"version": "0.
|
|
679
|
+
"version": "0.6.0",
|
|
649
680
|
"kind": "kernel",
|
|
650
681
|
"entryPoint": "src/index.ts",
|
|
651
682
|
"exports": [
|
|
@@ -683,7 +714,7 @@
|
|
|
683
714
|
},
|
|
684
715
|
{
|
|
685
716
|
"id": "public-surface:kernel/pilot",
|
|
686
|
-
"version": "0.
|
|
717
|
+
"version": "0.6.0",
|
|
687
718
|
"kind": "kernel",
|
|
688
719
|
"entryPoint": "src/index.ts",
|
|
689
720
|
"exports": [
|
|
@@ -693,7 +724,7 @@
|
|
|
693
724
|
},
|
|
694
725
|
{
|
|
695
726
|
"id": "public-surface:kernel/plugins",
|
|
696
|
-
"version": "0.
|
|
727
|
+
"version": "0.6.0",
|
|
697
728
|
"kind": "kernel",
|
|
698
729
|
"entryPoint": "src/index.ts",
|
|
699
730
|
"exports": [
|
|
@@ -705,7 +736,7 @@
|
|
|
705
736
|
},
|
|
706
737
|
{
|
|
707
738
|
"id": "public-surface:kernel/policy",
|
|
708
|
-
"version": "0.
|
|
739
|
+
"version": "0.6.0",
|
|
709
740
|
"kind": "kernel",
|
|
710
741
|
"entryPoint": "src/index.ts",
|
|
711
742
|
"exports": [
|
|
@@ -715,7 +746,7 @@
|
|
|
715
746
|
},
|
|
716
747
|
{
|
|
717
748
|
"id": "public-surface:kernel/preflight",
|
|
718
|
-
"version": "0.
|
|
749
|
+
"version": "0.6.0",
|
|
719
750
|
"kind": "kernel",
|
|
720
751
|
"entryPoint": "src/index.ts",
|
|
721
752
|
"exports": [
|
|
@@ -727,7 +758,7 @@
|
|
|
727
758
|
},
|
|
728
759
|
{
|
|
729
760
|
"id": "public-surface:kernel/quality",
|
|
730
|
-
"version": "0.
|
|
761
|
+
"version": "0.6.0",
|
|
731
762
|
"kind": "kernel",
|
|
732
763
|
"entryPoint": "src/index.ts",
|
|
733
764
|
"exports": [
|
|
@@ -749,7 +780,7 @@
|
|
|
749
780
|
},
|
|
750
781
|
{
|
|
751
782
|
"id": "public-surface:kernel/resilience",
|
|
752
|
-
"version": "0.
|
|
783
|
+
"version": "0.6.0",
|
|
753
784
|
"kind": "kernel",
|
|
754
785
|
"entryPoint": "src/index.ts",
|
|
755
786
|
"exports": [
|
|
@@ -765,7 +796,7 @@
|
|
|
765
796
|
},
|
|
766
797
|
{
|
|
767
798
|
"id": "public-surface:kernel/state-machine",
|
|
768
|
-
"version": "0.
|
|
799
|
+
"version": "0.6.0",
|
|
769
800
|
"kind": "kernel",
|
|
770
801
|
"entryPoint": "src/index.ts",
|
|
771
802
|
"exports": [
|
|
@@ -776,7 +807,7 @@
|
|
|
776
807
|
},
|
|
777
808
|
{
|
|
778
809
|
"id": "public-surface:kernel/status",
|
|
779
|
-
"version": "0.
|
|
810
|
+
"version": "0.6.0",
|
|
780
811
|
"kind": "kernel",
|
|
781
812
|
"entryPoint": "src/index.ts",
|
|
782
813
|
"exports": [
|
|
@@ -788,7 +819,7 @@
|
|
|
788
819
|
},
|
|
789
820
|
{
|
|
790
821
|
"id": "public-surface:kernel/types",
|
|
791
|
-
"version": "0.
|
|
822
|
+
"version": "0.6.0",
|
|
792
823
|
"kind": "kernel",
|
|
793
824
|
"entryPoint": "src/index.ts",
|
|
794
825
|
"exports": [
|
|
@@ -797,7 +828,7 @@
|
|
|
797
828
|
},
|
|
798
829
|
{
|
|
799
830
|
"id": "public-surface:kernel/wip",
|
|
800
|
-
"version": "0.
|
|
831
|
+
"version": "0.6.0",
|
|
801
832
|
"kind": "kernel",
|
|
802
833
|
"entryPoint": "src/index.ts",
|
|
803
834
|
"exports": [
|
|
@@ -808,7 +839,7 @@
|
|
|
808
839
|
},
|
|
809
840
|
{
|
|
810
841
|
"id": "public-surface:kernel/workflow",
|
|
811
|
-
"version": "0.
|
|
842
|
+
"version": "0.6.0",
|
|
812
843
|
"kind": "kernel",
|
|
813
844
|
"entryPoint": "src/index.ts",
|
|
814
845
|
"exports": [
|
|
@@ -817,9 +848,26 @@
|
|
|
817
848
|
"runWorkflow"
|
|
818
849
|
]
|
|
819
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
|
+
},
|
|
820
868
|
{
|
|
821
869
|
"id": "public-surface:loop/brief",
|
|
822
|
-
"version": "0.
|
|
870
|
+
"version": "0.6.0",
|
|
823
871
|
"kind": "composition",
|
|
824
872
|
"entryPoint": "src/index.ts",
|
|
825
873
|
"exports": [
|
|
@@ -829,7 +877,7 @@
|
|
|
829
877
|
},
|
|
830
878
|
{
|
|
831
879
|
"id": "public-surface:loop/config",
|
|
832
|
-
"version": "0.
|
|
880
|
+
"version": "0.6.0",
|
|
833
881
|
"kind": "composition",
|
|
834
882
|
"entryPoint": "src/index.ts",
|
|
835
883
|
"exports": [
|
|
@@ -855,7 +903,7 @@
|
|
|
855
903
|
},
|
|
856
904
|
{
|
|
857
905
|
"id": "public-surface:loop/contract",
|
|
858
|
-
"version": "0.
|
|
906
|
+
"version": "0.6.0",
|
|
859
907
|
"kind": "composition",
|
|
860
908
|
"entryPoint": "src/index.ts",
|
|
861
909
|
"exports": [
|
|
@@ -884,7 +932,7 @@
|
|
|
884
932
|
},
|
|
885
933
|
{
|
|
886
934
|
"id": "public-surface:loop/cooldown",
|
|
887
|
-
"version": "0.
|
|
935
|
+
"version": "0.6.0",
|
|
888
936
|
"kind": "composition",
|
|
889
937
|
"entryPoint": "src/index.ts",
|
|
890
938
|
"exports": [
|
|
@@ -897,9 +945,22 @@
|
|
|
897
945
|
"readCooldowns"
|
|
898
946
|
]
|
|
899
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
|
+
},
|
|
900
961
|
{
|
|
901
962
|
"id": "public-surface:loop/deliver",
|
|
902
|
-
"version": "0.
|
|
963
|
+
"version": "0.6.0",
|
|
903
964
|
"kind": "composition",
|
|
904
965
|
"entryPoint": "src/index.ts",
|
|
905
966
|
"exports": [
|
|
@@ -917,7 +978,7 @@
|
|
|
917
978
|
},
|
|
918
979
|
{
|
|
919
980
|
"id": "public-surface:loop/doctor",
|
|
920
|
-
"version": "0.
|
|
981
|
+
"version": "0.6.0",
|
|
921
982
|
"kind": "composition",
|
|
922
983
|
"entryPoint": "src/index.ts",
|
|
923
984
|
"exports": [
|
|
@@ -932,7 +993,7 @@
|
|
|
932
993
|
},
|
|
933
994
|
{
|
|
934
995
|
"id": "public-surface:loop/guided-install",
|
|
935
|
-
"version": "0.
|
|
996
|
+
"version": "0.6.0",
|
|
936
997
|
"kind": "composition",
|
|
937
998
|
"entryPoint": "src/index.ts",
|
|
938
999
|
"exports": [
|
|
@@ -945,7 +1006,7 @@
|
|
|
945
1006
|
},
|
|
946
1007
|
{
|
|
947
1008
|
"id": "public-surface:loop/install",
|
|
948
|
-
"version": "0.
|
|
1009
|
+
"version": "0.6.0",
|
|
949
1010
|
"kind": "composition",
|
|
950
1011
|
"entryPoint": "src/index.ts",
|
|
951
1012
|
"exports": [
|
|
@@ -969,7 +1030,7 @@
|
|
|
969
1030
|
},
|
|
970
1031
|
{
|
|
971
1032
|
"id": "public-surface:loop/local-config",
|
|
972
|
-
"version": "0.
|
|
1033
|
+
"version": "0.6.0",
|
|
973
1034
|
"kind": "composition",
|
|
974
1035
|
"entryPoint": "src/index.ts",
|
|
975
1036
|
"exports": [
|
|
@@ -985,9 +1046,33 @@
|
|
|
985
1046
|
"writeLocalConfig"
|
|
986
1047
|
]
|
|
987
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
|
+
},
|
|
988
1073
|
{
|
|
989
1074
|
"id": "public-surface:loop/process",
|
|
990
|
-
"version": "0.
|
|
1075
|
+
"version": "0.6.0",
|
|
991
1076
|
"kind": "composition",
|
|
992
1077
|
"entryPoint": "src/index.ts",
|
|
993
1078
|
"exports": [
|
|
@@ -996,7 +1081,7 @@
|
|
|
996
1081
|
},
|
|
997
1082
|
{
|
|
998
1083
|
"id": "public-surface:loop/retro",
|
|
999
|
-
"version": "0.
|
|
1084
|
+
"version": "0.6.0",
|
|
1000
1085
|
"kind": "composition",
|
|
1001
1086
|
"entryPoint": "src/index.ts",
|
|
1002
1087
|
"exports": [
|
|
@@ -1005,6 +1090,7 @@
|
|
|
1005
1090
|
"RetroInput",
|
|
1006
1091
|
"RetroIssueRow",
|
|
1007
1092
|
"RetroReport",
|
|
1093
|
+
"RetroStageReport",
|
|
1008
1094
|
"RetroSuggestion",
|
|
1009
1095
|
"RetroTarget",
|
|
1010
1096
|
"RetroWindow",
|
|
@@ -1014,12 +1100,13 @@
|
|
|
1014
1100
|
"parseSince",
|
|
1015
1101
|
"readLoopEvents",
|
|
1016
1102
|
"renderRetroMarkdown",
|
|
1017
|
-
"retroLearnings"
|
|
1103
|
+
"retroLearnings",
|
|
1104
|
+
"runRetroStage"
|
|
1018
1105
|
]
|
|
1019
1106
|
},
|
|
1020
1107
|
{
|
|
1021
1108
|
"id": "public-surface:loop/routing",
|
|
1022
|
-
"version": "0.
|
|
1109
|
+
"version": "0.6.0",
|
|
1023
1110
|
"kind": "composition",
|
|
1024
1111
|
"entryPoint": "src/index.ts",
|
|
1025
1112
|
"exports": [
|
|
@@ -1033,7 +1120,7 @@
|
|
|
1033
1120
|
},
|
|
1034
1121
|
{
|
|
1035
1122
|
"id": "public-surface:loop/slots",
|
|
1036
|
-
"version": "0.
|
|
1123
|
+
"version": "0.6.0",
|
|
1037
1124
|
"kind": "composition",
|
|
1038
1125
|
"entryPoint": "src/index.ts",
|
|
1039
1126
|
"exports": [
|
|
@@ -1048,7 +1135,7 @@
|
|
|
1048
1135
|
},
|
|
1049
1136
|
{
|
|
1050
1137
|
"id": "public-surface:loop/tick",
|
|
1051
|
-
"version": "0.
|
|
1138
|
+
"version": "0.6.0",
|
|
1052
1139
|
"kind": "composition",
|
|
1053
1140
|
"entryPoint": "src/index.ts",
|
|
1054
1141
|
"exports": [
|
|
@@ -1072,14 +1159,32 @@
|
|
|
1072
1159
|
},
|
|
1073
1160
|
{
|
|
1074
1161
|
"id": "public-surface:loop/ui/terminal",
|
|
1075
|
-
"version": "0.
|
|
1162
|
+
"version": "0.6.0",
|
|
1076
1163
|
"kind": "composition",
|
|
1077
1164
|
"entryPoint": "src/index.ts",
|
|
1078
1165
|
"exports": [
|
|
1079
1166
|
"RichIO",
|
|
1080
1167
|
"createRichIO"
|
|
1081
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
|
+
]
|
|
1082
1187
|
}
|
|
1083
1188
|
],
|
|
1084
|
-
"digest": "
|
|
1189
|
+
"digest": "9fe2e47222eccc6a31ffdd562631eef2bb9b125ced5b8ec99327610e366e32cf"
|
|
1085
1190
|
}
|