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