opencode-swarm 7.62.1 → 7.64.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.
Files changed (46) hide show
  1. package/.opencode/skills/swarm-pr-review/SKILL.md +124 -0
  2. package/README.md +57 -0
  3. package/dist/agents/architect.d.ts +1 -1
  4. package/dist/agents/explorer.d.ts +1 -1
  5. package/dist/agents/reviewer-directive-compliance.d.ts +43 -0
  6. package/dist/cli/index.js +3418 -1029
  7. package/dist/config/constants.d.ts +2 -0
  8. package/dist/config/evidence-schema.d.ts +44 -44
  9. package/dist/config/schema.d.ts +201 -0
  10. package/dist/hooks/delegate-ack-collector.d.ts +51 -0
  11. package/dist/hooks/delegate-directive-injection.d.ts +33 -0
  12. package/dist/hooks/knowledge-application.d.ts +4 -3
  13. package/dist/hooks/knowledge-curator.d.ts +73 -1
  14. package/dist/hooks/knowledge-escalator.d.ts +50 -0
  15. package/dist/hooks/knowledge-events.d.ts +63 -3
  16. package/dist/hooks/knowledge-injector.d.ts +69 -1
  17. package/dist/hooks/knowledge-types.d.ts +41 -1
  18. package/dist/hooks/knowledge-validator.d.ts +43 -0
  19. package/dist/hooks/micro-reflector.d.ts +91 -0
  20. package/dist/hooks/phase-complete-directive-gate.d.ts +44 -0
  21. package/dist/hooks/phase-directives.d.ts +29 -0
  22. package/dist/hooks/reviewer-verdict-parser.d.ts +64 -0
  23. package/dist/hooks/search-knowledge.d.ts +33 -0
  24. package/dist/index.js +8600 -3951
  25. package/dist/memory/schema.d.ts +2 -2
  26. package/dist/services/directive-predicate-runner.d.ts +72 -0
  27. package/dist/services/external-skill-store.d.ts +96 -0
  28. package/dist/services/external-skill-validator.d.ts +160 -0
  29. package/dist/services/knowledge-diagnostics.d.ts +19 -0
  30. package/dist/services/skill-improver.d.ts +11 -0
  31. package/dist/services/status-service.d.ts +3 -0
  32. package/dist/services/synonym-map.d.ts +136 -0
  33. package/dist/services/trajectory-cluster.d.ts +49 -0
  34. package/dist/services/unactionable-hardening.d.ts +47 -0
  35. package/dist/tools/external-skill-delete.d.ts +16 -0
  36. package/dist/tools/external-skill-discover.d.ts +21 -0
  37. package/dist/tools/external-skill-inspect.d.ts +15 -0
  38. package/dist/tools/external-skill-list.d.ts +15 -0
  39. package/dist/tools/external-skill-promote.d.ts +20 -0
  40. package/dist/tools/external-skill-reject.d.ts +15 -0
  41. package/dist/tools/external-skill-revoke.d.ts +17 -0
  42. package/dist/tools/index.d.ts +7 -0
  43. package/dist/tools/manifest.d.ts +7 -0
  44. package/dist/tools/phase-complete.d.ts +10 -0
  45. package/dist/tools/tool-metadata.d.ts +28 -0
  46. package/package.json +1 -1
@@ -7,6 +7,8 @@ export declare const OPENCODE_NATIVE_AGENTS: Set<"compaction" | "title" | "build
7
7
  export declare const CLAUDE_CODE_NATIVE_COMMANDS: ReadonlySet<string>;
8
8
  export declare const MEMORY_TOOL_NAMES: readonly ["swarm_memory_recall", "swarm_memory_propose"];
9
9
  export declare const MEMORY_AGENT_TOOL_MAP: Partial<Record<AgentName, ToolName[]>>;
10
+ export declare const EXTERNAL_SKILL_TOOL_NAMES: readonly ["external_skill_discover", "external_skill_list", "external_skill_inspect", "external_skill_promote", "external_skill_reject", "external_skill_delete", "external_skill_revoke"];
11
+ export declare const EXTERNAL_SKILL_AGENT_TOOL_MAP: Partial<Record<AgentName, ToolName[]>>;
10
12
  /**
11
13
  * Human-readable descriptions for tools shown in the architect Available Tools block.
12
14
  * Used to generate the Available Tools section of the architect prompt at construction time.
@@ -19,10 +19,10 @@ export declare const EvidenceTypeSchema: z.ZodEnum<{
19
19
  }>;
20
20
  export type EvidenceType = z.infer<typeof EvidenceTypeSchema>;
21
21
  export declare const EvidenceVerdictSchema: z.ZodEnum<{
22
+ rejected: "rejected";
22
23
  pass: "pass";
23
24
  fail: "fail";
24
25
  approved: "approved";
25
- rejected: "rejected";
26
26
  info: "info";
27
27
  }>;
28
28
  export type EvidenceVerdict = z.infer<typeof EvidenceVerdictSchema>;
@@ -46,10 +46,10 @@ export declare const BaseEvidenceSchema: z.ZodObject<{
46
46
  timestamp: z.ZodString;
47
47
  agent: z.ZodString;
48
48
  verdict: z.ZodEnum<{
49
+ rejected: "rejected";
49
50
  pass: "pass";
50
51
  fail: "fail";
51
52
  approved: "approved";
52
- rejected: "rejected";
53
53
  info: "info";
54
54
  }>;
55
55
  summary: z.ZodString;
@@ -61,10 +61,10 @@ export declare const ReviewEvidenceSchema: z.ZodObject<{
61
61
  timestamp: z.ZodString;
62
62
  agent: z.ZodString;
63
63
  verdict: z.ZodEnum<{
64
+ rejected: "rejected";
64
65
  pass: "pass";
65
66
  fail: "fail";
66
67
  approved: "approved";
67
- rejected: "rejected";
68
68
  info: "info";
69
69
  }>;
70
70
  summary: z.ZodString;
@@ -79,8 +79,8 @@ export declare const ReviewEvidenceSchema: z.ZodObject<{
79
79
  issues: z.ZodDefault<z.ZodArray<z.ZodObject<{
80
80
  severity: z.ZodEnum<{
81
81
  error: "error";
82
- info: "info";
83
82
  warning: "warning";
83
+ info: "info";
84
84
  }>;
85
85
  message: z.ZodString;
86
86
  file: z.ZodOptional<z.ZodString>;
@@ -93,10 +93,10 @@ export declare const TestEvidenceSchema: z.ZodObject<{
93
93
  timestamp: z.ZodString;
94
94
  agent: z.ZodString;
95
95
  verdict: z.ZodEnum<{
96
+ rejected: "rejected";
96
97
  pass: "pass";
97
98
  fail: "fail";
98
99
  approved: "approved";
99
- rejected: "rejected";
100
100
  info: "info";
101
101
  }>;
102
102
  summary: z.ZodString;
@@ -116,10 +116,10 @@ export declare const DiffEvidenceSchema: z.ZodObject<{
116
116
  timestamp: z.ZodString;
117
117
  agent: z.ZodString;
118
118
  verdict: z.ZodEnum<{
119
+ rejected: "rejected";
119
120
  pass: "pass";
120
121
  fail: "fail";
121
122
  approved: "approved";
122
- rejected: "rejected";
123
123
  info: "info";
124
124
  }>;
125
125
  summary: z.ZodString;
@@ -136,10 +136,10 @@ export declare const ApprovalEvidenceSchema: z.ZodObject<{
136
136
  timestamp: z.ZodString;
137
137
  agent: z.ZodString;
138
138
  verdict: z.ZodEnum<{
139
+ rejected: "rejected";
139
140
  pass: "pass";
140
141
  fail: "fail";
141
142
  approved: "approved";
142
- rejected: "rejected";
143
143
  info: "info";
144
144
  }>;
145
145
  summary: z.ZodString;
@@ -152,10 +152,10 @@ export declare const NoteEvidenceSchema: z.ZodObject<{
152
152
  timestamp: z.ZodString;
153
153
  agent: z.ZodString;
154
154
  verdict: z.ZodEnum<{
155
+ rejected: "rejected";
155
156
  pass: "pass";
156
157
  fail: "fail";
157
158
  approved: "approved";
158
- rejected: "rejected";
159
159
  info: "info";
160
160
  }>;
161
161
  summary: z.ZodString;
@@ -168,10 +168,10 @@ export declare const RetrospectiveEvidenceSchema: z.ZodObject<{
168
168
  timestamp: z.ZodString;
169
169
  agent: z.ZodString;
170
170
  verdict: z.ZodEnum<{
171
+ rejected: "rejected";
171
172
  pass: "pass";
172
173
  fail: "fail";
173
174
  approved: "approved";
174
- rejected: "rejected";
175
175
  info: "info";
176
176
  }>;
177
177
  summary: z.ZodString;
@@ -233,10 +233,10 @@ export declare const SyntaxEvidenceSchema: z.ZodObject<{
233
233
  timestamp: z.ZodString;
234
234
  agent: z.ZodString;
235
235
  verdict: z.ZodEnum<{
236
+ rejected: "rejected";
236
237
  pass: "pass";
237
238
  fail: "fail";
238
239
  approved: "approved";
239
- rejected: "rejected";
240
240
  info: "info";
241
241
  }>;
242
242
  summary: z.ZodString;
@@ -263,10 +263,10 @@ export declare const PlaceholderEvidenceSchema: z.ZodObject<{
263
263
  timestamp: z.ZodString;
264
264
  agent: z.ZodString;
265
265
  verdict: z.ZodEnum<{
266
+ rejected: "rejected";
266
267
  pass: "pass";
267
268
  fail: "fail";
268
269
  approved: "approved";
269
- rejected: "rejected";
270
270
  info: "info";
271
271
  }>;
272
272
  summary: z.ZodString;
@@ -310,10 +310,10 @@ export declare const SastEvidenceSchema: z.ZodObject<{
310
310
  timestamp: z.ZodString;
311
311
  agent: z.ZodString;
312
312
  verdict: z.ZodEnum<{
313
+ rejected: "rejected";
313
314
  pass: "pass";
314
315
  fail: "fail";
315
316
  approved: "approved";
316
- rejected: "rejected";
317
317
  info: "info";
318
318
  }>;
319
319
  summary: z.ZodString;
@@ -387,10 +387,10 @@ export declare const SbomEvidenceSchema: z.ZodObject<{
387
387
  timestamp: z.ZodString;
388
388
  agent: z.ZodString;
389
389
  verdict: z.ZodEnum<{
390
+ rejected: "rejected";
390
391
  pass: "pass";
391
392
  fail: "fail";
392
393
  approved: "approved";
393
- rejected: "rejected";
394
394
  info: "info";
395
395
  }>;
396
396
  summary: z.ZodString;
@@ -421,10 +421,10 @@ export declare const BuildEvidenceSchema: z.ZodObject<{
421
421
  timestamp: z.ZodString;
422
422
  agent: z.ZodString;
423
423
  verdict: z.ZodEnum<{
424
+ rejected: "rejected";
424
425
  pass: "pass";
425
426
  fail: "fail";
426
427
  approved: "approved";
427
- rejected: "rejected";
428
428
  info: "info";
429
429
  }>;
430
430
  summary: z.ZodString;
@@ -454,10 +454,10 @@ export declare const QualityBudgetEvidenceSchema: z.ZodObject<{
454
454
  timestamp: z.ZodString;
455
455
  agent: z.ZodString;
456
456
  verdict: z.ZodEnum<{
457
+ rejected: "rejected";
457
458
  pass: "pass";
458
459
  fail: "fail";
459
460
  approved: "approved";
460
- rejected: "rejected";
461
461
  info: "info";
462
462
  }>;
463
463
  summary: z.ZodString;
@@ -497,10 +497,10 @@ export declare const SecretscanEvidenceSchema: z.ZodObject<{
497
497
  timestamp: z.ZodString;
498
498
  agent: z.ZodString;
499
499
  verdict: z.ZodEnum<{
500
+ rejected: "rejected";
500
501
  pass: "pass";
501
502
  fail: "fail";
502
503
  approved: "approved";
503
- rejected: "rejected";
504
504
  info: "info";
505
505
  }>;
506
506
  summary: z.ZodString;
@@ -517,10 +517,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
517
517
  timestamp: z.ZodString;
518
518
  agent: z.ZodString;
519
519
  verdict: z.ZodEnum<{
520
+ rejected: "rejected";
520
521
  pass: "pass";
521
522
  fail: "fail";
522
523
  approved: "approved";
523
- rejected: "rejected";
524
524
  info: "info";
525
525
  }>;
526
526
  summary: z.ZodString;
@@ -535,8 +535,8 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
535
535
  issues: z.ZodDefault<z.ZodArray<z.ZodObject<{
536
536
  severity: z.ZodEnum<{
537
537
  error: "error";
538
- info: "info";
539
538
  warning: "warning";
539
+ info: "info";
540
540
  }>;
541
541
  message: z.ZodString;
542
542
  file: z.ZodOptional<z.ZodString>;
@@ -547,10 +547,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
547
547
  timestamp: z.ZodString;
548
548
  agent: z.ZodString;
549
549
  verdict: z.ZodEnum<{
550
+ rejected: "rejected";
550
551
  pass: "pass";
551
552
  fail: "fail";
552
553
  approved: "approved";
553
- rejected: "rejected";
554
554
  info: "info";
555
555
  }>;
556
556
  summary: z.ZodString;
@@ -568,10 +568,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
568
568
  timestamp: z.ZodString;
569
569
  agent: z.ZodString;
570
570
  verdict: z.ZodEnum<{
571
+ rejected: "rejected";
571
572
  pass: "pass";
572
573
  fail: "fail";
573
574
  approved: "approved";
574
- rejected: "rejected";
575
575
  info: "info";
576
576
  }>;
577
577
  summary: z.ZodString;
@@ -586,10 +586,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
586
586
  timestamp: z.ZodString;
587
587
  agent: z.ZodString;
588
588
  verdict: z.ZodEnum<{
589
+ rejected: "rejected";
589
590
  pass: "pass";
590
591
  fail: "fail";
591
592
  approved: "approved";
592
- rejected: "rejected";
593
593
  info: "info";
594
594
  }>;
595
595
  summary: z.ZodString;
@@ -600,10 +600,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
600
600
  timestamp: z.ZodString;
601
601
  agent: z.ZodString;
602
602
  verdict: z.ZodEnum<{
603
+ rejected: "rejected";
603
604
  pass: "pass";
604
605
  fail: "fail";
605
606
  approved: "approved";
606
- rejected: "rejected";
607
607
  info: "info";
608
608
  }>;
609
609
  summary: z.ZodString;
@@ -614,10 +614,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
614
614
  timestamp: z.ZodString;
615
615
  agent: z.ZodString;
616
616
  verdict: z.ZodEnum<{
617
+ rejected: "rejected";
617
618
  pass: "pass";
618
619
  fail: "fail";
619
620
  approved: "approved";
620
- rejected: "rejected";
621
621
  info: "info";
622
622
  }>;
623
623
  summary: z.ZodString;
@@ -677,10 +677,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
677
677
  timestamp: z.ZodString;
678
678
  agent: z.ZodString;
679
679
  verdict: z.ZodEnum<{
680
+ rejected: "rejected";
680
681
  pass: "pass";
681
682
  fail: "fail";
682
683
  approved: "approved";
683
- rejected: "rejected";
684
684
  info: "info";
685
685
  }>;
686
686
  summary: z.ZodString;
@@ -705,10 +705,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
705
705
  timestamp: z.ZodString;
706
706
  agent: z.ZodString;
707
707
  verdict: z.ZodEnum<{
708
+ rejected: "rejected";
708
709
  pass: "pass";
709
710
  fail: "fail";
710
711
  approved: "approved";
711
- rejected: "rejected";
712
712
  info: "info";
713
713
  }>;
714
714
  summary: z.ZodString;
@@ -734,10 +734,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
734
734
  timestamp: z.ZodString;
735
735
  agent: z.ZodString;
736
736
  verdict: z.ZodEnum<{
737
+ rejected: "rejected";
737
738
  pass: "pass";
738
739
  fail: "fail";
739
740
  approved: "approved";
740
- rejected: "rejected";
741
741
  info: "info";
742
742
  }>;
743
743
  summary: z.ZodString;
@@ -809,10 +809,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
809
809
  timestamp: z.ZodString;
810
810
  agent: z.ZodString;
811
811
  verdict: z.ZodEnum<{
812
+ rejected: "rejected";
812
813
  pass: "pass";
813
814
  fail: "fail";
814
815
  approved: "approved";
815
- rejected: "rejected";
816
816
  info: "info";
817
817
  }>;
818
818
  summary: z.ZodString;
@@ -841,10 +841,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
841
841
  timestamp: z.ZodString;
842
842
  agent: z.ZodString;
843
843
  verdict: z.ZodEnum<{
844
+ rejected: "rejected";
844
845
  pass: "pass";
845
846
  fail: "fail";
846
847
  approved: "approved";
847
- rejected: "rejected";
848
848
  info: "info";
849
849
  }>;
850
850
  summary: z.ZodString;
@@ -872,10 +872,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
872
872
  timestamp: z.ZodString;
873
873
  agent: z.ZodString;
874
874
  verdict: z.ZodEnum<{
875
+ rejected: "rejected";
875
876
  pass: "pass";
876
877
  fail: "fail";
877
878
  approved: "approved";
878
- rejected: "rejected";
879
879
  info: "info";
880
880
  }>;
881
881
  summary: z.ZodString;
@@ -913,10 +913,10 @@ export declare const EvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
913
913
  timestamp: z.ZodString;
914
914
  agent: z.ZodString;
915
915
  verdict: z.ZodEnum<{
916
+ rejected: "rejected";
916
917
  pass: "pass";
917
918
  fail: "fail";
918
919
  approved: "approved";
919
- rejected: "rejected";
920
920
  info: "info";
921
921
  }>;
922
922
  summary: z.ZodString;
@@ -936,10 +936,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
936
936
  timestamp: z.ZodString;
937
937
  agent: z.ZodString;
938
938
  verdict: z.ZodEnum<{
939
+ rejected: "rejected";
939
940
  pass: "pass";
940
941
  fail: "fail";
941
942
  approved: "approved";
942
- rejected: "rejected";
943
943
  info: "info";
944
944
  }>;
945
945
  summary: z.ZodString;
@@ -954,8 +954,8 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
954
954
  issues: z.ZodDefault<z.ZodArray<z.ZodObject<{
955
955
  severity: z.ZodEnum<{
956
956
  error: "error";
957
- info: "info";
958
957
  warning: "warning";
958
+ info: "info";
959
959
  }>;
960
960
  message: z.ZodString;
961
961
  file: z.ZodOptional<z.ZodString>;
@@ -966,10 +966,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
966
966
  timestamp: z.ZodString;
967
967
  agent: z.ZodString;
968
968
  verdict: z.ZodEnum<{
969
+ rejected: "rejected";
969
970
  pass: "pass";
970
971
  fail: "fail";
971
972
  approved: "approved";
972
- rejected: "rejected";
973
973
  info: "info";
974
974
  }>;
975
975
  summary: z.ZodString;
@@ -987,10 +987,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
987
987
  timestamp: z.ZodString;
988
988
  agent: z.ZodString;
989
989
  verdict: z.ZodEnum<{
990
+ rejected: "rejected";
990
991
  pass: "pass";
991
992
  fail: "fail";
992
993
  approved: "approved";
993
- rejected: "rejected";
994
994
  info: "info";
995
995
  }>;
996
996
  summary: z.ZodString;
@@ -1005,10 +1005,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
1005
1005
  timestamp: z.ZodString;
1006
1006
  agent: z.ZodString;
1007
1007
  verdict: z.ZodEnum<{
1008
+ rejected: "rejected";
1008
1009
  pass: "pass";
1009
1010
  fail: "fail";
1010
1011
  approved: "approved";
1011
- rejected: "rejected";
1012
1012
  info: "info";
1013
1013
  }>;
1014
1014
  summary: z.ZodString;
@@ -1019,10 +1019,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
1019
1019
  timestamp: z.ZodString;
1020
1020
  agent: z.ZodString;
1021
1021
  verdict: z.ZodEnum<{
1022
+ rejected: "rejected";
1022
1023
  pass: "pass";
1023
1024
  fail: "fail";
1024
1025
  approved: "approved";
1025
- rejected: "rejected";
1026
1026
  info: "info";
1027
1027
  }>;
1028
1028
  summary: z.ZodString;
@@ -1033,10 +1033,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
1033
1033
  timestamp: z.ZodString;
1034
1034
  agent: z.ZodString;
1035
1035
  verdict: z.ZodEnum<{
1036
+ rejected: "rejected";
1036
1037
  pass: "pass";
1037
1038
  fail: "fail";
1038
1039
  approved: "approved";
1039
- rejected: "rejected";
1040
1040
  info: "info";
1041
1041
  }>;
1042
1042
  summary: z.ZodString;
@@ -1096,10 +1096,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
1096
1096
  timestamp: z.ZodString;
1097
1097
  agent: z.ZodString;
1098
1098
  verdict: z.ZodEnum<{
1099
+ rejected: "rejected";
1099
1100
  pass: "pass";
1100
1101
  fail: "fail";
1101
1102
  approved: "approved";
1102
- rejected: "rejected";
1103
1103
  info: "info";
1104
1104
  }>;
1105
1105
  summary: z.ZodString;
@@ -1124,10 +1124,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
1124
1124
  timestamp: z.ZodString;
1125
1125
  agent: z.ZodString;
1126
1126
  verdict: z.ZodEnum<{
1127
+ rejected: "rejected";
1127
1128
  pass: "pass";
1128
1129
  fail: "fail";
1129
1130
  approved: "approved";
1130
- rejected: "rejected";
1131
1131
  info: "info";
1132
1132
  }>;
1133
1133
  summary: z.ZodString;
@@ -1153,10 +1153,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
1153
1153
  timestamp: z.ZodString;
1154
1154
  agent: z.ZodString;
1155
1155
  verdict: z.ZodEnum<{
1156
+ rejected: "rejected";
1156
1157
  pass: "pass";
1157
1158
  fail: "fail";
1158
1159
  approved: "approved";
1159
- rejected: "rejected";
1160
1160
  info: "info";
1161
1161
  }>;
1162
1162
  summary: z.ZodString;
@@ -1228,10 +1228,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
1228
1228
  timestamp: z.ZodString;
1229
1229
  agent: z.ZodString;
1230
1230
  verdict: z.ZodEnum<{
1231
+ rejected: "rejected";
1231
1232
  pass: "pass";
1232
1233
  fail: "fail";
1233
1234
  approved: "approved";
1234
- rejected: "rejected";
1235
1235
  info: "info";
1236
1236
  }>;
1237
1237
  summary: z.ZodString;
@@ -1260,10 +1260,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
1260
1260
  timestamp: z.ZodString;
1261
1261
  agent: z.ZodString;
1262
1262
  verdict: z.ZodEnum<{
1263
+ rejected: "rejected";
1263
1264
  pass: "pass";
1264
1265
  fail: "fail";
1265
1266
  approved: "approved";
1266
- rejected: "rejected";
1267
1267
  info: "info";
1268
1268
  }>;
1269
1269
  summary: z.ZodString;
@@ -1291,10 +1291,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
1291
1291
  timestamp: z.ZodString;
1292
1292
  agent: z.ZodString;
1293
1293
  verdict: z.ZodEnum<{
1294
+ rejected: "rejected";
1294
1295
  pass: "pass";
1295
1296
  fail: "fail";
1296
1297
  approved: "approved";
1297
- rejected: "rejected";
1298
1298
  info: "info";
1299
1299
  }>;
1300
1300
  summary: z.ZodString;
@@ -1332,10 +1332,10 @@ export declare const EvidenceBundleSchema: z.ZodObject<{
1332
1332
  timestamp: z.ZodString;
1333
1333
  agent: z.ZodString;
1334
1334
  verdict: z.ZodEnum<{
1335
+ rejected: "rejected";
1335
1336
  pass: "pass";
1336
1337
  fail: "fail";
1337
1338
  approved: "approved";
1338
- rejected: "rejected";
1339
1339
  info: "info";
1340
1340
  }>;
1341
1341
  summary: z.ZodString;