@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,845 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://schemas.vibe-engineer.dev/artifacts/v1/agent-registry-entry.schema.json",
4
+ "title": "AgentRegistryEntryV1",
5
+ "description": "Canonical DL-02 AgentRegistryEntryV1 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": "agent_registry_entry",
19
+ "enum": [
20
+ "agent_registry_entry"
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
+ "active",
90
+ "disabled",
91
+ "deprecated",
92
+ "experimental"
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
+ "agentId": {
356
+ "type": "string",
357
+ "minLength": 1,
358
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
359
+ },
360
+ "displayName": {
361
+ "type": "string",
362
+ "minLength": 1
363
+ },
364
+ "agentType": {
365
+ "type": "string",
366
+ "minLength": 1,
367
+ "enum": [
368
+ "orchestrator",
369
+ "specialist",
370
+ "validator",
371
+ "fixer",
372
+ "reviewer",
373
+ "meta",
374
+ "skill_adapter"
375
+ ]
376
+ },
377
+ "purpose": {
378
+ "type": "string",
379
+ "minLength": 1
380
+ },
381
+ "triggers": {
382
+ "type": "array",
383
+ "items": {
384
+ "type": "object",
385
+ "additionalProperties": false,
386
+ "properties": {
387
+ "event": {
388
+ "type": "string",
389
+ "minLength": 1
390
+ },
391
+ "description": {
392
+ "type": "string",
393
+ "minLength": 1
394
+ }
395
+ },
396
+ "required": [
397
+ "event",
398
+ "description"
399
+ ]
400
+ },
401
+ "minItems": 1
402
+ },
403
+ "inputSchemas": {
404
+ "type": "array",
405
+ "items": {
406
+ "type": "object",
407
+ "additionalProperties": false,
408
+ "properties": {
409
+ "schemaId": {
410
+ "type": "string",
411
+ "minLength": 1,
412
+ "pattern": "^https://schemas\\.vibe-engineer\\.dev/.+\\.schema\\.json$"
413
+ },
414
+ "schemaVersion": {
415
+ "type": "string",
416
+ "minLength": 1,
417
+ "const": "1.0.0",
418
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
419
+ },
420
+ "artifactKind": {
421
+ "type": "string",
422
+ "minLength": 1,
423
+ "enum": [
424
+ "work_brief",
425
+ "implementation_plan",
426
+ "verification_delta",
427
+ "build_result",
428
+ "ship_packet",
429
+ "evidence_packet",
430
+ "agent_registry_entry",
431
+ "context_file_header",
432
+ "schematic_manifest",
433
+ "skill_manifest"
434
+ ]
435
+ }
436
+ },
437
+ "required": [
438
+ "schemaId",
439
+ "schemaVersion",
440
+ "artifactKind"
441
+ ]
442
+ },
443
+ "minItems": 1
444
+ },
445
+ "outputSchemas": {
446
+ "type": "array",
447
+ "items": {
448
+ "type": "object",
449
+ "additionalProperties": false,
450
+ "properties": {
451
+ "schemaId": {
452
+ "type": "string",
453
+ "minLength": 1,
454
+ "pattern": "^https://schemas\\.vibe-engineer\\.dev/.+\\.schema\\.json$"
455
+ },
456
+ "schemaVersion": {
457
+ "type": "string",
458
+ "minLength": 1,
459
+ "const": "1.0.0",
460
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
461
+ },
462
+ "artifactKind": {
463
+ "type": "string",
464
+ "minLength": 1,
465
+ "enum": [
466
+ "work_brief",
467
+ "implementation_plan",
468
+ "verification_delta",
469
+ "build_result",
470
+ "ship_packet",
471
+ "evidence_packet",
472
+ "agent_registry_entry",
473
+ "context_file_header",
474
+ "schematic_manifest",
475
+ "skill_manifest"
476
+ ]
477
+ }
478
+ },
479
+ "required": [
480
+ "schemaId",
481
+ "schemaVersion",
482
+ "artifactKind"
483
+ ]
484
+ },
485
+ "minItems": 1
486
+ },
487
+ "allowedTools": {
488
+ "type": "array",
489
+ "items": {
490
+ "type": "string",
491
+ "minLength": 1
492
+ },
493
+ "minItems": 1
494
+ },
495
+ "forbiddenActions": {
496
+ "type": "array",
497
+ "items": {
498
+ "type": "string",
499
+ "minLength": 1
500
+ },
501
+ "minItems": 1
502
+ },
503
+ "contextRequirements": {
504
+ "type": "array",
505
+ "items": {
506
+ "type": "string",
507
+ "minLength": 1
508
+ }
509
+ },
510
+ "expectedArtifactPaths": {
511
+ "type": "array",
512
+ "items": {
513
+ "type": "string",
514
+ "minLength": 1,
515
+ "pattern": "^.+$"
516
+ }
517
+ },
518
+ "safety": {
519
+ "type": "object",
520
+ "additionalProperties": false,
521
+ "properties": {
522
+ "parallelSafe": {
523
+ "type": "boolean"
524
+ },
525
+ "writesAllowed": {
526
+ "type": "boolean"
527
+ },
528
+ "requiresApprovalFor": {
529
+ "type": "array",
530
+ "items": {
531
+ "type": "string",
532
+ "minLength": 1
533
+ }
534
+ },
535
+ "maxIterations": {
536
+ "type": "integer"
537
+ }
538
+ },
539
+ "required": [
540
+ "parallelSafe",
541
+ "writesAllowed",
542
+ "requiresApprovalFor"
543
+ ]
544
+ },
545
+ "validatorRefs": {
546
+ "type": "array",
547
+ "items": {
548
+ "type": "object",
549
+ "additionalProperties": false,
550
+ "properties": {
551
+ "rel": {
552
+ "type": "string",
553
+ "minLength": 1,
554
+ "enum": [
555
+ "raw_intent",
556
+ "derived_from",
557
+ "supersedes",
558
+ "superseded_by",
559
+ "implements",
560
+ "verifies",
561
+ "evidence_for",
562
+ "consumed_by",
563
+ "produced_by",
564
+ "context_for",
565
+ "registry_entry_for",
566
+ "manifest_for",
567
+ "verification_delta_of",
568
+ "build_result_of",
569
+ "ship_packet_of"
570
+ ]
571
+ },
572
+ "artifactKind": {
573
+ "type": "string",
574
+ "minLength": 1,
575
+ "enum": [
576
+ "work_brief",
577
+ "implementation_plan",
578
+ "verification_delta",
579
+ "build_result",
580
+ "ship_packet",
581
+ "evidence_packet",
582
+ "agent_registry_entry",
583
+ "context_file_header",
584
+ "schematic_manifest",
585
+ "skill_manifest"
586
+ ]
587
+ },
588
+ "artifactId": {
589
+ "type": "string",
590
+ "minLength": 1,
591
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
592
+ },
593
+ "path": {
594
+ "type": "string",
595
+ "minLength": 1,
596
+ "pattern": "^.+$"
597
+ },
598
+ "required": {
599
+ "type": "boolean"
600
+ },
601
+ "statusAtLinkTime": {
602
+ "type": "string",
603
+ "minLength": 1
604
+ }
605
+ },
606
+ "required": [
607
+ "rel",
608
+ "artifactKind",
609
+ "artifactId",
610
+ "path",
611
+ "required",
612
+ "statusAtLinkTime"
613
+ ]
614
+ }
615
+ },
616
+ "fixerRefs": {
617
+ "type": "array",
618
+ "items": {
619
+ "type": "object",
620
+ "additionalProperties": false,
621
+ "properties": {
622
+ "rel": {
623
+ "type": "string",
624
+ "minLength": 1,
625
+ "enum": [
626
+ "raw_intent",
627
+ "derived_from",
628
+ "supersedes",
629
+ "superseded_by",
630
+ "implements",
631
+ "verifies",
632
+ "evidence_for",
633
+ "consumed_by",
634
+ "produced_by",
635
+ "context_for",
636
+ "registry_entry_for",
637
+ "manifest_for",
638
+ "verification_delta_of",
639
+ "build_result_of",
640
+ "ship_packet_of"
641
+ ]
642
+ },
643
+ "artifactKind": {
644
+ "type": "string",
645
+ "minLength": 1,
646
+ "enum": [
647
+ "work_brief",
648
+ "implementation_plan",
649
+ "verification_delta",
650
+ "build_result",
651
+ "ship_packet",
652
+ "evidence_packet",
653
+ "agent_registry_entry",
654
+ "context_file_header",
655
+ "schematic_manifest",
656
+ "skill_manifest"
657
+ ]
658
+ },
659
+ "artifactId": {
660
+ "type": "string",
661
+ "minLength": 1,
662
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
663
+ },
664
+ "path": {
665
+ "type": "string",
666
+ "minLength": 1,
667
+ "pattern": "^.+$"
668
+ },
669
+ "required": {
670
+ "type": "boolean"
671
+ },
672
+ "statusAtLinkTime": {
673
+ "type": "string",
674
+ "minLength": 1
675
+ }
676
+ },
677
+ "required": [
678
+ "rel",
679
+ "artifactKind",
680
+ "artifactId",
681
+ "path",
682
+ "required",
683
+ "statusAtLinkTime"
684
+ ]
685
+ }
686
+ },
687
+ "maturity": {
688
+ "type": "string",
689
+ "minLength": 1,
690
+ "enum": [
691
+ "experimental",
692
+ "stable",
693
+ "core"
694
+ ]
695
+ },
696
+ "owner": {
697
+ "type": "string",
698
+ "minLength": 1
699
+ },
700
+ "agentVersion": {
701
+ "type": "string",
702
+ "minLength": 1,
703
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
704
+ },
705
+ "evals": {
706
+ "type": "array",
707
+ "items": {
708
+ "type": "object",
709
+ "additionalProperties": false,
710
+ "properties": {
711
+ "rel": {
712
+ "type": "string",
713
+ "minLength": 1,
714
+ "enum": [
715
+ "raw_intent",
716
+ "derived_from",
717
+ "supersedes",
718
+ "superseded_by",
719
+ "implements",
720
+ "verifies",
721
+ "evidence_for",
722
+ "consumed_by",
723
+ "produced_by",
724
+ "context_for",
725
+ "registry_entry_for",
726
+ "manifest_for",
727
+ "verification_delta_of",
728
+ "build_result_of",
729
+ "ship_packet_of"
730
+ ]
731
+ },
732
+ "artifactKind": {
733
+ "type": "string",
734
+ "minLength": 1,
735
+ "enum": [
736
+ "work_brief",
737
+ "implementation_plan",
738
+ "verification_delta",
739
+ "build_result",
740
+ "ship_packet",
741
+ "evidence_packet",
742
+ "agent_registry_entry",
743
+ "context_file_header",
744
+ "schematic_manifest",
745
+ "skill_manifest"
746
+ ]
747
+ },
748
+ "artifactId": {
749
+ "type": "string",
750
+ "minLength": 1,
751
+ "pattern": "^[a-z0-9][a-z0-9._:-]*$"
752
+ },
753
+ "path": {
754
+ "type": "string",
755
+ "minLength": 1,
756
+ "pattern": "^.+$"
757
+ },
758
+ "required": {
759
+ "type": "boolean"
760
+ },
761
+ "statusAtLinkTime": {
762
+ "type": "string",
763
+ "minLength": 1
764
+ }
765
+ },
766
+ "required": [
767
+ "rel",
768
+ "artifactKind",
769
+ "artifactId",
770
+ "path",
771
+ "required",
772
+ "statusAtLinkTime"
773
+ ]
774
+ }
775
+ },
776
+ "deprecation": {
777
+ "type": [
778
+ "object",
779
+ "null"
780
+ ],
781
+ "additionalProperties": true
782
+ },
783
+ "runtimeCostClass": {
784
+ "type": "string",
785
+ "minLength": 1
786
+ },
787
+ "examples": {
788
+ "type": "array",
789
+ "items": {
790
+ "type": "string",
791
+ "minLength": 1
792
+ }
793
+ },
794
+ "changelog": {
795
+ "type": "array",
796
+ "items": {
797
+ "type": "string",
798
+ "minLength": 1
799
+ }
800
+ },
801
+ "selectedHarnessAdapters": {
802
+ "type": "array",
803
+ "items": {
804
+ "type": "string",
805
+ "minLength": 1
806
+ }
807
+ },
808
+ "domainNeutralityReview": {
809
+ "type": "string",
810
+ "minLength": 1
811
+ }
812
+ },
813
+ "required": [
814
+ "schemaVersion",
815
+ "artifactKind",
816
+ "artifactId",
817
+ "title",
818
+ "createdAt",
819
+ "updatedAt",
820
+ "producer",
821
+ "status",
822
+ "ownership",
823
+ "links",
824
+ "extensions",
825
+ "agentId",
826
+ "displayName",
827
+ "agentType",
828
+ "purpose",
829
+ "triggers",
830
+ "inputSchemas",
831
+ "outputSchemas",
832
+ "allowedTools",
833
+ "forbiddenActions",
834
+ "contextRequirements",
835
+ "expectedArtifactPaths",
836
+ "safety",
837
+ "validatorRefs",
838
+ "fixerRefs",
839
+ "maturity",
840
+ "owner",
841
+ "agentVersion",
842
+ "evals",
843
+ "deprecation"
844
+ ]
845
+ }