agentic-proofkit 0.1.91

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.
Files changed (73) hide show
  1. package/ADOPTION.md +464 -0
  2. package/LICENSE +21 -0
  3. package/NON_CLAIMS.md +197 -0
  4. package/README.md +265 -0
  5. package/dist/agentic-proofkit +35 -0
  6. package/dist/platform/darwin-arm64/agentic-proofkit +0 -0
  7. package/dist/platform/darwin-x64/agentic-proofkit +0 -0
  8. package/dist/platform/linux-arm64/agentic-proofkit +0 -0
  9. package/dist/platform/linux-x64/agentic-proofkit +0 -0
  10. package/docs/adoption-checklist-report-design.md +138 -0
  11. package/docs/adoption-workflow-agent-envelope-design.md +67 -0
  12. package/docs/adoption-workflow-authority-routes-design.md +76 -0
  13. package/docs/adoption-workflow-contract-envelope-design.md +87 -0
  14. package/docs/adoption-workflow-plan-design.md +97 -0
  15. package/docs/agent-guidance-envelope-design.md +550 -0
  16. package/docs/binding-partition-admission-design.md +127 -0
  17. package/docs/bootstrap-agent-envelope-design.md +97 -0
  18. package/docs/bootstrap-materialization-manifest-design.md +100 -0
  19. package/docs/branch-authority-report-design.md +121 -0
  20. package/docs/changed-path-set-agent-envelope-design.md +70 -0
  21. package/docs/completion-criteria-report-design.md +132 -0
  22. package/docs/custom-rule-boundary-design.md +56 -0
  23. package/docs/deployment-evidence-admission-design.md +80 -0
  24. package/docs/document-lifecycle-boundary-design.md +62 -0
  25. package/docs/json-report-cli-adapter-design.md +83 -0
  26. package/docs/migration-parity-admission-design.md +90 -0
  27. package/docs/migration-plan-design.md +73 -0
  28. package/docs/obligation-decision-agent-envelope-design.md +105 -0
  29. package/docs/obligation-decision-state-design.md +100 -0
  30. package/docs/package-runtime-dependency-admission-design.md +80 -0
  31. package/docs/producer-policy-self-proof-design.md +142 -0
  32. package/docs/project-structure-agent-envelope-design.md +121 -0
  33. package/docs/project-structure-scaffold-design.md +89 -0
  34. package/docs/proof-obligation-algebra-design.md +108 -0
  35. package/docs/proof-receipt-admission-design.md +108 -0
  36. package/docs/proofkit-contract-map.md +55 -0
  37. package/docs/receipt-currentness-scope-admission-design.md +103 -0
  38. package/docs/receipt-producer-admission-design.md +106 -0
  39. package/docs/receipt-trust-class-admission-design.md +113 -0
  40. package/docs/rendered-artifact-freshness-design.md +55 -0
  41. package/docs/requirement-browser-view-design.md +229 -0
  42. package/docs/requirement-proof-resolver-projection-design.md +97 -0
  43. package/docs/requirement-proof-source-set-design.md +72 -0
  44. package/docs/requirement-proof-view-design.md +138 -0
  45. package/docs/requirement-source-admission-design.md +66 -0
  46. package/docs/requirement-source-transition-design.md +66 -0
  47. package/docs/requirement-source-view-design.md +51 -0
  48. package/docs/scaffold-profile-plan-design.md +72 -0
  49. package/docs/secret-shaped-json-scan-design.md +60 -0
  50. package/docs/selective-evidence-obligation-decision-design.md +139 -0
  51. package/docs/selective-evidence-producer-admission-design.md +106 -0
  52. package/docs/selective-evidence-receipt-trust-class-design.md +100 -0
  53. package/docs/selective-gate-evidence-agent-envelope-design.md +100 -0
  54. package/docs/selective-gate-plan-agent-envelope-design.md +95 -0
  55. package/docs/selective-planner-edge-coverage-design.md +89 -0
  56. package/docs/spec-overview-claim-boundary-design.md +50 -0
  57. package/docs/spec-proof-bundle-admission-design.md +105 -0
  58. package/docs/specs/proofkit-consumer-infra-retirement/overview.md +44 -0
  59. package/docs/specs/proofkit-consumer-infra-retirement/requirements.v1.json +175 -0
  60. package/docs/specs/proofkit-package-boundary/overview.md +32 -0
  61. package/docs/specs/proofkit-package-boundary/requirements.v1.json +121 -0
  62. package/docs/specs/proofkit-receipt-authority/overview.md +35 -0
  63. package/docs/specs/proofkit-receipt-authority/requirements.v1.json +121 -0
  64. package/docs/specs/proofkit-spec-proof-core/overview.md +36 -0
  65. package/docs/specs/proofkit-spec-proof-core/requirements.v1.json +148 -0
  66. package/docs/witness-scheduler-plan-design.md +57 -0
  67. package/docs/workspace-planning-agent-envelope-design.md +101 -0
  68. package/docs/workspace-registry-admission-design.md +57 -0
  69. package/package.json +54 -0
  70. package/proofkit/cli-contract.v1.json +808 -0
  71. package/proofkit/receipt-producer-policy.json +48 -0
  72. package/proofkit/requirement-bindings.json +520 -0
  73. package/proofkit/witness-plan.json +649 -0
@@ -0,0 +1,808 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "contractId": "proofkit.cli-contract.v1",
4
+ "packageName": "agentic-proofkit",
5
+ "commands": [
6
+ {
7
+ "command": "adoption-checklist",
8
+ "input": "required",
9
+ "stdin": true,
10
+ "inputPointer": true,
11
+ "outputModes": [
12
+ "json"
13
+ ],
14
+ "allowedFlags": [
15
+ "--input",
16
+ "--input-pointer"
17
+ ]
18
+ },
19
+ {
20
+ "command": "adoption-workflow-plan",
21
+ "input": "required",
22
+ "stdin": true,
23
+ "inputPointer": true,
24
+ "contractEnvelope": true,
25
+ "agentEnvelope": true,
26
+ "outputModes": [
27
+ "json"
28
+ ],
29
+ "allowedFlags": [
30
+ "--agent-envelope",
31
+ "--contract-envelope",
32
+ "--input",
33
+ "--input-pointer"
34
+ ]
35
+ },
36
+ {
37
+ "command": "binding-partition",
38
+ "input": "required",
39
+ "stdin": true,
40
+ "inputPointer": true,
41
+ "outputModes": [
42
+ "json"
43
+ ],
44
+ "allowedFlags": [
45
+ "--input",
46
+ "--input-pointer"
47
+ ]
48
+ },
49
+ {
50
+ "command": "branch-authority",
51
+ "input": "required",
52
+ "stdin": true,
53
+ "inputPointer": true,
54
+ "outputModes": [
55
+ "json"
56
+ ],
57
+ "allowedFlags": [
58
+ "--input",
59
+ "--input-pointer"
60
+ ]
61
+ },
62
+ {
63
+ "command": "changed-path-set",
64
+ "input": "required",
65
+ "stdin": true,
66
+ "inputPointer": true,
67
+ "agentEnvelope": true,
68
+ "outputModes": [
69
+ "json"
70
+ ],
71
+ "allowedFlags": [
72
+ "--agent-envelope",
73
+ "--input",
74
+ "--input-pointer"
75
+ ]
76
+ },
77
+ {
78
+ "command": "completion-criteria",
79
+ "input": "required",
80
+ "stdin": true,
81
+ "inputPointer": true,
82
+ "outputModes": [
83
+ "json"
84
+ ],
85
+ "allowedFlags": [
86
+ "--input",
87
+ "--input-pointer"
88
+ ]
89
+ },
90
+ {
91
+ "command": "conformance-profile",
92
+ "input": "required",
93
+ "stdin": true,
94
+ "inputPointer": true,
95
+ "outputModes": [
96
+ "json",
97
+ "markdown"
98
+ ],
99
+ "allowedFlags": [
100
+ "--format",
101
+ "--input",
102
+ "--input-pointer",
103
+ "--list",
104
+ "--profile",
105
+ "--verify"
106
+ ]
107
+ },
108
+ {
109
+ "command": "custom-rule-boundary",
110
+ "input": "required",
111
+ "stdin": true,
112
+ "inputPointer": true,
113
+ "outputModes": [
114
+ "json"
115
+ ],
116
+ "allowedFlags": [
117
+ "--input",
118
+ "--input-pointer"
119
+ ]
120
+ },
121
+ {
122
+ "command": "deployment-evidence-admission",
123
+ "input": "required",
124
+ "stdin": true,
125
+ "inputPointer": true,
126
+ "outputModes": [
127
+ "json"
128
+ ],
129
+ "allowedFlags": [
130
+ "--input",
131
+ "--input-pointer"
132
+ ]
133
+ },
134
+ {
135
+ "command": "document-lifecycle-boundary",
136
+ "input": "required",
137
+ "stdin": true,
138
+ "inputPointer": true,
139
+ "outputModes": [
140
+ "json"
141
+ ],
142
+ "allowedFlags": [
143
+ "--input",
144
+ "--input-pointer"
145
+ ]
146
+ },
147
+ {
148
+ "command": "evidence-graph",
149
+ "input": "required",
150
+ "stdin": true,
151
+ "inputPointer": true,
152
+ "outputModes": [
153
+ "json"
154
+ ],
155
+ "allowedFlags": [
156
+ "--input",
157
+ "--input-pointer"
158
+ ]
159
+ },
160
+ {
161
+ "command": "external-consumer",
162
+ "input": "required",
163
+ "stdin": true,
164
+ "inputPointer": true,
165
+ "outputModes": [
166
+ "json"
167
+ ],
168
+ "allowedFlags": [
169
+ "--input",
170
+ "--input-pointer"
171
+ ]
172
+ },
173
+ {
174
+ "command": "gradual-adoption",
175
+ "input": "required",
176
+ "stdin": true,
177
+ "inputPointer": true,
178
+ "contractEnvelope": true,
179
+ "outputModes": [
180
+ "json"
181
+ ],
182
+ "allowedFlags": [
183
+ "--contract-envelope",
184
+ "--input",
185
+ "--input-pointer"
186
+ ]
187
+ },
188
+ {
189
+ "command": "gradual-adoption-bootstrap",
190
+ "input": "required",
191
+ "stdin": true,
192
+ "inputPointer": true,
193
+ "contractEnvelope": true,
194
+ "agentEnvelope": true,
195
+ "outputModes": [
196
+ "json"
197
+ ],
198
+ "allowedFlags": [
199
+ "--agent-envelope",
200
+ "--contract-envelope",
201
+ "--input",
202
+ "--input-pointer",
203
+ "--materialization-manifest"
204
+ ]
205
+ },
206
+ {
207
+ "command": "gradual-adoption-guidance",
208
+ "input": "required",
209
+ "stdin": true,
210
+ "inputPointer": true,
211
+ "contractEnvelope": true,
212
+ "agentEnvelope": true,
213
+ "outputModes": [
214
+ "json"
215
+ ],
216
+ "allowedFlags": [
217
+ "--agent-envelope",
218
+ "--checked-scope",
219
+ "--contract-envelope",
220
+ "--guidance-mode",
221
+ "--input",
222
+ "--input-pointer",
223
+ "--touched-rule-id"
224
+ ]
225
+ },
226
+ {
227
+ "command": "help",
228
+ "input": "none",
229
+ "stdin": false,
230
+ "inputPointer": false,
231
+ "outputModes": [
232
+ "text"
233
+ ],
234
+ "allowedFlags": [
235
+ "--help",
236
+ "-h"
237
+ ]
238
+ },
239
+ {
240
+ "command": "impact",
241
+ "input": "required",
242
+ "stdin": true,
243
+ "inputPointer": true,
244
+ "outputModes": [
245
+ "json"
246
+ ],
247
+ "allowedFlags": [
248
+ "--input",
249
+ "--input-pointer"
250
+ ]
251
+ },
252
+ {
253
+ "command": "migration-parity-admission",
254
+ "input": "required",
255
+ "stdin": true,
256
+ "inputPointer": true,
257
+ "outputModes": [
258
+ "json"
259
+ ],
260
+ "allowedFlags": [
261
+ "--input",
262
+ "--input-pointer"
263
+ ]
264
+ },
265
+ {
266
+ "command": "migration-plan",
267
+ "input": "required",
268
+ "stdin": true,
269
+ "inputPointer": true,
270
+ "outputModes": [
271
+ "json"
272
+ ],
273
+ "allowedFlags": [
274
+ "--input",
275
+ "--input-pointer"
276
+ ]
277
+ },
278
+ {
279
+ "command": "obligation-decision",
280
+ "input": "required",
281
+ "stdin": true,
282
+ "inputPointer": true,
283
+ "agentEnvelope": true,
284
+ "outputModes": [
285
+ "json"
286
+ ],
287
+ "allowedFlags": [
288
+ "--agent-envelope",
289
+ "--input",
290
+ "--input-pointer"
291
+ ]
292
+ },
293
+ {
294
+ "command": "package-runtime-dependency-admission",
295
+ "input": "required",
296
+ "stdin": true,
297
+ "inputPointer": true,
298
+ "outputModes": [
299
+ "json"
300
+ ],
301
+ "allowedFlags": [
302
+ "--input",
303
+ "--input-pointer"
304
+ ]
305
+ },
306
+ {
307
+ "command": "pilot-admission",
308
+ "input": "required",
309
+ "stdin": true,
310
+ "inputPointer": true,
311
+ "contractEnvelope": true,
312
+ "outputModes": [
313
+ "json"
314
+ ],
315
+ "allowedFlags": [
316
+ "--contract-envelope",
317
+ "--input",
318
+ "--input-pointer",
319
+ "--pilot",
320
+ "--stack-diverse"
321
+ ]
322
+ },
323
+ {
324
+ "command": "producer-policy-self-proof",
325
+ "input": "required",
326
+ "stdin": true,
327
+ "inputPointer": true,
328
+ "outputModes": [
329
+ "json"
330
+ ],
331
+ "allowedFlags": [
332
+ "--input",
333
+ "--input-pointer"
334
+ ]
335
+ },
336
+ {
337
+ "command": "proof-obligation-algebra",
338
+ "input": "required",
339
+ "stdin": true,
340
+ "inputPointer": true,
341
+ "outputModes": [
342
+ "json"
343
+ ],
344
+ "allowedFlags": [
345
+ "--input",
346
+ "--input-pointer"
347
+ ]
348
+ },
349
+ {
350
+ "command": "proof-receipt-admission",
351
+ "input": "required",
352
+ "stdin": true,
353
+ "inputPointer": true,
354
+ "outputModes": [
355
+ "json"
356
+ ],
357
+ "allowedFlags": [
358
+ "--input",
359
+ "--input-pointer"
360
+ ]
361
+ },
362
+ {
363
+ "command": "proof-slice",
364
+ "input": "required",
365
+ "stdin": true,
366
+ "inputPointer": true,
367
+ "outputModes": [
368
+ "json"
369
+ ],
370
+ "allowedFlags": [
371
+ "--input",
372
+ "--input-pointer"
373
+ ]
374
+ },
375
+ {
376
+ "command": "readiness-closeout",
377
+ "input": "required",
378
+ "stdin": true,
379
+ "inputPointer": true,
380
+ "outputModes": [
381
+ "json"
382
+ ],
383
+ "allowedFlags": [
384
+ "--input",
385
+ "--input-pointer"
386
+ ]
387
+ },
388
+ {
389
+ "command": "receipt-currentness-scope",
390
+ "input": "required",
391
+ "stdin": true,
392
+ "inputPointer": true,
393
+ "outputModes": [
394
+ "json"
395
+ ],
396
+ "allowedFlags": [
397
+ "--input",
398
+ "--input-pointer"
399
+ ]
400
+ },
401
+ {
402
+ "command": "receipt-producer-admission",
403
+ "input": "required",
404
+ "stdin": true,
405
+ "inputPointer": true,
406
+ "outputModes": [
407
+ "json"
408
+ ],
409
+ "allowedFlags": [
410
+ "--input",
411
+ "--input-pointer"
412
+ ]
413
+ },
414
+ {
415
+ "command": "receipt-trust-class",
416
+ "input": "required",
417
+ "stdin": true,
418
+ "inputPointer": true,
419
+ "outputModes": [
420
+ "json"
421
+ ],
422
+ "allowedFlags": [
423
+ "--input",
424
+ "--input-pointer"
425
+ ]
426
+ },
427
+ {
428
+ "command": "registry-consumer",
429
+ "input": "required",
430
+ "stdin": true,
431
+ "inputPointer": true,
432
+ "outputModes": [
433
+ "json"
434
+ ],
435
+ "allowedFlags": [
436
+ "--input",
437
+ "--input-pointer"
438
+ ]
439
+ },
440
+ {
441
+ "command": "release-authority",
442
+ "input": "required",
443
+ "stdin": true,
444
+ "inputPointer": true,
445
+ "outputModes": [
446
+ "json"
447
+ ],
448
+ "allowedFlags": [
449
+ "--input",
450
+ "--input-pointer"
451
+ ]
452
+ },
453
+ {
454
+ "command": "rendered-artifact-freshness",
455
+ "input": "required",
456
+ "stdin": true,
457
+ "inputPointer": true,
458
+ "outputModes": [
459
+ "json"
460
+ ],
461
+ "allowedFlags": [
462
+ "--input",
463
+ "--input-pointer"
464
+ ]
465
+ },
466
+ {
467
+ "command": "repo-profile-admission",
468
+ "input": "required",
469
+ "stdin": true,
470
+ "inputPointer": true,
471
+ "outputModes": [
472
+ "json"
473
+ ],
474
+ "allowedFlags": [
475
+ "--input",
476
+ "--input-pointer"
477
+ ]
478
+ },
479
+ {
480
+ "command": "requirement-bindings",
481
+ "input": "required",
482
+ "stdin": true,
483
+ "inputPointer": true,
484
+ "outputModes": [
485
+ "json"
486
+ ],
487
+ "allowedFlags": [
488
+ "--input",
489
+ "--input-pointer"
490
+ ]
491
+ },
492
+ {
493
+ "command": "requirement-browser-server",
494
+ "input": "required",
495
+ "stdin": true,
496
+ "inputPointer": true,
497
+ "outputModes": [
498
+ "json",
499
+ "server"
500
+ ],
501
+ "allowedFlags": [
502
+ "--empty-local-environment-policy",
503
+ "--host",
504
+ "--input",
505
+ "--input-pointer",
506
+ "--local-environment-class",
507
+ "--open",
508
+ "--port",
509
+ "--scope",
510
+ "--serve",
511
+ "--view"
512
+ ]
513
+ },
514
+ {
515
+ "command": "requirement-proof-resolver",
516
+ "input": "required",
517
+ "stdin": true,
518
+ "inputPointer": true,
519
+ "outputModes": [
520
+ "json"
521
+ ],
522
+ "allowedFlags": [
523
+ "--empty-local-environment-policy",
524
+ "--input",
525
+ "--input-pointer",
526
+ "--local-environment-class"
527
+ ]
528
+ },
529
+ {
530
+ "command": "requirement-proof-source-set",
531
+ "input": "required",
532
+ "stdin": true,
533
+ "inputPointer": true,
534
+ "outputModes": [
535
+ "json"
536
+ ],
537
+ "allowedFlags": [
538
+ "--input",
539
+ "--input-pointer"
540
+ ]
541
+ },
542
+ {
543
+ "command": "requirement-proof-view",
544
+ "input": "required",
545
+ "stdin": true,
546
+ "inputPointer": true,
547
+ "outputModes": [
548
+ "html",
549
+ "json",
550
+ "markdown"
551
+ ],
552
+ "allowedFlags": [
553
+ "--empty-local-environment-policy",
554
+ "--format",
555
+ "--input",
556
+ "--input-pointer",
557
+ "--local-environment-class",
558
+ "--scope"
559
+ ]
560
+ },
561
+ {
562
+ "command": "requirement-source-admission",
563
+ "input": "required",
564
+ "stdin": true,
565
+ "inputPointer": true,
566
+ "outputModes": [
567
+ "json"
568
+ ],
569
+ "allowedFlags": [
570
+ "--input",
571
+ "--input-pointer"
572
+ ]
573
+ },
574
+ {
575
+ "command": "requirement-source-transition",
576
+ "input": "required",
577
+ "stdin": true,
578
+ "inputPointer": true,
579
+ "outputModes": [
580
+ "json"
581
+ ],
582
+ "allowedFlags": [
583
+ "--input",
584
+ "--input-pointer"
585
+ ]
586
+ },
587
+ {
588
+ "command": "requirement-source-view",
589
+ "input": "required",
590
+ "stdin": true,
591
+ "inputPointer": true,
592
+ "outputModes": [
593
+ "html",
594
+ "json",
595
+ "markdown"
596
+ ],
597
+ "allowedFlags": [
598
+ "--format",
599
+ "--input",
600
+ "--input-pointer"
601
+ ]
602
+ },
603
+ {
604
+ "command": "scaffold-profile-plan",
605
+ "input": "required",
606
+ "stdin": true,
607
+ "inputPointer": true,
608
+ "outputModes": [
609
+ "json"
610
+ ],
611
+ "allowedFlags": [
612
+ "--input",
613
+ "--input-pointer"
614
+ ]
615
+ },
616
+ {
617
+ "command": "scaffold-project-structure",
618
+ "input": "required",
619
+ "stdin": true,
620
+ "inputPointer": true,
621
+ "agentEnvelope": true,
622
+ "outputModes": [
623
+ "json"
624
+ ],
625
+ "allowedFlags": [
626
+ "--agent-envelope",
627
+ "--input",
628
+ "--input-pointer"
629
+ ]
630
+ },
631
+ {
632
+ "command": "selective-gate-evidence",
633
+ "input": "required",
634
+ "stdin": true,
635
+ "inputPointer": true,
636
+ "agentEnvelope": true,
637
+ "outputModes": [
638
+ "json"
639
+ ],
640
+ "allowedFlags": [
641
+ "--agent-envelope",
642
+ "--input",
643
+ "--input-pointer"
644
+ ]
645
+ },
646
+ {
647
+ "command": "selective-gate-obligation-decision-input",
648
+ "input": "required",
649
+ "stdin": true,
650
+ "inputPointer": true,
651
+ "outputModes": [
652
+ "json"
653
+ ],
654
+ "allowedFlags": [
655
+ "--input",
656
+ "--input-pointer"
657
+ ]
658
+ },
659
+ {
660
+ "command": "selective-gate-plan",
661
+ "input": "required",
662
+ "stdin": true,
663
+ "inputPointer": true,
664
+ "agentEnvelope": true,
665
+ "outputModes": [
666
+ "json"
667
+ ],
668
+ "allowedFlags": [
669
+ "--agent-envelope",
670
+ "--input",
671
+ "--input-pointer"
672
+ ]
673
+ },
674
+ {
675
+ "command": "self-check",
676
+ "input": "required",
677
+ "stdin": true,
678
+ "inputPointer": false,
679
+ "outputModes": [
680
+ "json"
681
+ ],
682
+ "allowedFlags": [
683
+ "--input"
684
+ ]
685
+ },
686
+ {
687
+ "command": "spec-overview-claims",
688
+ "input": "required",
689
+ "stdin": true,
690
+ "inputPointer": true,
691
+ "outputModes": [
692
+ "json"
693
+ ],
694
+ "allowedFlags": [
695
+ "--input",
696
+ "--input-pointer"
697
+ ]
698
+ },
699
+ {
700
+ "command": "spec-proof-bundle-admission",
701
+ "input": "required",
702
+ "stdin": true,
703
+ "inputPointer": true,
704
+ "outputModes": [
705
+ "json"
706
+ ],
707
+ "allowedFlags": [
708
+ "--input",
709
+ "--input-pointer"
710
+ ]
711
+ },
712
+ {
713
+ "command": "stack-preset",
714
+ "input": "none",
715
+ "stdin": false,
716
+ "inputPointer": false,
717
+ "outputModes": [
718
+ "json"
719
+ ],
720
+ "allowedFlags": [
721
+ "--preset"
722
+ ]
723
+ },
724
+ {
725
+ "command": "typescript-public-api-surfaces",
726
+ "input": "required",
727
+ "stdin": true,
728
+ "inputPointer": true,
729
+ "outputModes": [
730
+ "json"
731
+ ],
732
+ "allowedFlags": [
733
+ "--input",
734
+ "--input-pointer",
735
+ "--repo-root"
736
+ ]
737
+ },
738
+ {
739
+ "command": "witness-plan",
740
+ "input": "required",
741
+ "stdin": true,
742
+ "inputPointer": true,
743
+ "outputModes": [
744
+ "json"
745
+ ],
746
+ "allowedFlags": [
747
+ "--input",
748
+ "--input-pointer"
749
+ ]
750
+ },
751
+ {
752
+ "command": "witness-scheduler-plan",
753
+ "input": "required",
754
+ "stdin": true,
755
+ "inputPointer": true,
756
+ "outputModes": [
757
+ "json"
758
+ ],
759
+ "allowedFlags": [
760
+ "--input",
761
+ "--input-pointer"
762
+ ]
763
+ },
764
+ {
765
+ "command": "workspace-changed-package-plan",
766
+ "input": "required",
767
+ "stdin": true,
768
+ "inputPointer": true,
769
+ "agentEnvelope": true,
770
+ "outputModes": [
771
+ "json"
772
+ ],
773
+ "allowedFlags": [
774
+ "--agent-envelope",
775
+ "--input",
776
+ "--input-pointer"
777
+ ]
778
+ },
779
+ {
780
+ "command": "workspace-registry",
781
+ "input": "required",
782
+ "stdin": true,
783
+ "inputPointer": true,
784
+ "outputModes": [
785
+ "json"
786
+ ],
787
+ "allowedFlags": [
788
+ "--input",
789
+ "--input-pointer"
790
+ ]
791
+ },
792
+ {
793
+ "command": "workspace-shard-partition",
794
+ "input": "required",
795
+ "stdin": true,
796
+ "inputPointer": true,
797
+ "agentEnvelope": true,
798
+ "outputModes": [
799
+ "json"
800
+ ],
801
+ "allowedFlags": [
802
+ "--agent-envelope",
803
+ "--input",
804
+ "--input-pointer"
805
+ ]
806
+ }
807
+ ]
808
+ }