@vibe-engineer/artifacts 0.1.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.
@@ -0,0 +1,1100 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://schemas.vibe-engineer.dev/artifacts/v1/build-result.schema.json",
4
+ "title": "BuildResultV1",
5
+ "description": "Canonical DL-02 BuildResultV1 artifact schema.",
6
+ "type": "object",
7
+ "additionalProperties": false,
8
+ "properties": {
9
+ "schemaVersion": {
10
+ "type": "string",
11
+ "minLength": 1,
12
+ "const": "1.0.0",
13
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
14
+ },
15
+ "artifactKind": {
16
+ "type": "string",
17
+ "minLength": 1,
18
+ "const": "build_result",
19
+ "enum": [
20
+ "build_result"
21
+ ]
22
+ },
23
+ "artifactId": {
24
+ "type": "string",
25
+ "minLength": 1,
26
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
27
+ },
28
+ "title": {
29
+ "type": "string",
30
+ "minLength": 1
31
+ },
32
+ "createdAt": {
33
+ "type": "string",
34
+ "minLength": 1,
35
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$|^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$"
36
+ },
37
+ "updatedAt": {
38
+ "type": "string",
39
+ "minLength": 1,
40
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$|^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$"
41
+ },
42
+ "producer": {
43
+ "type": "object",
44
+ "additionalProperties": false,
45
+ "properties": {
46
+ "kind": {
47
+ "type": "string",
48
+ "minLength": 1,
49
+ "enum": [
50
+ "skill",
51
+ "agent",
52
+ "cli",
53
+ "schematic",
54
+ "verification_runner",
55
+ "human_operator",
56
+ "system"
57
+ ]
58
+ },
59
+ "id": {
60
+ "type": "string",
61
+ "minLength": 1,
62
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
63
+ },
64
+ "name": {
65
+ "type": "string",
66
+ "minLength": 1
67
+ },
68
+ "version": {
69
+ "type": "string",
70
+ "minLength": 1,
71
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
72
+ },
73
+ "runId": {
74
+ "type": "string",
75
+ "minLength": 1,
76
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
77
+ }
78
+ },
79
+ "required": [
80
+ "kind",
81
+ "id",
82
+ "name"
83
+ ]
84
+ },
85
+ "status": {
86
+ "type": "string",
87
+ "minLength": 1,
88
+ "enum": [
89
+ "passed",
90
+ "failed",
91
+ "blocked",
92
+ "superseded"
93
+ ]
94
+ },
95
+ "ownership": {
96
+ "type": "object",
97
+ "additionalProperties": false,
98
+ "properties": {
99
+ "ownerLane": {
100
+ "type": "string",
101
+ "minLength": 1
102
+ },
103
+ "ownedWritePaths": {
104
+ "type": "array",
105
+ "items": {
106
+ "type": "string",
107
+ "minLength": 1,
108
+ "pattern": "^.+$"
109
+ },
110
+ "minItems": 1
111
+ },
112
+ "readOnlyPaths": {
113
+ "type": "array",
114
+ "items": {
115
+ "type": "string",
116
+ "minLength": 1,
117
+ "pattern": "^.+$"
118
+ }
119
+ },
120
+ "untouchablePaths": {
121
+ "type": "array",
122
+ "items": {
123
+ "type": "string",
124
+ "minLength": 1,
125
+ "pattern": "^.+$"
126
+ }
127
+ },
128
+ "concurrencyNotes": {
129
+ "type": "string",
130
+ "minLength": 1
131
+ },
132
+ "handoffPolicy": {
133
+ "type": "string",
134
+ "minLength": 1
135
+ }
136
+ },
137
+ "required": [
138
+ "ownerLane",
139
+ "ownedWritePaths",
140
+ "readOnlyPaths",
141
+ "untouchablePaths",
142
+ "concurrencyNotes"
143
+ ]
144
+ },
145
+ "links": {
146
+ "type": "array",
147
+ "items": {
148
+ "type": "object",
149
+ "additionalProperties": false,
150
+ "properties": {
151
+ "rel": {
152
+ "type": "string",
153
+ "minLength": 1,
154
+ "enum": [
155
+ "raw_intent",
156
+ "derived_from",
157
+ "supersedes",
158
+ "superseded_by",
159
+ "implements",
160
+ "verifies",
161
+ "evidence_for",
162
+ "consumed_by",
163
+ "produced_by",
164
+ "context_for",
165
+ "registry_entry_for",
166
+ "manifest_for",
167
+ "verification_delta_of",
168
+ "build_result_of",
169
+ "ship_packet_of"
170
+ ]
171
+ },
172
+ "artifactKind": {
173
+ "type": "string",
174
+ "minLength": 1,
175
+ "enum": [
176
+ "work_brief",
177
+ "implementation_plan",
178
+ "verification_delta",
179
+ "build_result",
180
+ "ship_packet",
181
+ "evidence_packet",
182
+ "agent_registry_entry",
183
+ "context_file_header",
184
+ "schematic_manifest",
185
+ "skill_manifest"
186
+ ]
187
+ },
188
+ "artifactId": {
189
+ "type": "string",
190
+ "minLength": 1,
191
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
192
+ },
193
+ "path": {
194
+ "type": "string",
195
+ "minLength": 1,
196
+ "pattern": "^.+$"
197
+ },
198
+ "required": {
199
+ "type": "boolean"
200
+ },
201
+ "statusAtLinkTime": {
202
+ "type": "string",
203
+ "minLength": 1
204
+ }
205
+ },
206
+ "required": [
207
+ "rel",
208
+ "artifactKind",
209
+ "artifactId",
210
+ "path",
211
+ "required",
212
+ "statusAtLinkTime"
213
+ ]
214
+ },
215
+ "minItems": 1
216
+ },
217
+ "extensions": {
218
+ "type": "object",
219
+ "propertyNames": {
220
+ "pattern": "^[a-z][a-z0-9]*(\\.[a-z0-9][a-z0-9-]*)+$|^@[a-z0-9][a-z0-9-]*/[a-z0-9][a-z0-9-]*$"
221
+ },
222
+ "additionalProperties": {
223
+ "type": "object",
224
+ "required": [
225
+ "schemaVersion"
226
+ ],
227
+ "properties": {
228
+ "schemaVersion": {
229
+ "type": "string",
230
+ "minLength": 1,
231
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
232
+ }
233
+ },
234
+ "additionalProperties": true
235
+ }
236
+ },
237
+ "description": {
238
+ "type": "string"
239
+ },
240
+ "tags": {
241
+ "type": "array",
242
+ "items": {
243
+ "type": "string",
244
+ "minLength": 1
245
+ }
246
+ },
247
+ "sourceRefs": {
248
+ "type": "array",
249
+ "items": {
250
+ "type": "object",
251
+ "additionalProperties": false,
252
+ "properties": {
253
+ "kind": {
254
+ "type": "string",
255
+ "minLength": 1,
256
+ "enum": [
257
+ "source_doc",
258
+ "prompt",
259
+ "issue",
260
+ "url",
261
+ "artifact",
262
+ "raw_intent"
263
+ ]
264
+ },
265
+ "ref": {
266
+ "type": "string",
267
+ "minLength": 1
268
+ }
269
+ },
270
+ "required": [
271
+ "kind",
272
+ "ref"
273
+ ]
274
+ }
275
+ },
276
+ "approvedBy": {
277
+ "type": "object",
278
+ "additionalProperties": false,
279
+ "properties": {
280
+ "producer": {
281
+ "type": "object",
282
+ "additionalProperties": false,
283
+ "properties": {
284
+ "kind": {
285
+ "type": "string",
286
+ "minLength": 1,
287
+ "enum": [
288
+ "skill",
289
+ "agent",
290
+ "cli",
291
+ "schematic",
292
+ "verification_runner",
293
+ "human_operator",
294
+ "system"
295
+ ]
296
+ },
297
+ "id": {
298
+ "type": "string",
299
+ "minLength": 1,
300
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
301
+ },
302
+ "name": {
303
+ "type": "string",
304
+ "minLength": 1
305
+ },
306
+ "version": {
307
+ "type": "string",
308
+ "minLength": 1,
309
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
310
+ },
311
+ "runId": {
312
+ "type": "string",
313
+ "minLength": 1,
314
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
315
+ }
316
+ },
317
+ "required": [
318
+ "kind",
319
+ "id",
320
+ "name"
321
+ ]
322
+ },
323
+ "approvedAt": {
324
+ "type": "string",
325
+ "minLength": 1,
326
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$|^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$"
327
+ }
328
+ },
329
+ "required": [
330
+ "producer",
331
+ "approvedAt"
332
+ ]
333
+ },
334
+ "supersessionReason": {
335
+ "type": "string"
336
+ },
337
+ "retention": {
338
+ "type": "object",
339
+ "additionalProperties": false,
340
+ "properties": {
341
+ "policy": {
342
+ "type": "string",
343
+ "minLength": 1
344
+ },
345
+ "reason": {
346
+ "type": "string",
347
+ "minLength": 1
348
+ }
349
+ },
350
+ "required": [
351
+ "policy",
352
+ "reason"
353
+ ]
354
+ },
355
+ "implementationPlanRef": {
356
+ "type": "object",
357
+ "additionalProperties": false,
358
+ "properties": {
359
+ "rel": {
360
+ "type": "string",
361
+ "minLength": 1,
362
+ "enum": [
363
+ "raw_intent",
364
+ "derived_from",
365
+ "supersedes",
366
+ "superseded_by",
367
+ "implements",
368
+ "verifies",
369
+ "evidence_for",
370
+ "consumed_by",
371
+ "produced_by",
372
+ "context_for",
373
+ "registry_entry_for",
374
+ "manifest_for",
375
+ "verification_delta_of",
376
+ "build_result_of",
377
+ "ship_packet_of"
378
+ ]
379
+ },
380
+ "artifactKind": {
381
+ "type": "string",
382
+ "minLength": 1,
383
+ "enum": [
384
+ "work_brief",
385
+ "implementation_plan",
386
+ "verification_delta",
387
+ "build_result",
388
+ "ship_packet",
389
+ "evidence_packet",
390
+ "agent_registry_entry",
391
+ "context_file_header",
392
+ "schematic_manifest",
393
+ "skill_manifest"
394
+ ]
395
+ },
396
+ "artifactId": {
397
+ "type": "string",
398
+ "minLength": 1,
399
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
400
+ },
401
+ "path": {
402
+ "type": "string",
403
+ "minLength": 1,
404
+ "pattern": "^.+$"
405
+ },
406
+ "required": {
407
+ "type": "boolean"
408
+ },
409
+ "statusAtLinkTime": {
410
+ "type": "string",
411
+ "minLength": 1
412
+ }
413
+ },
414
+ "required": [
415
+ "rel",
416
+ "artifactKind",
417
+ "artifactId",
418
+ "path",
419
+ "required",
420
+ "statusAtLinkTime"
421
+ ]
422
+ },
423
+ "implementationSummary": {
424
+ "type": "string",
425
+ "minLength": 1
426
+ },
427
+ "changedFilesSummary": {
428
+ "type": "array",
429
+ "items": {
430
+ "type": "object",
431
+ "additionalProperties": false,
432
+ "properties": {
433
+ "path": {
434
+ "type": "string",
435
+ "minLength": 1,
436
+ "pattern": "^.+$"
437
+ },
438
+ "changeKind": {
439
+ "type": "string",
440
+ "minLength": 1,
441
+ "enum": [
442
+ "created",
443
+ "modified",
444
+ "deleted",
445
+ "moved",
446
+ "unchanged_validated"
447
+ ]
448
+ },
449
+ "ownerLane": {
450
+ "type": "string",
451
+ "minLength": 1
452
+ },
453
+ "summary": {
454
+ "type": "string",
455
+ "minLength": 1
456
+ }
457
+ },
458
+ "required": [
459
+ "path",
460
+ "changeKind",
461
+ "ownerLane",
462
+ "summary"
463
+ ]
464
+ },
465
+ "minItems": 1
466
+ },
467
+ "schematicsUsed": {
468
+ "type": "array",
469
+ "items": {
470
+ "type": "object",
471
+ "additionalProperties": false,
472
+ "properties": {
473
+ "schematicManifestRef": {
474
+ "type": "object",
475
+ "additionalProperties": false,
476
+ "properties": {
477
+ "rel": {
478
+ "type": "string",
479
+ "minLength": 1,
480
+ "enum": [
481
+ "raw_intent",
482
+ "derived_from",
483
+ "supersedes",
484
+ "superseded_by",
485
+ "implements",
486
+ "verifies",
487
+ "evidence_for",
488
+ "consumed_by",
489
+ "produced_by",
490
+ "context_for",
491
+ "registry_entry_for",
492
+ "manifest_for",
493
+ "verification_delta_of",
494
+ "build_result_of",
495
+ "ship_packet_of"
496
+ ]
497
+ },
498
+ "artifactKind": {
499
+ "type": "string",
500
+ "minLength": 1,
501
+ "enum": [
502
+ "work_brief",
503
+ "implementation_plan",
504
+ "verification_delta",
505
+ "build_result",
506
+ "ship_packet",
507
+ "evidence_packet",
508
+ "agent_registry_entry",
509
+ "context_file_header",
510
+ "schematic_manifest",
511
+ "skill_manifest"
512
+ ]
513
+ },
514
+ "artifactId": {
515
+ "type": "string",
516
+ "minLength": 1,
517
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
518
+ },
519
+ "path": {
520
+ "type": "string",
521
+ "minLength": 1,
522
+ "pattern": "^.+$"
523
+ },
524
+ "required": {
525
+ "type": "boolean"
526
+ },
527
+ "statusAtLinkTime": {
528
+ "type": "string",
529
+ "minLength": 1
530
+ }
531
+ },
532
+ "required": [
533
+ "rel",
534
+ "artifactKind",
535
+ "artifactId",
536
+ "path",
537
+ "required",
538
+ "statusAtLinkTime"
539
+ ]
540
+ },
541
+ "inputRef": {
542
+ "type": "object",
543
+ "additionalProperties": false,
544
+ "properties": {
545
+ "rel": {
546
+ "type": "string",
547
+ "minLength": 1,
548
+ "enum": [
549
+ "raw_intent",
550
+ "derived_from",
551
+ "supersedes",
552
+ "superseded_by",
553
+ "implements",
554
+ "verifies",
555
+ "evidence_for",
556
+ "consumed_by",
557
+ "produced_by",
558
+ "context_for",
559
+ "registry_entry_for",
560
+ "manifest_for",
561
+ "verification_delta_of",
562
+ "build_result_of",
563
+ "ship_packet_of"
564
+ ]
565
+ },
566
+ "artifactKind": {
567
+ "type": "string",
568
+ "minLength": 1,
569
+ "enum": [
570
+ "work_brief",
571
+ "implementation_plan",
572
+ "verification_delta",
573
+ "build_result",
574
+ "ship_packet",
575
+ "evidence_packet",
576
+ "agent_registry_entry",
577
+ "context_file_header",
578
+ "schematic_manifest",
579
+ "skill_manifest"
580
+ ]
581
+ },
582
+ "artifactId": {
583
+ "type": "string",
584
+ "minLength": 1,
585
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
586
+ },
587
+ "path": {
588
+ "type": "string",
589
+ "minLength": 1,
590
+ "pattern": "^.+$"
591
+ },
592
+ "required": {
593
+ "type": "boolean"
594
+ },
595
+ "statusAtLinkTime": {
596
+ "type": "string",
597
+ "minLength": 1
598
+ }
599
+ },
600
+ "required": [
601
+ "rel",
602
+ "artifactKind",
603
+ "artifactId",
604
+ "path",
605
+ "required",
606
+ "statusAtLinkTime"
607
+ ]
608
+ },
609
+ "dryRunStatus": {
610
+ "type": "string",
611
+ "minLength": 1,
612
+ "enum": [
613
+ "passed",
614
+ "failed",
615
+ "not_run"
616
+ ]
617
+ },
618
+ "conflictStatus": {
619
+ "type": "string",
620
+ "minLength": 1,
621
+ "enum": [
622
+ "none",
623
+ "resolved",
624
+ "blocked"
625
+ ]
626
+ },
627
+ "outputPaths": {
628
+ "type": "array",
629
+ "items": {
630
+ "type": "string",
631
+ "minLength": 1,
632
+ "pattern": "^.+$"
633
+ }
634
+ }
635
+ },
636
+ "required": [
637
+ "schematicManifestRef",
638
+ "inputRef",
639
+ "dryRunStatus",
640
+ "conflictStatus",
641
+ "outputPaths"
642
+ ]
643
+ }
644
+ },
645
+ "testsAndVerificationChanged": {
646
+ "type": "array",
647
+ "items": {
648
+ "type": "object",
649
+ "additionalProperties": false,
650
+ "properties": {
651
+ "path": {
652
+ "type": "string",
653
+ "minLength": 1,
654
+ "pattern": "^.+$"
655
+ },
656
+ "changeKind": {
657
+ "type": "string",
658
+ "minLength": 1,
659
+ "enum": [
660
+ "added",
661
+ "updated",
662
+ "reused"
663
+ ]
664
+ },
665
+ "evidenceRef": {
666
+ "type": "object",
667
+ "additionalProperties": false,
668
+ "properties": {
669
+ "rel": {
670
+ "type": "string",
671
+ "minLength": 1,
672
+ "enum": [
673
+ "raw_intent",
674
+ "derived_from",
675
+ "supersedes",
676
+ "superseded_by",
677
+ "implements",
678
+ "verifies",
679
+ "evidence_for",
680
+ "consumed_by",
681
+ "produced_by",
682
+ "context_for",
683
+ "registry_entry_for",
684
+ "manifest_for",
685
+ "verification_delta_of",
686
+ "build_result_of",
687
+ "ship_packet_of"
688
+ ]
689
+ },
690
+ "artifactKind": {
691
+ "type": "string",
692
+ "minLength": 1,
693
+ "enum": [
694
+ "work_brief",
695
+ "implementation_plan",
696
+ "verification_delta",
697
+ "build_result",
698
+ "ship_packet",
699
+ "evidence_packet",
700
+ "agent_registry_entry",
701
+ "context_file_header",
702
+ "schematic_manifest",
703
+ "skill_manifest"
704
+ ]
705
+ },
706
+ "artifactId": {
707
+ "type": "string",
708
+ "minLength": 1,
709
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
710
+ },
711
+ "path": {
712
+ "type": "string",
713
+ "minLength": 1,
714
+ "pattern": "^.+$"
715
+ },
716
+ "required": {
717
+ "type": "boolean"
718
+ },
719
+ "statusAtLinkTime": {
720
+ "type": "string",
721
+ "minLength": 1
722
+ }
723
+ },
724
+ "required": [
725
+ "rel",
726
+ "artifactKind",
727
+ "artifactId",
728
+ "path",
729
+ "required",
730
+ "statusAtLinkTime"
731
+ ]
732
+ }
733
+ },
734
+ "required": [
735
+ "path",
736
+ "changeKind",
737
+ "evidenceRef"
738
+ ]
739
+ }
740
+ },
741
+ "verificationRuns": {
742
+ "type": "array",
743
+ "items": {
744
+ "type": "object",
745
+ "additionalProperties": false,
746
+ "properties": {
747
+ "evidencePacketRef": {
748
+ "type": "object",
749
+ "additionalProperties": false,
750
+ "properties": {
751
+ "rel": {
752
+ "type": "string",
753
+ "minLength": 1,
754
+ "enum": [
755
+ "raw_intent",
756
+ "derived_from",
757
+ "supersedes",
758
+ "superseded_by",
759
+ "implements",
760
+ "verifies",
761
+ "evidence_for",
762
+ "consumed_by",
763
+ "produced_by",
764
+ "context_for",
765
+ "registry_entry_for",
766
+ "manifest_for",
767
+ "verification_delta_of",
768
+ "build_result_of",
769
+ "ship_packet_of"
770
+ ]
771
+ },
772
+ "artifactKind": {
773
+ "type": "string",
774
+ "minLength": 1,
775
+ "enum": [
776
+ "work_brief",
777
+ "implementation_plan",
778
+ "verification_delta",
779
+ "build_result",
780
+ "ship_packet",
781
+ "evidence_packet",
782
+ "agent_registry_entry",
783
+ "context_file_header",
784
+ "schematic_manifest",
785
+ "skill_manifest"
786
+ ]
787
+ },
788
+ "artifactId": {
789
+ "type": "string",
790
+ "minLength": 1,
791
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
792
+ },
793
+ "path": {
794
+ "type": "string",
795
+ "minLength": 1,
796
+ "pattern": "^.+$"
797
+ },
798
+ "required": {
799
+ "type": "boolean"
800
+ },
801
+ "statusAtLinkTime": {
802
+ "type": "string",
803
+ "minLength": 1
804
+ }
805
+ },
806
+ "required": [
807
+ "rel",
808
+ "artifactKind",
809
+ "artifactId",
810
+ "path",
811
+ "required",
812
+ "statusAtLinkTime"
813
+ ]
814
+ },
815
+ "summary": {
816
+ "type": "string",
817
+ "minLength": 1
818
+ },
819
+ "result": {
820
+ "type": "string",
821
+ "minLength": 1,
822
+ "enum": [
823
+ "pass",
824
+ "fail",
825
+ "blocked",
826
+ "advisory",
827
+ "skipped"
828
+ ]
829
+ },
830
+ "blocking": {
831
+ "type": "boolean"
832
+ }
833
+ },
834
+ "required": [
835
+ "evidencePacketRef",
836
+ "summary",
837
+ "result",
838
+ "blocking"
839
+ ]
840
+ },
841
+ "minItems": 1
842
+ },
843
+ "warningsAndBlockers": {
844
+ "type": "array",
845
+ "items": {
846
+ "type": "object",
847
+ "additionalProperties": false,
848
+ "properties": {
849
+ "severity": {
850
+ "type": "string",
851
+ "minLength": 1,
852
+ "enum": [
853
+ "critical",
854
+ "major-local",
855
+ "minor-local",
856
+ "advisory"
857
+ ]
858
+ },
859
+ "blocking": {
860
+ "type": "boolean"
861
+ },
862
+ "owner": {
863
+ "type": "string",
864
+ "minLength": 1
865
+ },
866
+ "evidenceRef": {
867
+ "type": "object",
868
+ "additionalProperties": false,
869
+ "properties": {
870
+ "rel": {
871
+ "type": "string",
872
+ "minLength": 1,
873
+ "enum": [
874
+ "raw_intent",
875
+ "derived_from",
876
+ "supersedes",
877
+ "superseded_by",
878
+ "implements",
879
+ "verifies",
880
+ "evidence_for",
881
+ "consumed_by",
882
+ "produced_by",
883
+ "context_for",
884
+ "registry_entry_for",
885
+ "manifest_for",
886
+ "verification_delta_of",
887
+ "build_result_of",
888
+ "ship_packet_of"
889
+ ]
890
+ },
891
+ "artifactKind": {
892
+ "type": "string",
893
+ "minLength": 1,
894
+ "enum": [
895
+ "work_brief",
896
+ "implementation_plan",
897
+ "verification_delta",
898
+ "build_result",
899
+ "ship_packet",
900
+ "evidence_packet",
901
+ "agent_registry_entry",
902
+ "context_file_header",
903
+ "schematic_manifest",
904
+ "skill_manifest"
905
+ ]
906
+ },
907
+ "artifactId": {
908
+ "type": "string",
909
+ "minLength": 1,
910
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
911
+ },
912
+ "path": {
913
+ "type": "string",
914
+ "minLength": 1,
915
+ "pattern": "^.+$"
916
+ },
917
+ "required": {
918
+ "type": "boolean"
919
+ },
920
+ "statusAtLinkTime": {
921
+ "type": "string",
922
+ "minLength": 1
923
+ }
924
+ },
925
+ "required": [
926
+ "rel",
927
+ "artifactKind",
928
+ "artifactId",
929
+ "path",
930
+ "required",
931
+ "statusAtLinkTime"
932
+ ]
933
+ }
934
+ },
935
+ "required": [
936
+ "severity",
937
+ "blocking",
938
+ "owner",
939
+ "evidenceRef"
940
+ ]
941
+ }
942
+ },
943
+ "contextDocsUpdates": {
944
+ "type": "array",
945
+ "items": {
946
+ "type": "object",
947
+ "additionalProperties": false,
948
+ "properties": {
949
+ "ref": {
950
+ "type": "object",
951
+ "additionalProperties": false,
952
+ "properties": {
953
+ "rel": {
954
+ "type": "string",
955
+ "minLength": 1,
956
+ "enum": [
957
+ "raw_intent",
958
+ "derived_from",
959
+ "supersedes",
960
+ "superseded_by",
961
+ "implements",
962
+ "verifies",
963
+ "evidence_for",
964
+ "consumed_by",
965
+ "produced_by",
966
+ "context_for",
967
+ "registry_entry_for",
968
+ "manifest_for",
969
+ "verification_delta_of",
970
+ "build_result_of",
971
+ "ship_packet_of"
972
+ ]
973
+ },
974
+ "artifactKind": {
975
+ "type": "string",
976
+ "minLength": 1,
977
+ "enum": [
978
+ "work_brief",
979
+ "implementation_plan",
980
+ "verification_delta",
981
+ "build_result",
982
+ "ship_packet",
983
+ "evidence_packet",
984
+ "agent_registry_entry",
985
+ "context_file_header",
986
+ "schematic_manifest",
987
+ "skill_manifest"
988
+ ]
989
+ },
990
+ "artifactId": {
991
+ "type": "string",
992
+ "minLength": 1,
993
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
994
+ },
995
+ "path": {
996
+ "type": "string",
997
+ "minLength": 1,
998
+ "pattern": "^.+$"
999
+ },
1000
+ "required": {
1001
+ "type": "boolean"
1002
+ },
1003
+ "statusAtLinkTime": {
1004
+ "type": "string",
1005
+ "minLength": 1
1006
+ }
1007
+ },
1008
+ "required": [
1009
+ "rel",
1010
+ "artifactKind",
1011
+ "artifactId",
1012
+ "path",
1013
+ "required",
1014
+ "statusAtLinkTime"
1015
+ ]
1016
+ },
1017
+ "updateStatus": {
1018
+ "type": "string",
1019
+ "minLength": 1,
1020
+ "enum": [
1021
+ "updated",
1022
+ "not_needed",
1023
+ "blocked"
1024
+ ]
1025
+ },
1026
+ "summary": {
1027
+ "type": "string",
1028
+ "minLength": 1
1029
+ }
1030
+ },
1031
+ "required": [
1032
+ "ref",
1033
+ "updateStatus",
1034
+ "summary"
1035
+ ]
1036
+ }
1037
+ },
1038
+ "finalStatusReason": {
1039
+ "type": "string",
1040
+ "minLength": 1
1041
+ },
1042
+ "iterationHistory": {
1043
+ "type": "array",
1044
+ "items": {
1045
+ "type": "string",
1046
+ "minLength": 1
1047
+ }
1048
+ },
1049
+ "fixAttempts": {
1050
+ "type": "array",
1051
+ "items": {
1052
+ "type": "string",
1053
+ "minLength": 1
1054
+ }
1055
+ },
1056
+ "parallelWorkPackages": {
1057
+ "type": "array",
1058
+ "items": {
1059
+ "type": "string",
1060
+ "minLength": 1
1061
+ }
1062
+ },
1063
+ "remainingFollowUps": {
1064
+ "type": "array",
1065
+ "items": {
1066
+ "type": "string",
1067
+ "minLength": 1
1068
+ }
1069
+ },
1070
+ "advisoryFindings": {
1071
+ "type": "array",
1072
+ "items": {
1073
+ "type": "string",
1074
+ "minLength": 1
1075
+ }
1076
+ }
1077
+ },
1078
+ "required": [
1079
+ "schemaVersion",
1080
+ "artifactKind",
1081
+ "artifactId",
1082
+ "title",
1083
+ "createdAt",
1084
+ "updatedAt",
1085
+ "producer",
1086
+ "status",
1087
+ "ownership",
1088
+ "links",
1089
+ "extensions",
1090
+ "implementationPlanRef",
1091
+ "implementationSummary",
1092
+ "changedFilesSummary",
1093
+ "schematicsUsed",
1094
+ "testsAndVerificationChanged",
1095
+ "verificationRuns",
1096
+ "warningsAndBlockers",
1097
+ "contextDocsUpdates",
1098
+ "finalStatusReason"
1099
+ ]
1100
+ }