@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,676 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://schemas.vibe-engineer.dev/artifacts/v1/verification-delta.schema.json",
4
+ "title": "VerificationDeltaV1",
5
+ "description": "Canonical DL-02 VerificationDeltaV1 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": "verification_delta",
19
+ "enum": [
20
+ "verification_delta"
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
+ "complete",
90
+ "blocked",
91
+ "superseded"
92
+ ]
93
+ },
94
+ "ownership": {
95
+ "type": "object",
96
+ "additionalProperties": false,
97
+ "properties": {
98
+ "ownerLane": {
99
+ "type": "string",
100
+ "minLength": 1
101
+ },
102
+ "ownedWritePaths": {
103
+ "type": "array",
104
+ "items": {
105
+ "type": "string",
106
+ "minLength": 1,
107
+ "pattern": "^.+$"
108
+ },
109
+ "minItems": 1
110
+ },
111
+ "readOnlyPaths": {
112
+ "type": "array",
113
+ "items": {
114
+ "type": "string",
115
+ "minLength": 1,
116
+ "pattern": "^.+$"
117
+ }
118
+ },
119
+ "untouchablePaths": {
120
+ "type": "array",
121
+ "items": {
122
+ "type": "string",
123
+ "minLength": 1,
124
+ "pattern": "^.+$"
125
+ }
126
+ },
127
+ "concurrencyNotes": {
128
+ "type": "string",
129
+ "minLength": 1
130
+ },
131
+ "handoffPolicy": {
132
+ "type": "string",
133
+ "minLength": 1
134
+ }
135
+ },
136
+ "required": [
137
+ "ownerLane",
138
+ "ownedWritePaths",
139
+ "readOnlyPaths",
140
+ "untouchablePaths",
141
+ "concurrencyNotes"
142
+ ]
143
+ },
144
+ "links": {
145
+ "type": "array",
146
+ "items": {
147
+ "type": "object",
148
+ "additionalProperties": false,
149
+ "properties": {
150
+ "rel": {
151
+ "type": "string",
152
+ "minLength": 1,
153
+ "enum": [
154
+ "raw_intent",
155
+ "derived_from",
156
+ "supersedes",
157
+ "superseded_by",
158
+ "implements",
159
+ "verifies",
160
+ "evidence_for",
161
+ "consumed_by",
162
+ "produced_by",
163
+ "context_for",
164
+ "registry_entry_for",
165
+ "manifest_for",
166
+ "verification_delta_of",
167
+ "build_result_of",
168
+ "ship_packet_of"
169
+ ]
170
+ },
171
+ "artifactKind": {
172
+ "type": "string",
173
+ "minLength": 1,
174
+ "enum": [
175
+ "work_brief",
176
+ "implementation_plan",
177
+ "verification_delta",
178
+ "build_result",
179
+ "ship_packet",
180
+ "evidence_packet",
181
+ "agent_registry_entry",
182
+ "context_file_header",
183
+ "schematic_manifest",
184
+ "skill_manifest"
185
+ ]
186
+ },
187
+ "artifactId": {
188
+ "type": "string",
189
+ "minLength": 1,
190
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
191
+ },
192
+ "path": {
193
+ "type": "string",
194
+ "minLength": 1,
195
+ "pattern": "^.+$"
196
+ },
197
+ "required": {
198
+ "type": "boolean"
199
+ },
200
+ "statusAtLinkTime": {
201
+ "type": "string",
202
+ "minLength": 1
203
+ }
204
+ },
205
+ "required": [
206
+ "rel",
207
+ "artifactKind",
208
+ "artifactId",
209
+ "path",
210
+ "required",
211
+ "statusAtLinkTime"
212
+ ]
213
+ },
214
+ "minItems": 1
215
+ },
216
+ "extensions": {
217
+ "type": "object",
218
+ "propertyNames": {
219
+ "pattern": "^[a-z][a-z0-9]*(\\.[a-z0-9][a-z0-9-]*)+$|^@[a-z0-9][a-z0-9-]*/[a-z0-9][a-z0-9-]*$"
220
+ },
221
+ "additionalProperties": {
222
+ "type": "object",
223
+ "required": [
224
+ "schemaVersion"
225
+ ],
226
+ "properties": {
227
+ "schemaVersion": {
228
+ "type": "string",
229
+ "minLength": 1,
230
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
231
+ }
232
+ },
233
+ "additionalProperties": true
234
+ }
235
+ },
236
+ "description": {
237
+ "type": "string"
238
+ },
239
+ "tags": {
240
+ "type": "array",
241
+ "items": {
242
+ "type": "string",
243
+ "minLength": 1
244
+ }
245
+ },
246
+ "sourceRefs": {
247
+ "type": "array",
248
+ "items": {
249
+ "type": "object",
250
+ "additionalProperties": false,
251
+ "properties": {
252
+ "kind": {
253
+ "type": "string",
254
+ "minLength": 1,
255
+ "enum": [
256
+ "source_doc",
257
+ "prompt",
258
+ "issue",
259
+ "url",
260
+ "artifact",
261
+ "raw_intent"
262
+ ]
263
+ },
264
+ "ref": {
265
+ "type": "string",
266
+ "minLength": 1
267
+ }
268
+ },
269
+ "required": [
270
+ "kind",
271
+ "ref"
272
+ ]
273
+ }
274
+ },
275
+ "approvedBy": {
276
+ "type": "object",
277
+ "additionalProperties": false,
278
+ "properties": {
279
+ "producer": {
280
+ "type": "object",
281
+ "additionalProperties": false,
282
+ "properties": {
283
+ "kind": {
284
+ "type": "string",
285
+ "minLength": 1,
286
+ "enum": [
287
+ "skill",
288
+ "agent",
289
+ "cli",
290
+ "schematic",
291
+ "verification_runner",
292
+ "human_operator",
293
+ "system"
294
+ ]
295
+ },
296
+ "id": {
297
+ "type": "string",
298
+ "minLength": 1,
299
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
300
+ },
301
+ "name": {
302
+ "type": "string",
303
+ "minLength": 1
304
+ },
305
+ "version": {
306
+ "type": "string",
307
+ "minLength": 1,
308
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
309
+ },
310
+ "runId": {
311
+ "type": "string",
312
+ "minLength": 1,
313
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
314
+ }
315
+ },
316
+ "required": [
317
+ "kind",
318
+ "id",
319
+ "name"
320
+ ]
321
+ },
322
+ "approvedAt": {
323
+ "type": "string",
324
+ "minLength": 1,
325
+ "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$"
326
+ }
327
+ },
328
+ "required": [
329
+ "producer",
330
+ "approvedAt"
331
+ ]
332
+ },
333
+ "supersessionReason": {
334
+ "type": "string"
335
+ },
336
+ "retention": {
337
+ "type": "object",
338
+ "additionalProperties": false,
339
+ "properties": {
340
+ "policy": {
341
+ "type": "string",
342
+ "minLength": 1
343
+ },
344
+ "reason": {
345
+ "type": "string",
346
+ "minLength": 1
347
+ }
348
+ },
349
+ "required": [
350
+ "policy",
351
+ "reason"
352
+ ]
353
+ },
354
+ "summary": {
355
+ "type": "string",
356
+ "minLength": 1
357
+ },
358
+ "implementationPlanRef": {
359
+ "type": "object",
360
+ "additionalProperties": false,
361
+ "properties": {
362
+ "rel": {
363
+ "type": "string",
364
+ "minLength": 1,
365
+ "enum": [
366
+ "raw_intent",
367
+ "derived_from",
368
+ "supersedes",
369
+ "superseded_by",
370
+ "implements",
371
+ "verifies",
372
+ "evidence_for",
373
+ "consumed_by",
374
+ "produced_by",
375
+ "context_for",
376
+ "registry_entry_for",
377
+ "manifest_for",
378
+ "verification_delta_of",
379
+ "build_result_of",
380
+ "ship_packet_of"
381
+ ]
382
+ },
383
+ "artifactKind": {
384
+ "type": "string",
385
+ "minLength": 1,
386
+ "enum": [
387
+ "work_brief",
388
+ "implementation_plan",
389
+ "verification_delta",
390
+ "build_result",
391
+ "ship_packet",
392
+ "evidence_packet",
393
+ "agent_registry_entry",
394
+ "context_file_header",
395
+ "schematic_manifest",
396
+ "skill_manifest"
397
+ ]
398
+ },
399
+ "artifactId": {
400
+ "type": "string",
401
+ "minLength": 1,
402
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
403
+ },
404
+ "path": {
405
+ "type": "string",
406
+ "minLength": 1,
407
+ "pattern": "^.+$"
408
+ },
409
+ "required": {
410
+ "type": "boolean"
411
+ },
412
+ "statusAtLinkTime": {
413
+ "type": "string",
414
+ "minLength": 1
415
+ }
416
+ },
417
+ "required": [
418
+ "rel",
419
+ "artifactKind",
420
+ "artifactId",
421
+ "path",
422
+ "required",
423
+ "statusAtLinkTime"
424
+ ]
425
+ },
426
+ "sensitiveAreas": {
427
+ "type": "array",
428
+ "items": {
429
+ "type": "string",
430
+ "minLength": 1
431
+ },
432
+ "minItems": 1
433
+ },
434
+ "catalogVersion": {
435
+ "type": "string",
436
+ "minLength": 1,
437
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
438
+ },
439
+ "requiredItems": {
440
+ "type": "array",
441
+ "items": {
442
+ "type": "object",
443
+ "additionalProperties": false,
444
+ "properties": {
445
+ "id": {
446
+ "type": "string",
447
+ "minLength": 1,
448
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
449
+ },
450
+ "layer": {
451
+ "type": "string",
452
+ "minLength": 1,
453
+ "enum": [
454
+ "safety_hooks",
455
+ "typecheck",
456
+ "lint_format",
457
+ "mechanical_gate",
458
+ "unit",
459
+ "integration",
460
+ "contract_adapter",
461
+ "e2e",
462
+ "ui_verification",
463
+ "ai_eval",
464
+ "build_package",
465
+ "context_drift",
466
+ "observability",
467
+ "advisory_review",
468
+ "final_dod",
469
+ "schema_validation"
470
+ ]
471
+ },
472
+ "action": {
473
+ "type": "string",
474
+ "minLength": 1,
475
+ "enum": [
476
+ "add",
477
+ "update",
478
+ "reuse",
479
+ "not_applicable",
480
+ "blocked"
481
+ ]
482
+ },
483
+ "rationale": {
484
+ "type": "string",
485
+ "minLength": 1
486
+ },
487
+ "expectedArtifacts": {
488
+ "type": "array",
489
+ "items": {
490
+ "type": "string",
491
+ "minLength": 1,
492
+ "pattern": "^.+$"
493
+ },
494
+ "minItems": 1
495
+ },
496
+ "blocking": {
497
+ "type": "boolean"
498
+ },
499
+ "validationOwner": {
500
+ "type": "string",
501
+ "minLength": 1
502
+ },
503
+ "fixerOwner": {
504
+ "type": "string",
505
+ "minLength": 1
506
+ },
507
+ "evidenceRequired": {
508
+ "type": "array",
509
+ "items": {
510
+ "type": "object",
511
+ "additionalProperties": false,
512
+ "properties": {
513
+ "kind": {
514
+ "type": "string",
515
+ "minLength": 1,
516
+ "enum": [
517
+ "evidence_packet",
518
+ "test_report",
519
+ "command_log",
520
+ "screenshot",
521
+ "trace",
522
+ "metric",
523
+ "context_header"
524
+ ]
525
+ },
526
+ "description": {
527
+ "type": "string",
528
+ "minLength": 1
529
+ },
530
+ "blocking": {
531
+ "type": "boolean"
532
+ }
533
+ },
534
+ "required": [
535
+ "kind",
536
+ "description",
537
+ "blocking"
538
+ ]
539
+ },
540
+ "minItems": 1
541
+ },
542
+ "blockedBy": {
543
+ "type": "string",
544
+ "minLength": 1
545
+ },
546
+ "unblockCondition": {
547
+ "type": "string",
548
+ "minLength": 1
549
+ }
550
+ },
551
+ "required": [
552
+ "id",
553
+ "layer",
554
+ "action",
555
+ "rationale",
556
+ "expectedArtifacts",
557
+ "blocking",
558
+ "validationOwner",
559
+ "fixerOwner",
560
+ "evidenceRequired"
561
+ ]
562
+ },
563
+ "minItems": 1
564
+ },
565
+ "mechanicalGateImpacts": {
566
+ "type": "array",
567
+ "items": {
568
+ "type": "string",
569
+ "minLength": 1
570
+ }
571
+ },
572
+ "advisoryReviewItems": {
573
+ "type": "array",
574
+ "items": {
575
+ "type": "string",
576
+ "minLength": 1
577
+ }
578
+ },
579
+ "rerunHints": {
580
+ "type": "array",
581
+ "items": {
582
+ "type": "string",
583
+ "minLength": 1
584
+ }
585
+ },
586
+ "riskLinks": {
587
+ "type": "array",
588
+ "items": {
589
+ "type": "object",
590
+ "additionalProperties": false,
591
+ "properties": {
592
+ "rel": {
593
+ "type": "string",
594
+ "minLength": 1,
595
+ "enum": [
596
+ "raw_intent",
597
+ "derived_from",
598
+ "supersedes",
599
+ "superseded_by",
600
+ "implements",
601
+ "verifies",
602
+ "evidence_for",
603
+ "consumed_by",
604
+ "produced_by",
605
+ "context_for",
606
+ "registry_entry_for",
607
+ "manifest_for",
608
+ "verification_delta_of",
609
+ "build_result_of",
610
+ "ship_packet_of"
611
+ ]
612
+ },
613
+ "artifactKind": {
614
+ "type": "string",
615
+ "minLength": 1,
616
+ "enum": [
617
+ "work_brief",
618
+ "implementation_plan",
619
+ "verification_delta",
620
+ "build_result",
621
+ "ship_packet",
622
+ "evidence_packet",
623
+ "agent_registry_entry",
624
+ "context_file_header",
625
+ "schematic_manifest",
626
+ "skill_manifest"
627
+ ]
628
+ },
629
+ "artifactId": {
630
+ "type": "string",
631
+ "minLength": 1,
632
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
633
+ },
634
+ "path": {
635
+ "type": "string",
636
+ "minLength": 1,
637
+ "pattern": "^.+$"
638
+ },
639
+ "required": {
640
+ "type": "boolean"
641
+ },
642
+ "statusAtLinkTime": {
643
+ "type": "string",
644
+ "minLength": 1
645
+ }
646
+ },
647
+ "required": [
648
+ "rel",
649
+ "artifactKind",
650
+ "artifactId",
651
+ "path",
652
+ "required",
653
+ "statusAtLinkTime"
654
+ ]
655
+ }
656
+ }
657
+ },
658
+ "required": [
659
+ "schemaVersion",
660
+ "artifactKind",
661
+ "artifactId",
662
+ "title",
663
+ "createdAt",
664
+ "updatedAt",
665
+ "producer",
666
+ "status",
667
+ "ownership",
668
+ "links",
669
+ "extensions",
670
+ "summary",
671
+ "implementationPlanRef",
672
+ "sensitiveAreas",
673
+ "catalogVersion",
674
+ "requiredItems"
675
+ ]
676
+ }