@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,961 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://schemas.vibe-engineer.dev/artifacts/v1/ship-packet.schema.json",
4
+ "title": "ShipPacketV1",
5
+ "description": "Canonical DL-02 ShipPacketV1 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": "ship_packet",
19
+ "enum": [
20
+ "ship_packet"
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
+ "ready_for_review",
90
+ "blocked",
91
+ "superseded",
92
+ "approved_for_operator_action"
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
+ "buildResultRef": {
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
+ "finalVerification": {
424
+ "type": "array",
425
+ "items": {
426
+ "type": "object",
427
+ "additionalProperties": false,
428
+ "properties": {
429
+ "evidencePacketRef": {
430
+ "type": "object",
431
+ "additionalProperties": false,
432
+ "properties": {
433
+ "rel": {
434
+ "type": "string",
435
+ "minLength": 1,
436
+ "enum": [
437
+ "raw_intent",
438
+ "derived_from",
439
+ "supersedes",
440
+ "superseded_by",
441
+ "implements",
442
+ "verifies",
443
+ "evidence_for",
444
+ "consumed_by",
445
+ "produced_by",
446
+ "context_for",
447
+ "registry_entry_for",
448
+ "manifest_for",
449
+ "verification_delta_of",
450
+ "build_result_of",
451
+ "ship_packet_of"
452
+ ]
453
+ },
454
+ "artifactKind": {
455
+ "type": "string",
456
+ "minLength": 1,
457
+ "enum": [
458
+ "work_brief",
459
+ "implementation_plan",
460
+ "verification_delta",
461
+ "build_result",
462
+ "ship_packet",
463
+ "evidence_packet",
464
+ "agent_registry_entry",
465
+ "context_file_header",
466
+ "schematic_manifest",
467
+ "skill_manifest"
468
+ ]
469
+ },
470
+ "artifactId": {
471
+ "type": "string",
472
+ "minLength": 1,
473
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
474
+ },
475
+ "path": {
476
+ "type": "string",
477
+ "minLength": 1,
478
+ "pattern": "^.+$"
479
+ },
480
+ "required": {
481
+ "type": "boolean"
482
+ },
483
+ "statusAtLinkTime": {
484
+ "type": "string",
485
+ "minLength": 1
486
+ }
487
+ },
488
+ "required": [
489
+ "rel",
490
+ "artifactKind",
491
+ "artifactId",
492
+ "path",
493
+ "required",
494
+ "statusAtLinkTime"
495
+ ]
496
+ },
497
+ "summary": {
498
+ "type": "string",
499
+ "minLength": 1
500
+ },
501
+ "result": {
502
+ "type": "string",
503
+ "minLength": 1,
504
+ "enum": [
505
+ "pass",
506
+ "fail",
507
+ "blocked",
508
+ "advisory",
509
+ "skipped"
510
+ ]
511
+ },
512
+ "blocking": {
513
+ "type": "boolean"
514
+ }
515
+ },
516
+ "required": [
517
+ "evidencePacketRef",
518
+ "summary",
519
+ "result",
520
+ "blocking"
521
+ ]
522
+ },
523
+ "minItems": 1
524
+ },
525
+ "contextPreservation": {
526
+ "type": "object",
527
+ "additionalProperties": false,
528
+ "properties": {
529
+ "contextHeaderRefs": {
530
+ "type": "array",
531
+ "items": {
532
+ "type": "object",
533
+ "additionalProperties": false,
534
+ "properties": {
535
+ "rel": {
536
+ "type": "string",
537
+ "minLength": 1,
538
+ "enum": [
539
+ "raw_intent",
540
+ "derived_from",
541
+ "supersedes",
542
+ "superseded_by",
543
+ "implements",
544
+ "verifies",
545
+ "evidence_for",
546
+ "consumed_by",
547
+ "produced_by",
548
+ "context_for",
549
+ "registry_entry_for",
550
+ "manifest_for",
551
+ "verification_delta_of",
552
+ "build_result_of",
553
+ "ship_packet_of"
554
+ ]
555
+ },
556
+ "artifactKind": {
557
+ "type": "string",
558
+ "minLength": 1,
559
+ "enum": [
560
+ "work_brief",
561
+ "implementation_plan",
562
+ "verification_delta",
563
+ "build_result",
564
+ "ship_packet",
565
+ "evidence_packet",
566
+ "agent_registry_entry",
567
+ "context_file_header",
568
+ "schematic_manifest",
569
+ "skill_manifest"
570
+ ]
571
+ },
572
+ "artifactId": {
573
+ "type": "string",
574
+ "minLength": 1,
575
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
576
+ },
577
+ "path": {
578
+ "type": "string",
579
+ "minLength": 1,
580
+ "pattern": "^.+$"
581
+ },
582
+ "required": {
583
+ "type": "boolean"
584
+ },
585
+ "statusAtLinkTime": {
586
+ "type": "string",
587
+ "minLength": 1
588
+ }
589
+ },
590
+ "required": [
591
+ "rel",
592
+ "artifactKind",
593
+ "artifactId",
594
+ "path",
595
+ "required",
596
+ "statusAtLinkTime"
597
+ ]
598
+ }
599
+ },
600
+ "driftCheckEvidenceRefs": {
601
+ "type": "array",
602
+ "items": {
603
+ "type": "object",
604
+ "additionalProperties": false,
605
+ "properties": {
606
+ "rel": {
607
+ "type": "string",
608
+ "minLength": 1,
609
+ "enum": [
610
+ "raw_intent",
611
+ "derived_from",
612
+ "supersedes",
613
+ "superseded_by",
614
+ "implements",
615
+ "verifies",
616
+ "evidence_for",
617
+ "consumed_by",
618
+ "produced_by",
619
+ "context_for",
620
+ "registry_entry_for",
621
+ "manifest_for",
622
+ "verification_delta_of",
623
+ "build_result_of",
624
+ "ship_packet_of"
625
+ ]
626
+ },
627
+ "artifactKind": {
628
+ "type": "string",
629
+ "minLength": 1,
630
+ "enum": [
631
+ "work_brief",
632
+ "implementation_plan",
633
+ "verification_delta",
634
+ "build_result",
635
+ "ship_packet",
636
+ "evidence_packet",
637
+ "agent_registry_entry",
638
+ "context_file_header",
639
+ "schematic_manifest",
640
+ "skill_manifest"
641
+ ]
642
+ },
643
+ "artifactId": {
644
+ "type": "string",
645
+ "minLength": 1,
646
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
647
+ },
648
+ "path": {
649
+ "type": "string",
650
+ "minLength": 1,
651
+ "pattern": "^.+$"
652
+ },
653
+ "required": {
654
+ "type": "boolean"
655
+ },
656
+ "statusAtLinkTime": {
657
+ "type": "string",
658
+ "minLength": 1
659
+ }
660
+ },
661
+ "required": [
662
+ "rel",
663
+ "artifactKind",
664
+ "artifactId",
665
+ "path",
666
+ "required",
667
+ "statusAtLinkTime"
668
+ ]
669
+ }
670
+ },
671
+ "updateStatus": {
672
+ "type": "string",
673
+ "minLength": 1,
674
+ "enum": [
675
+ "updated",
676
+ "clean",
677
+ "blocked"
678
+ ]
679
+ }
680
+ },
681
+ "required": [
682
+ "contextHeaderRefs",
683
+ "driftCheckEvidenceRefs",
684
+ "updateStatus"
685
+ ]
686
+ },
687
+ "commitPreparation": {
688
+ "type": "object",
689
+ "additionalProperties": false,
690
+ "properties": {
691
+ "suggestedCommitMessage": {
692
+ "type": "string",
693
+ "minLength": 1
694
+ },
695
+ "commitBody": {
696
+ "type": "string"
697
+ },
698
+ "commitPerformedByAgent": {
699
+ "type": "boolean",
700
+ "const": false
701
+ }
702
+ },
703
+ "required": [
704
+ "suggestedCommitMessage",
705
+ "commitPerformedByAgent"
706
+ ]
707
+ },
708
+ "prPreparation": {
709
+ "type": "object",
710
+ "additionalProperties": false,
711
+ "properties": {
712
+ "suggestedTitle": {
713
+ "type": "string",
714
+ "minLength": 1
715
+ },
716
+ "suggestedBody": {
717
+ "type": "string",
718
+ "minLength": 1
719
+ },
720
+ "reviewerNotes": {
721
+ "type": "array",
722
+ "items": {
723
+ "type": "string",
724
+ "minLength": 1
725
+ }
726
+ },
727
+ "prOpenedByAgent": {
728
+ "type": "boolean",
729
+ "const": false
730
+ }
731
+ },
732
+ "required": [
733
+ "suggestedTitle",
734
+ "suggestedBody",
735
+ "reviewerNotes",
736
+ "prOpenedByAgent"
737
+ ]
738
+ },
739
+ "releaseOrMigrationNotes": {
740
+ "type": "array",
741
+ "items": {
742
+ "type": "object",
743
+ "additionalProperties": false,
744
+ "properties": {
745
+ "note": {
746
+ "type": "string",
747
+ "minLength": 1
748
+ },
749
+ "rationale": {
750
+ "type": "string",
751
+ "minLength": 1
752
+ }
753
+ },
754
+ "required": [
755
+ "note",
756
+ "rationale"
757
+ ]
758
+ }
759
+ },
760
+ "followUps": {
761
+ "type": "array",
762
+ "items": {
763
+ "type": "object",
764
+ "additionalProperties": false,
765
+ "properties": {
766
+ "owner": {
767
+ "type": "string",
768
+ "minLength": 1
769
+ },
770
+ "description": {
771
+ "type": "string",
772
+ "minLength": 1
773
+ },
774
+ "blocking": {
775
+ "type": "boolean"
776
+ }
777
+ },
778
+ "required": [
779
+ "owner",
780
+ "description",
781
+ "blocking"
782
+ ]
783
+ }
784
+ },
785
+ "noPushWithoutApproval": {
786
+ "type": "boolean",
787
+ "const": true
788
+ },
789
+ "operatorApprovalRef": {
790
+ "type": "object",
791
+ "additionalProperties": false,
792
+ "properties": {
793
+ "rel": {
794
+ "type": "string",
795
+ "minLength": 1,
796
+ "enum": [
797
+ "raw_intent",
798
+ "derived_from",
799
+ "supersedes",
800
+ "superseded_by",
801
+ "implements",
802
+ "verifies",
803
+ "evidence_for",
804
+ "consumed_by",
805
+ "produced_by",
806
+ "context_for",
807
+ "registry_entry_for",
808
+ "manifest_for",
809
+ "verification_delta_of",
810
+ "build_result_of",
811
+ "ship_packet_of"
812
+ ]
813
+ },
814
+ "artifactKind": {
815
+ "type": "string",
816
+ "minLength": 1,
817
+ "enum": [
818
+ "work_brief",
819
+ "implementation_plan",
820
+ "verification_delta",
821
+ "build_result",
822
+ "ship_packet",
823
+ "evidence_packet",
824
+ "agent_registry_entry",
825
+ "context_file_header",
826
+ "schematic_manifest",
827
+ "skill_manifest"
828
+ ]
829
+ },
830
+ "artifactId": {
831
+ "type": "string",
832
+ "minLength": 1,
833
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
834
+ },
835
+ "path": {
836
+ "type": "string",
837
+ "minLength": 1,
838
+ "pattern": "^.+$"
839
+ },
840
+ "required": {
841
+ "type": "boolean"
842
+ },
843
+ "statusAtLinkTime": {
844
+ "type": "string",
845
+ "minLength": 1
846
+ }
847
+ },
848
+ "required": [
849
+ "rel",
850
+ "artifactKind",
851
+ "artifactId",
852
+ "path",
853
+ "required",
854
+ "statusAtLinkTime"
855
+ ]
856
+ },
857
+ "rollbackNotes": {
858
+ "type": "string",
859
+ "minLength": 1
860
+ },
861
+ "knownAdvisoryWarnings": {
862
+ "type": "array",
863
+ "items": {
864
+ "type": "string",
865
+ "minLength": 1
866
+ }
867
+ },
868
+ "artifactBundleRefs": {
869
+ "type": "array",
870
+ "items": {
871
+ "type": "object",
872
+ "additionalProperties": false,
873
+ "properties": {
874
+ "rel": {
875
+ "type": "string",
876
+ "minLength": 1,
877
+ "enum": [
878
+ "raw_intent",
879
+ "derived_from",
880
+ "supersedes",
881
+ "superseded_by",
882
+ "implements",
883
+ "verifies",
884
+ "evidence_for",
885
+ "consumed_by",
886
+ "produced_by",
887
+ "context_for",
888
+ "registry_entry_for",
889
+ "manifest_for",
890
+ "verification_delta_of",
891
+ "build_result_of",
892
+ "ship_packet_of"
893
+ ]
894
+ },
895
+ "artifactKind": {
896
+ "type": "string",
897
+ "minLength": 1,
898
+ "enum": [
899
+ "work_brief",
900
+ "implementation_plan",
901
+ "verification_delta",
902
+ "build_result",
903
+ "ship_packet",
904
+ "evidence_packet",
905
+ "agent_registry_entry",
906
+ "context_file_header",
907
+ "schematic_manifest",
908
+ "skill_manifest"
909
+ ]
910
+ },
911
+ "artifactId": {
912
+ "type": "string",
913
+ "minLength": 1,
914
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
915
+ },
916
+ "path": {
917
+ "type": "string",
918
+ "minLength": 1,
919
+ "pattern": "^.+$"
920
+ },
921
+ "required": {
922
+ "type": "boolean"
923
+ },
924
+ "statusAtLinkTime": {
925
+ "type": "string",
926
+ "minLength": 1
927
+ }
928
+ },
929
+ "required": [
930
+ "rel",
931
+ "artifactKind",
932
+ "artifactId",
933
+ "path",
934
+ "required",
935
+ "statusAtLinkTime"
936
+ ]
937
+ }
938
+ }
939
+ },
940
+ "required": [
941
+ "schemaVersion",
942
+ "artifactKind",
943
+ "artifactId",
944
+ "title",
945
+ "createdAt",
946
+ "updatedAt",
947
+ "producer",
948
+ "status",
949
+ "ownership",
950
+ "links",
951
+ "extensions",
952
+ "buildResultRef",
953
+ "finalVerification",
954
+ "contextPreservation",
955
+ "commitPreparation",
956
+ "prPreparation",
957
+ "releaseOrMigrationNotes",
958
+ "followUps",
959
+ "noPushWithoutApproval"
960
+ ]
961
+ }