forked from microsoft/hve-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarketplace.json
More file actions
1364 lines (1364 loc) · 70.8 KB
/
Copy pathmarketplace.json
File metadata and controls
1364 lines (1364 loc) · 70.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "hve-core",
"metadata": {
"description": "HVE Core",
"version": "3.2.2"
},
"owner": {
"name": "Microsoft"
},
"plugins": [
{
"name": "coding-standards",
"source": {
"source": "github",
"repo": "microsoft/hve-core",
"path": ".github"
},
"description": "Language-specific coding instructions and pre-PR code review agents for bash, Bicep, C#, PowerShell, Python, Rust, and Terraform projects",
"version": "3.2.2",
"author": {
"name": "Microsoft",
"url": "https://www.microsoft.com"
},
"homepage": "https://github.com/microsoft/hve-core",
"repository": "https://github.com/microsoft/hve-core",
"license": "MIT",
"keywords": [
"coding-standards",
"code-review",
"pull-request",
"quality",
"bash",
"bicep",
"csharp",
"powershell",
"python",
"rust",
"terraform",
"uv"
],
"agents": [
"agents/accessibility/accessibility-reviewer.agent.md",
"agents/accessibility/subagents/accessibility-framework-assessor.agent.md",
"agents/accessibility/subagents/accessibility-surface-inventory.agent.md",
"agents/coding-standards/code-review.agent.md",
"agents/coding-standards/subagents/code-review-accessibility.agent.md",
"agents/coding-standards/subagents/code-review-explainer.agent.md",
"agents/coding-standards/subagents/code-review-functional.agent.md",
"agents/coding-standards/subagents/code-review-pr.agent.md",
"agents/coding-standards/subagents/code-review-readiness.agent.md",
"agents/coding-standards/subagents/code-review-security.agent.md",
"agents/coding-standards/subagents/code-review-standards.agent.md",
"agents/coding-standards/subagents/code-review-walkback.agent.md",
"agents/hve-core/subagents/rpi-researcher.agent.md"
],
"rules": [
"instructions/coding-standards/bash/bash.instructions.md",
"instructions/coding-standards/bicep/bicep.instructions.md",
"instructions/coding-standards/code-review/diff-computation.instructions.md",
"instructions/coding-standards/code-review/review-artifacts.instructions.md",
"instructions/coding-standards/csharp/csharp-tests.instructions.md",
"instructions/coding-standards/csharp/csharp.instructions.md",
"instructions/coding-standards/powershell/pester.instructions.md",
"instructions/coding-standards/powershell/powershell.instructions.md",
"instructions/coding-standards/python-script.instructions.md",
"instructions/coding-standards/python-tests.instructions.md",
"instructions/coding-standards/rust/rust-tests.instructions.md",
"instructions/coding-standards/rust/rust.instructions.md",
"instructions/coding-standards/terraform/terraform.instructions.md",
"instructions/coding-standards/uv-projects.instructions.md",
"instructions/shared/hve-core-location.instructions.md",
"instructions/shared/telemetry-overlay.instructions.md"
],
"skills": [
"skills/coding-standards/code-review",
"skills/coding-standards/python-foundational",
"skills/rpi/rpi-research",
"skills/shared/pr-reference",
"skills/shared/telemetry-foundations"
],
"x-hve": {
"componentMaturity": {
"agents/accessibility/accessibility-reviewer.agent.md": "experimental",
"agents/accessibility/subagents/accessibility-framework-assessor.agent.md": "experimental",
"agents/accessibility/subagents/accessibility-surface-inventory.agent.md": "experimental",
"agents/coding-standards/code-review.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-accessibility.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-explainer.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-functional.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-pr.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-readiness.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-security.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-standards.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-walkback.agent.md": "experimental",
"instructions/coding-standards/code-review/diff-computation.instructions.md": "experimental",
"instructions/coding-standards/code-review/review-artifacts.instructions.md": "experimental",
"skills/coding-standards/code-review": "experimental",
"skills/coding-standards/python-foundational": "experimental"
},
"displayName": "HVE Core - Coding Standards",
"documentation": "docs/plugins/coding-standards.md"
}
},
{
"name": "data-science",
"source": {
"source": "github",
"repo": "microsoft/hve-core",
"path": ".github"
},
"description": "Evaluation dataset creation, data specification generation, Jupyter notebooks, and Streamlit dashboards",
"version": "3.2.2",
"author": {
"name": "Microsoft",
"url": "https://www.microsoft.com"
},
"homepage": "https://github.com/microsoft/hve-core",
"repository": "https://github.com/microsoft/hve-core",
"license": "MIT",
"keywords": [
"data",
"jupyter",
"streamlit",
"dashboards",
"visualization",
"data-science",
"rai",
"responsible-ai"
],
"agents": [
"agents/data-science/eval-dataset-creator.agent.md",
"agents/data-science/gen-data-spec.agent.md",
"agents/data-science/gen-jupyter-notebook.agent.md",
"agents/data-science/gen-streamlit-dashboard.agent.md",
"agents/data-science/test-streamlit-dashboard.agent.md",
"agents/hve-core/subagents/rpi-researcher.agent.md",
"agents/rai-planning/rai-planner.agent.md",
"agents/security/security-planner.agent.md",
"agents/security/sssc-planner.agent.md"
],
"commands": [
"prompts/data-science/synth-data-generate.prompt.md",
"prompts/rai-planning/rai-capture.prompt.md",
"prompts/rai-planning/rai-plan-from-prd.prompt.md",
"prompts/rai-planning/rai-plan-from-security-plan.prompt.md"
],
"rules": [
"instructions/coding-standards/python-script.instructions.md",
"instructions/coding-standards/uv-projects.instructions.md",
"instructions/rai-planning/rai-identity.instructions.md",
"instructions/rai-planning/rai-license-posture.instructions.md",
"instructions/shared/hve-core-location.instructions.md",
"instructions/shared/untrusted-content-boundary.instructions.md"
],
"skills": [
"skills/project-planning/rai-planner",
"skills/rai/rai-standards",
"skills/rpi/rpi-research"
],
"x-hve": {
"componentMaturity": {
"agents/rai-planning/rai-planner.agent.md": "experimental",
"agents/security/security-planner.agent.md": "experimental",
"agents/security/sssc-planner.agent.md": "experimental",
"prompts/data-science/synth-data-generate.prompt.md": "experimental",
"prompts/rai-planning/rai-capture.prompt.md": "experimental",
"prompts/rai-planning/rai-plan-from-prd.prompt.md": "experimental",
"prompts/rai-planning/rai-plan-from-security-plan.prompt.md": "experimental",
"instructions/rai-planning/rai-identity.instructions.md": "experimental",
"instructions/rai-planning/rai-license-posture.instructions.md": "experimental",
"skills/project-planning/rai-planner": "experimental",
"skills/rai/rai-standards": "experimental"
},
"displayName": "HVE Core - Data Science",
"documentation": "docs/plugins/data-science.md"
}
},
{
"name": "design-thinking",
"source": {
"source": "github",
"repo": "microsoft/hve-core",
"path": ".github"
},
"description": "Design Thinking coaching identity, quality constraints, and methodology skills for AI-enhanced design thinking across nine methods",
"version": "3.2.2",
"author": {
"name": "Microsoft",
"url": "https://www.microsoft.com"
},
"homepage": "https://github.com/microsoft/hve-core",
"repository": "https://github.com/microsoft/hve-core",
"license": "MIT",
"keywords": [
"design-thinking",
"coaching",
"methodology",
"ux"
],
"agents": [
"agents/design-thinking/dt-coach.agent.md",
"agents/design-thinking/dt-learning-tutor.agent.md",
"agents/hve-core/rpi-agent.agent.md",
"agents/hve-core/subagents/rpi-planner.agent.md",
"agents/hve-core/subagents/rpi-researcher.agent.md"
],
"commands": [
"prompts/design-thinking/dt-canonical-deck.prompt.md",
"prompts/design-thinking/dt-figma-export.prompt.md",
"prompts/design-thinking/dt-handoff-implementation-space.prompt.md",
"prompts/design-thinking/dt-handoff-problem-space.prompt.md",
"prompts/design-thinking/dt-handoff-solution-space.prompt.md",
"prompts/design-thinking/dt-method-04-convergence.prompt.md",
"prompts/design-thinking/dt-method-04-ideation.prompt.md",
"prompts/design-thinking/dt-method-05-concepts.prompt.md",
"prompts/design-thinking/dt-method-05-evaluation.prompt.md",
"prompts/design-thinking/dt-method-06-building.prompt.md",
"prompts/design-thinking/dt-method-06-planning.prompt.md",
"prompts/design-thinking/dt-method-06-testing.prompt.md",
"prompts/design-thinking/dt-method-next.prompt.md",
"prompts/design-thinking/dt-resume-coaching.prompt.md",
"prompts/design-thinking/dt-start-project.prompt.md",
"prompts/hve-core/rpi.prompt.md"
],
"rules": [
"instructions/design-thinking/dt-coach-telemetry.instructions.md",
"instructions/shared/hve-core-location.instructions.md"
],
"skills": [
"skills/design-thinking/dt-coaching-foundation",
"skills/design-thinking/dt-curriculum",
"skills/design-thinking/dt-methods",
"skills/design-thinking/dt-rpi-integration",
"skills/rpi/rpi-implement",
"skills/rpi/rpi-plan",
"skills/rpi/rpi-plan-critique",
"skills/rpi/rpi-research",
"skills/rpi/rpi-review",
"skills/shared/telemetry-foundations"
],
"x-hve": {
"maturity": "preview",
"componentMaturity": {
"agents/design-thinking/dt-coach.agent.md": "preview",
"agents/design-thinking/dt-learning-tutor.agent.md": "preview",
"prompts/design-thinking/dt-canonical-deck.prompt.md": "preview",
"prompts/design-thinking/dt-figma-export.prompt.md": "preview",
"prompts/design-thinking/dt-handoff-implementation-space.prompt.md": "preview",
"prompts/design-thinking/dt-handoff-problem-space.prompt.md": "preview",
"prompts/design-thinking/dt-handoff-solution-space.prompt.md": "preview",
"prompts/design-thinking/dt-method-04-convergence.prompt.md": "preview",
"prompts/design-thinking/dt-method-04-ideation.prompt.md": "preview",
"prompts/design-thinking/dt-method-05-concepts.prompt.md": "preview",
"prompts/design-thinking/dt-method-05-evaluation.prompt.md": "preview",
"prompts/design-thinking/dt-method-06-building.prompt.md": "preview",
"prompts/design-thinking/dt-method-06-planning.prompt.md": "preview",
"prompts/design-thinking/dt-method-06-testing.prompt.md": "preview",
"prompts/design-thinking/dt-method-next.prompt.md": "preview",
"prompts/design-thinking/dt-resume-coaching.prompt.md": "preview",
"prompts/design-thinking/dt-start-project.prompt.md": "preview",
"skills/design-thinking/dt-coaching-foundation": "preview",
"skills/design-thinking/dt-curriculum": "preview",
"skills/design-thinking/dt-methods": "preview",
"skills/design-thinking/dt-rpi-integration": "preview"
},
"displayName": "HVE Core - Design Thinking",
"documentation": "docs/plugins/design-thinking.md"
}
},
{
"name": "experimental",
"source": {
"source": "github",
"repo": "microsoft/hve-core",
"path": ".github"
},
"description": "Experimental and preview artifacts not yet promoted to stable packages",
"version": "3.2.2",
"author": {
"name": "Microsoft",
"url": "https://www.microsoft.com"
},
"homepage": "https://github.com/microsoft/hve-core",
"repository": "https://github.com/microsoft/hve-core",
"license": "MIT",
"keywords": [
"experimental",
"preview"
],
"agents": [
"agents/experimental/experiment-designer.agent.md",
"agents/experimental/pptx.agent.md",
"agents/experimental/subagents/pptx-subagent.agent.md",
"agents/hve-core/subagents/rpi-researcher.agent.md"
],
"commands": [
"prompts/experimental/cspell-config.prompt.md",
"prompts/experimental/graph-research.prompt.md"
],
"rules": [
"instructions/experimental/experiment-designer.instructions.md",
"instructions/experimental/graphify.instructions.md",
"instructions/experimental/mural/mural-bootstrap.instructions.md",
"instructions/experimental/mural/mural-destinations.instructions.md",
"instructions/experimental/mural/mural-human-record.instructions.md",
"instructions/experimental/mural/mural-log-hygiene.instructions.md",
"instructions/experimental/mural/mural-seeding-patterns.instructions.md",
"instructions/experimental/mural/mural-writeback-hygiene.instructions.md",
"instructions/experimental/mural/mural-writing-style.instructions.md",
"instructions/experimental/pptx.instructions.md",
"instructions/shared/hve-core-location.instructions.md"
],
"skills": [
"skills/experimental/caveman",
"skills/experimental/copilot-otel-metrics",
"skills/experimental/customer-card-render",
"skills/experimental/demo-video",
"skills/experimental/mural",
"skills/experimental/powerpoint",
"skills/experimental/tts-voiceover",
"skills/experimental/video-to-gif",
"skills/experimental/vscode-playwright",
"skills/rpi/rpi-research"
],
"x-hve": {
"maturity": "experimental",
"componentMaturity": {
"agents/experimental/experiment-designer.agent.md": "experimental",
"agents/experimental/pptx.agent.md": "experimental",
"agents/experimental/subagents/pptx-subagent.agent.md": "experimental",
"prompts/experimental/cspell-config.prompt.md": "experimental",
"prompts/experimental/graph-research.prompt.md": "experimental",
"instructions/experimental/experiment-designer.instructions.md": "experimental",
"instructions/experimental/graphify.instructions.md": "experimental",
"instructions/experimental/mural/mural-bootstrap.instructions.md": "experimental",
"instructions/experimental/mural/mural-destinations.instructions.md": "experimental",
"instructions/experimental/mural/mural-human-record.instructions.md": "experimental",
"instructions/experimental/mural/mural-log-hygiene.instructions.md": "experimental",
"instructions/experimental/mural/mural-seeding-patterns.instructions.md": "experimental",
"instructions/experimental/mural/mural-writeback-hygiene.instructions.md": "experimental",
"instructions/experimental/mural/mural-writing-style.instructions.md": "experimental",
"instructions/experimental/pptx.instructions.md": "experimental",
"skills/experimental/caveman": "experimental",
"skills/experimental/copilot-otel-metrics": "experimental",
"skills/experimental/customer-card-render": "experimental",
"skills/experimental/demo-video": "experimental",
"skills/experimental/mural": "experimental",
"skills/experimental/powerpoint": "experimental",
"skills/experimental/tts-voiceover": "experimental",
"skills/experimental/video-to-gif": "experimental",
"skills/experimental/vscode-playwright": "experimental"
},
"displayName": "HVE Core - Experimental",
"documentation": "docs/plugins/experimental.md"
}
},
{
"name": "hve-core",
"source": {
"source": "github",
"repo": "microsoft/hve-core",
"path": ".github"
},
"description": "Opinionated, rapidly evolving agentic SDLC patterns for RPI workflows, HVE Builder, and Git operations",
"version": "3.2.2",
"author": {
"name": "Microsoft",
"url": "https://www.microsoft.com"
},
"homepage": "https://github.com/microsoft/hve-core",
"repository": "https://github.com/microsoft/hve-core",
"license": "MIT",
"keywords": [
"workflow",
"hve-core",
"rpi",
"planning",
"research",
"implementation",
"review",
"git",
"commits",
"merge",
"pull-request"
],
"agents": [
"agents/coding-standards/code-review.agent.md",
"agents/coding-standards/subagents/code-review-accessibility.agent.md",
"agents/coding-standards/subagents/code-review-explainer.agent.md",
"agents/coding-standards/subagents/code-review-functional.agent.md",
"agents/coding-standards/subagents/code-review-pr.agent.md",
"agents/coding-standards/subagents/code-review-readiness.agent.md",
"agents/coding-standards/subagents/code-review-security.agent.md",
"agents/coding-standards/subagents/code-review-standards.agent.md",
"agents/coding-standards/subagents/code-review-walkback.agent.md",
"agents/hve-core/documentation.agent.md",
"agents/hve-core/rpi-agent.agent.md",
"agents/hve-core/subagents/hve-artifact-tester.agent.md",
"agents/hve-core/subagents/rpi-planner.agent.md",
"agents/hve-core/subagents/rpi-researcher.agent.md",
"agents/hve-core/subagents/vally-test-author.agent.md"
],
"commands": [
"prompts/hve-core/ado-create-pull-request.prompt.md",
"prompts/hve-core/ado-get-build-info.prompt.md",
"prompts/hve-core/evals-import.prompt.md",
"prompts/hve-core/git-commit-message.prompt.md",
"prompts/hve-core/git-commit.prompt.md",
"prompts/hve-core/git-merge.prompt.md",
"prompts/hve-core/git-setup.prompt.md",
"prompts/hve-core/pr-review.prompt.md",
"prompts/hve-core/pull-request.prompt.md",
"prompts/hve-core/rpi.prompt.md",
"prompts/hve-core/vally-test-write.prompt.md"
],
"rules": [
"instructions/coding-standards/code-review/diff-computation.instructions.md",
"instructions/coding-standards/code-review/review-artifacts.instructions.md",
"instructions/experimental/mural/mural-bootstrap.instructions.md",
"instructions/experimental/mural/mural-destinations.instructions.md",
"instructions/experimental/mural/mural-human-record.instructions.md",
"instructions/experimental/mural/mural-log-hygiene.instructions.md",
"instructions/experimental/mural/mural-seeding-patterns.instructions.md",
"instructions/experimental/mural/mural-writeback-hygiene.instructions.md",
"instructions/experimental/mural/mural-writing-style.instructions.md",
"instructions/hve-core/commit-message.instructions.md",
"instructions/hve-core/copilot-tracking.instructions.md",
"instructions/hve-core/git-merge.instructions.md",
"instructions/hve-core/hve-builder.instructions.md",
"instructions/hve-core/licensing-posture.instructions.md",
"instructions/hve-core/markdown.instructions.md",
"instructions/hve-core/pull-request.instructions.md",
"instructions/hve-core/writing-style.instructions.md",
"instructions/shared/content-policy-citation.instructions.md",
"instructions/shared/hve-core-location.instructions.md",
"instructions/shared/telemetry-overlay.instructions.md"
],
"skills": [
"skills/coding-standards/code-review",
"skills/experimental/mural",
"skills/hve-core/documentation",
"skills/hve-core/hve-builder",
"skills/hve-core/hve-builder-tester",
"skills/hve-core/prompt-analyze",
"skills/hve-core/prompt-builder",
"skills/hve-core/prompt-refactor",
"skills/hve-core/vally-tests",
"skills/project-planning/backlog-management",
"skills/rpi/rpi-challenger",
"skills/rpi/rpi-implement",
"skills/rpi/rpi-plan",
"skills/rpi/rpi-plan-critique",
"skills/rpi/rpi-quick",
"skills/rpi/rpi-research",
"skills/rpi/rpi-review",
"skills/rpi/rpi-walkthrough",
"skills/shared/pr-reference",
"skills/shared/telemetry-foundations"
],
"hooks": "hooks/shared/telemetry.json",
"x-hve": {
"componentMaturity": {
"agents/coding-standards/code-review.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-accessibility.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-explainer.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-functional.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-pr.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-readiness.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-security.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-standards.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-walkback.agent.md": "experimental",
"agents/hve-core/subagents/vally-test-author.agent.md": "experimental",
"prompts/hve-core/evals-import.prompt.md": "experimental",
"prompts/hve-core/pr-review.prompt.md": "experimental",
"prompts/hve-core/vally-test-write.prompt.md": "experimental",
"hooks/shared/telemetry.json": "experimental",
"instructions/coding-standards/code-review/diff-computation.instructions.md": "experimental",
"instructions/coding-standards/code-review/review-artifacts.instructions.md": "experimental",
"instructions/experimental/mural/mural-bootstrap.instructions.md": "experimental",
"instructions/experimental/mural/mural-destinations.instructions.md": "experimental",
"instructions/experimental/mural/mural-human-record.instructions.md": "experimental",
"instructions/experimental/mural/mural-log-hygiene.instructions.md": "experimental",
"instructions/experimental/mural/mural-seeding-patterns.instructions.md": "experimental",
"instructions/experimental/mural/mural-writeback-hygiene.instructions.md": "experimental",
"instructions/experimental/mural/mural-writing-style.instructions.md": "experimental",
"skills/coding-standards/code-review": "experimental",
"skills/experimental/mural": "experimental",
"skills/hve-core/vally-tests": "experimental"
},
"displayName": "HVE Core",
"documentation": "docs/plugins/hve-core.md"
}
},
{
"name": "hve-core-all",
"source": {
"source": "github",
"repo": "microsoft/hve-core",
"path": ".github"
},
"description": "Full bundle of opinionated, rapidly evolving HVE Core agentic SDLC patterns and tools",
"version": "3.2.2",
"author": {
"name": "Microsoft",
"url": "https://www.microsoft.com"
},
"homepage": "https://github.com/microsoft/hve-core",
"repository": "https://github.com/microsoft/hve-core",
"license": "MIT",
"keywords": [
"hve",
"complete",
"bundle"
],
"agents": [
"agents/accessibility/accessibility-planner.agent.md",
"agents/accessibility/accessibility-reviewer.agent.md",
"agents/accessibility/subagents/accessibility-framework-assessor.agent.md",
"agents/accessibility/subagents/accessibility-surface-inventory.agent.md",
"agents/coding-standards/code-review.agent.md",
"agents/coding-standards/subagents/code-review-accessibility.agent.md",
"agents/coding-standards/subagents/code-review-explainer.agent.md",
"agents/coding-standards/subagents/code-review-functional.agent.md",
"agents/coding-standards/subagents/code-review-pr.agent.md",
"agents/coding-standards/subagents/code-review-readiness.agent.md",
"agents/coding-standards/subagents/code-review-security.agent.md",
"agents/coding-standards/subagents/code-review-standards.agent.md",
"agents/coding-standards/subagents/code-review-walkback.agent.md",
"agents/data-science/eval-dataset-creator.agent.md",
"agents/data-science/gen-data-spec.agent.md",
"agents/data-science/gen-jupyter-notebook.agent.md",
"agents/data-science/gen-streamlit-dashboard.agent.md",
"agents/data-science/test-streamlit-dashboard.agent.md",
"agents/design-thinking/dt-coach.agent.md",
"agents/design-thinking/dt-learning-tutor.agent.md",
"agents/experimental/experiment-designer.agent.md",
"agents/experimental/pptx.agent.md",
"agents/experimental/subagents/pptx-subagent.agent.md",
"agents/hve-core/documentation.agent.md",
"agents/hve-core/rpi-agent.agent.md",
"agents/hve-core/subagents/hve-artifact-tester.agent.md",
"agents/hve-core/subagents/rpi-planner.agent.md",
"agents/hve-core/subagents/rpi-researcher.agent.md",
"agents/hve-core/subagents/vally-test-author.agent.md",
"agents/privacy/privacy-planner.agent.md",
"agents/privacy/privacy-reviewer.agent.md",
"agents/project-planning/adr-creation.agent.md",
"agents/project-planning/backlog-manager.agent.md",
"agents/project-planning/brd-builder.agent.md",
"agents/project-planning/functional-planner.agent.md",
"agents/project-planning/meeting-analyst.agent.md",
"agents/project-planning/network-isa95-planner.agent.md",
"agents/project-planning/prd-builder.agent.md",
"agents/project-planning/subagents/ado-backlog-executor.agent.md",
"agents/project-planning/subagents/brd-quality-reviewer.agent.md",
"agents/project-planning/subagents/github-backlog-executor.agent.md",
"agents/project-planning/subagents/jira-backlog-executor.agent.md",
"agents/project-planning/subagents/prd-quality-reviewer.agent.md",
"agents/project-planning/system-architecture-reviewer.agent.md",
"agents/project-planning/ux-ui-designer.agent.md",
"agents/rai-planning/rai-planner.agent.md",
"agents/rai-planning/rai-reviewer.agent.md",
"agents/rai-planning/subagents/rai-skill-assessor.agent.md",
"agents/security/security-planner.agent.md",
"agents/security/security-reviewer.agent.md",
"agents/security/sssc-planner.agent.md",
"agents/security/sssc-reviewer.agent.md",
"agents/security/subagents/codebase-profiler.agent.md",
"agents/security/subagents/cve-analyzer.agent.md",
"agents/security/subagents/finding-deep-verifier.agent.md",
"agents/security/subagents/report-generator.agent.md",
"agents/security/subagents/skill-assessor.agent.md",
"agents/security/subagents/supply-chain-skill-assessor.agent.md",
"agents/security/supply-chain-reviewer.agent.md"
],
"commands": [
"prompts/accessibility/accessibility-coverage-matrix.prompt.md",
"prompts/data-science/synth-data-generate.prompt.md",
"prompts/design-thinking/dt-canonical-deck.prompt.md",
"prompts/design-thinking/dt-figma-export.prompt.md",
"prompts/design-thinking/dt-handoff-implementation-space.prompt.md",
"prompts/design-thinking/dt-handoff-problem-space.prompt.md",
"prompts/design-thinking/dt-handoff-solution-space.prompt.md",
"prompts/design-thinking/dt-method-04-convergence.prompt.md",
"prompts/design-thinking/dt-method-04-ideation.prompt.md",
"prompts/design-thinking/dt-method-05-concepts.prompt.md",
"prompts/design-thinking/dt-method-05-evaluation.prompt.md",
"prompts/design-thinking/dt-method-06-building.prompt.md",
"prompts/design-thinking/dt-method-06-planning.prompt.md",
"prompts/design-thinking/dt-method-06-testing.prompt.md",
"prompts/design-thinking/dt-method-next.prompt.md",
"prompts/design-thinking/dt-resume-coaching.prompt.md",
"prompts/design-thinking/dt-start-project.prompt.md",
"prompts/experimental/cspell-config.prompt.md",
"prompts/experimental/graph-research.prompt.md",
"prompts/hve-core/ado-create-pull-request.prompt.md",
"prompts/hve-core/ado-get-build-info.prompt.md",
"prompts/hve-core/evals-import.prompt.md",
"prompts/hve-core/git-commit-message.prompt.md",
"prompts/hve-core/git-commit.prompt.md",
"prompts/hve-core/git-merge.prompt.md",
"prompts/hve-core/git-setup.prompt.md",
"prompts/hve-core/pr-review.prompt.md",
"prompts/hve-core/pull-request.prompt.md",
"prompts/hve-core/rpi.prompt.md",
"prompts/hve-core/vally-test-write.prompt.md",
"prompts/rai-planning/rai-capture.prompt.md",
"prompts/rai-planning/rai-plan-from-prd.prompt.md",
"prompts/rai-planning/rai-plan-from-security-plan.prompt.md",
"prompts/security/incident-response.prompt.md",
"prompts/security/risk-register.prompt.md",
"prompts/security/security-capture.prompt.md",
"prompts/security/security-plan-from-prd.prompt.md",
"prompts/security/security-review-llm.prompt.md",
"prompts/security/security-review-sbd.prompt.md",
"prompts/security/security-review-web.prompt.md",
"prompts/security/security-review.prompt.md",
"prompts/security/sssc-capture.prompt.md",
"prompts/security/sssc-from-brd.prompt.md",
"prompts/security/sssc-from-prd.prompt.md",
"prompts/security/sssc-from-security-plan.prompt.md",
"prompts/security/vex-implement.prompt.md",
"prompts/security/vex-scan.prompt.md",
"prompts/security/vex-triage.prompt.md"
],
"rules": [
"instructions/accessibility/accessibility-identity.instructions.md",
"instructions/accessibility/accessibility-license-posture.instructions.md",
"instructions/coding-standards/bash/bash.instructions.md",
"instructions/coding-standards/bicep/bicep.instructions.md",
"instructions/coding-standards/code-review/diff-computation.instructions.md",
"instructions/coding-standards/code-review/review-artifacts.instructions.md",
"instructions/coding-standards/csharp/csharp-tests.instructions.md",
"instructions/coding-standards/csharp/csharp.instructions.md",
"instructions/coding-standards/powershell/pester.instructions.md",
"instructions/coding-standards/powershell/powershell.instructions.md",
"instructions/coding-standards/python-script.instructions.md",
"instructions/coding-standards/python-tests.instructions.md",
"instructions/coding-standards/rust/rust-tests.instructions.md",
"instructions/coding-standards/rust/rust.instructions.md",
"instructions/coding-standards/terraform/terraform.instructions.md",
"instructions/coding-standards/uv-projects.instructions.md",
"instructions/design-thinking/dt-coach-telemetry.instructions.md",
"instructions/experimental/experiment-designer.instructions.md",
"instructions/experimental/graphify.instructions.md",
"instructions/experimental/mural/mural-bootstrap.instructions.md",
"instructions/experimental/mural/mural-destinations.instructions.md",
"instructions/experimental/mural/mural-human-record.instructions.md",
"instructions/experimental/mural/mural-log-hygiene.instructions.md",
"instructions/experimental/mural/mural-seeding-patterns.instructions.md",
"instructions/experimental/mural/mural-writeback-hygiene.instructions.md",
"instructions/experimental/mural/mural-writing-style.instructions.md",
"instructions/experimental/pptx.instructions.md",
"instructions/hve-core/commit-message.instructions.md",
"instructions/hve-core/copilot-tracking.instructions.md",
"instructions/hve-core/git-merge.instructions.md",
"instructions/hve-core/hve-builder.instructions.md",
"instructions/hve-core/licensing-posture.instructions.md",
"instructions/hve-core/markdown.instructions.md",
"instructions/hve-core/pull-request.instructions.md",
"instructions/hve-core/writing-style.instructions.md",
"instructions/privacy/privacy-identity.instructions.md",
"instructions/project-planning/adr-byo-template.instructions.md",
"instructions/project-planning/adr-handoff.instructions.md",
"instructions/project-planning/adr-identity.instructions.md",
"instructions/project-planning/adr-standards.instructions.md",
"instructions/project-planning/backlog-guardrails.instructions.md",
"instructions/project-planning/community-interaction.instructions.md",
"instructions/rai-planning/rai-identity.instructions.md",
"instructions/rai-planning/rai-license-posture.instructions.md",
"instructions/security/identity.instructions.md",
"instructions/security/sssc-planner.instructions.md",
"instructions/security/standards-mapping.instructions.md",
"instructions/security/vex-generation.instructions.md",
"instructions/security/vex-standards.instructions.md",
"instructions/shared/coaching-patterns.instructions.md",
"instructions/shared/content-policy-citation.instructions.md",
"instructions/shared/disclaimer-language.instructions.md",
"instructions/shared/hve-core-location.instructions.md",
"instructions/shared/planner-identity-base.instructions.md",
"instructions/shared/telemetry-overlay.instructions.md",
"instructions/shared/untrusted-content-boundary.instructions.md"
],
"skills": [
"skills/accessibility/accessibility",
"skills/coding-standards/code-review",
"skills/coding-standards/python-foundational",
"skills/design-thinking/dt-coaching-foundation",
"skills/design-thinking/dt-curriculum",
"skills/design-thinking/dt-methods",
"skills/design-thinking/dt-rpi-integration",
"skills/experimental/caveman",
"skills/experimental/copilot-otel-metrics",
"skills/experimental/customer-card-render",
"skills/experimental/demo-video",
"skills/experimental/mural",
"skills/experimental/powerpoint",
"skills/experimental/tts-voiceover",
"skills/experimental/video-to-gif",
"skills/experimental/vscode-playwright",
"skills/hve-core/architecture-diagrams",
"skills/hve-core/documentation",
"skills/hve-core/hve-builder",
"skills/hve-core/hve-builder-tester",
"skills/hve-core/prompt-analyze",
"skills/hve-core/prompt-builder",
"skills/hve-core/prompt-refactor",
"skills/hve-core/vally-tests",
"skills/installer/hve-core-installer",
"skills/project-planning/adr-author",
"skills/project-planning/backlog-execute",
"skills/project-planning/backlog-management",
"skills/project-planning/backlog-plan",
"skills/project-planning/functional-planner",
"skills/project-planning/gitlab",
"skills/project-planning/jira",
"skills/project-planning/outcome-hypothesis",
"skills/project-planning/performance-slo-planner",
"skills/project-planning/privacy-standards",
"skills/project-planning/rai-planner",
"skills/project-planning/requirements-author",
"skills/project-planning/security-planning",
"skills/rai/rai-standards",
"skills/rpi/rpi-challenger",
"skills/rpi/rpi-implement",
"skills/rpi/rpi-plan",
"skills/rpi/rpi-plan-critique",
"skills/rpi/rpi-quick",
"skills/rpi/rpi-research",
"skills/rpi/rpi-review",
"skills/rpi/rpi-walkthrough",
"skills/security/gh-code-scanning",
"skills/security/mcsb",
"skills/security/owasp-agentic",
"skills/security/owasp-cicd",
"skills/security/owasp-infrastructure",
"skills/security/owasp-llm",
"skills/security/owasp-mcp",
"skills/security/owasp-top-10",
"skills/security/secure-by-design",
"skills/security/security-reviewer-formats",
"skills/security/supply-chain-security",
"skills/security/vex",
"skills/shared/backlog-templates",
"skills/shared/pr-reference",
"skills/shared/telemetry-foundations"
],
"hooks": "hooks/shared/telemetry.json",
"x-hve": {
"componentMaturity": {
"agents/accessibility/accessibility-planner.agent.md": "experimental",
"agents/accessibility/accessibility-reviewer.agent.md": "experimental",
"agents/accessibility/subagents/accessibility-framework-assessor.agent.md": "experimental",
"agents/accessibility/subagents/accessibility-surface-inventory.agent.md": "experimental",
"agents/coding-standards/code-review.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-accessibility.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-explainer.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-functional.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-pr.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-readiness.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-security.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-standards.agent.md": "experimental",
"agents/coding-standards/subagents/code-review-walkback.agent.md": "experimental",
"agents/design-thinking/dt-coach.agent.md": "preview",
"agents/design-thinking/dt-learning-tutor.agent.md": "preview",
"agents/experimental/experiment-designer.agent.md": "experimental",
"agents/experimental/pptx.agent.md": "experimental",
"agents/experimental/subagents/pptx-subagent.agent.md": "experimental",
"agents/hve-core/subagents/vally-test-author.agent.md": "experimental",
"agents/privacy/privacy-planner.agent.md": "experimental",
"agents/privacy/privacy-reviewer.agent.md": "experimental",
"agents/project-planning/network-isa95-planner.agent.md": "experimental",
"agents/rai-planning/rai-planner.agent.md": "experimental",
"agents/rai-planning/rai-reviewer.agent.md": "experimental",
"agents/rai-planning/subagents/rai-skill-assessor.agent.md": "experimental",
"agents/security/security-planner.agent.md": "experimental",
"agents/security/security-reviewer.agent.md": "experimental",
"agents/security/sssc-planner.agent.md": "experimental",
"agents/security/sssc-reviewer.agent.md": "experimental",
"agents/security/subagents/codebase-profiler.agent.md": "experimental",
"agents/security/subagents/cve-analyzer.agent.md": "experimental",
"agents/security/subagents/finding-deep-verifier.agent.md": "experimental",
"agents/security/subagents/report-generator.agent.md": "experimental",
"agents/security/subagents/skill-assessor.agent.md": "experimental",
"agents/security/subagents/supply-chain-skill-assessor.agent.md": "experimental",
"agents/security/supply-chain-reviewer.agent.md": "experimental",
"prompts/accessibility/accessibility-coverage-matrix.prompt.md": "experimental",
"prompts/data-science/synth-data-generate.prompt.md": "experimental",
"prompts/design-thinking/dt-canonical-deck.prompt.md": "preview",
"prompts/design-thinking/dt-figma-export.prompt.md": "preview",
"prompts/design-thinking/dt-handoff-implementation-space.prompt.md": "preview",
"prompts/design-thinking/dt-handoff-problem-space.prompt.md": "preview",
"prompts/design-thinking/dt-handoff-solution-space.prompt.md": "preview",
"prompts/design-thinking/dt-method-04-convergence.prompt.md": "preview",
"prompts/design-thinking/dt-method-04-ideation.prompt.md": "preview",
"prompts/design-thinking/dt-method-05-concepts.prompt.md": "preview",
"prompts/design-thinking/dt-method-05-evaluation.prompt.md": "preview",
"prompts/design-thinking/dt-method-06-building.prompt.md": "preview",
"prompts/design-thinking/dt-method-06-planning.prompt.md": "preview",
"prompts/design-thinking/dt-method-06-testing.prompt.md": "preview",
"prompts/design-thinking/dt-method-next.prompt.md": "preview",
"prompts/design-thinking/dt-resume-coaching.prompt.md": "preview",
"prompts/design-thinking/dt-start-project.prompt.md": "preview",
"prompts/experimental/cspell-config.prompt.md": "experimental",
"prompts/experimental/graph-research.prompt.md": "experimental",
"prompts/hve-core/evals-import.prompt.md": "experimental",
"prompts/hve-core/pr-review.prompt.md": "experimental",
"prompts/hve-core/vally-test-write.prompt.md": "experimental",
"prompts/rai-planning/rai-capture.prompt.md": "experimental",
"prompts/rai-planning/rai-plan-from-prd.prompt.md": "experimental",
"prompts/rai-planning/rai-plan-from-security-plan.prompt.md": "experimental",
"prompts/security/incident-response.prompt.md": "experimental",
"prompts/security/risk-register.prompt.md": "experimental",
"prompts/security/security-capture.prompt.md": "experimental",
"prompts/security/security-plan-from-prd.prompt.md": "experimental",
"prompts/security/security-review-llm.prompt.md": "experimental",
"prompts/security/security-review-sbd.prompt.md": "experimental",
"prompts/security/security-review-web.prompt.md": "experimental",
"prompts/security/security-review.prompt.md": "experimental",
"prompts/security/sssc-capture.prompt.md": "experimental",
"prompts/security/sssc-from-brd.prompt.md": "experimental",
"prompts/security/sssc-from-prd.prompt.md": "experimental",
"prompts/security/sssc-from-security-plan.prompt.md": "experimental",
"prompts/security/vex-implement.prompt.md": "experimental",
"prompts/security/vex-scan.prompt.md": "experimental",
"prompts/security/vex-triage.prompt.md": "experimental",
"hooks/shared/telemetry.json": "experimental",
"instructions/accessibility/accessibility-identity.instructions.md": "experimental",
"instructions/accessibility/accessibility-license-posture.instructions.md": "experimental",
"instructions/coding-standards/code-review/diff-computation.instructions.md": "experimental",
"instructions/coding-standards/code-review/review-artifacts.instructions.md": "experimental",
"instructions/experimental/experiment-designer.instructions.md": "experimental",
"instructions/experimental/graphify.instructions.md": "experimental",
"instructions/experimental/mural/mural-bootstrap.instructions.md": "experimental",
"instructions/experimental/mural/mural-destinations.instructions.md": "experimental",
"instructions/experimental/mural/mural-human-record.instructions.md": "experimental",
"instructions/experimental/mural/mural-log-hygiene.instructions.md": "experimental",
"instructions/experimental/mural/mural-seeding-patterns.instructions.md": "experimental",
"instructions/experimental/mural/mural-writeback-hygiene.instructions.md": "experimental",
"instructions/experimental/mural/mural-writing-style.instructions.md": "experimental",
"instructions/experimental/pptx.instructions.md": "experimental",
"instructions/privacy/privacy-identity.instructions.md": "experimental",
"instructions/project-planning/adr-byo-template.instructions.md": "experimental",
"instructions/project-planning/adr-handoff.instructions.md": "experimental",
"instructions/project-planning/adr-identity.instructions.md": "experimental",
"instructions/project-planning/adr-standards.instructions.md": "experimental",
"instructions/rai-planning/rai-identity.instructions.md": "experimental",
"instructions/rai-planning/rai-license-posture.instructions.md": "experimental",
"instructions/security/identity.instructions.md": "experimental",
"instructions/security/sssc-planner.instructions.md": "experimental",
"instructions/security/standards-mapping.instructions.md": "experimental",
"instructions/security/vex-generation.instructions.md": "experimental",
"instructions/security/vex-standards.instructions.md": "experimental",
"instructions/shared/planner-identity-base.instructions.md": "experimental",
"skills/accessibility/accessibility": "experimental",
"skills/coding-standards/code-review": "experimental",
"skills/coding-standards/python-foundational": "experimental",
"skills/design-thinking/dt-coaching-foundation": "preview",
"skills/design-thinking/dt-curriculum": "preview",
"skills/design-thinking/dt-methods": "preview",
"skills/design-thinking/dt-rpi-integration": "preview",
"skills/experimental/caveman": "experimental",
"skills/experimental/copilot-otel-metrics": "experimental",
"skills/experimental/customer-card-render": "experimental",
"skills/experimental/demo-video": "experimental",
"skills/experimental/mural": "experimental",
"skills/experimental/powerpoint": "experimental",
"skills/experimental/tts-voiceover": "experimental",
"skills/experimental/video-to-gif": "experimental",
"skills/experimental/vscode-playwright": "experimental",
"skills/hve-core/architecture-diagrams": "experimental",
"skills/hve-core/vally-tests": "experimental",
"skills/project-planning/adr-author": "experimental",
"skills/project-planning/outcome-hypothesis": "experimental",
"skills/project-planning/performance-slo-planner": "experimental",
"skills/project-planning/privacy-standards": "experimental",
"skills/project-planning/rai-planner": "experimental",
"skills/project-planning/security-planning": "experimental",
"skills/rai/rai-standards": "experimental",
"skills/security/gh-code-scanning": "experimental",
"skills/security/mcsb": "experimental",
"skills/security/owasp-agentic": "experimental",
"skills/security/owasp-cicd": "experimental",
"skills/security/owasp-docker": "removed",
"skills/security/owasp-infrastructure": "experimental",
"skills/security/owasp-llm": "experimental",
"skills/security/owasp-mcp": "experimental",
"skills/security/owasp-top-10": "experimental",
"skills/security/secure-by-design": "experimental",
"skills/security/security-reviewer-formats": "experimental",
"skills/security/supply-chain-security": "experimental",
"skills/security/vex": "experimental",
"skills/shared/backlog-templates": "experimental"
},
"displayName": "HVE Core - All",
"documentation": "docs/plugins/hve-core-all.md",
"profiles": {
"starter": [
"agents/hve-core/documentation.agent.md",
"agents/hve-core/rpi-agent.agent.md",
"agents/hve-core/subagents/hve-artifact-tester.agent.md",
"agents/hve-core/subagents/rpi-planner.agent.md",
"agents/hve-core/subagents/rpi-researcher.agent.md",
"agents/hve-core/subagents/vally-test-author.agent.md",
"prompts/hve-core/rpi.prompt.md",
"instructions/hve-core/copilot-tracking.instructions.md",
"instructions/hve-core/hve-builder.instructions.md",
"skills/hve-core/documentation",
"skills/hve-core/hve-builder",
"skills/hve-core/hve-builder-tester",
"skills/hve-core/prompt-analyze",
"skills/hve-core/prompt-builder",
"skills/hve-core/prompt-refactor",
"skills/hve-core/vally-tests",
"skills/rpi/rpi-challenger",
"skills/rpi/rpi-implement",
"skills/rpi/rpi-plan",
"skills/rpi/rpi-plan-critique",
"skills/rpi/rpi-quick",
"skills/rpi/rpi-research",
"skills/rpi/rpi-review",
"skills/rpi/rpi-walkthrough"
]
}
}
},
{
"name": "installer",
"source": {
"source": "github",
"repo": "microsoft/hve-core",
"path": ".github"
},
"description": "Decision-driven installer skill for deploying HVE Core artifacts across workspace configurations",
"version": "3.2.2",
"author": {
"name": "Microsoft",
"url": "https://www.microsoft.com"
},
"homepage": "https://github.com/microsoft/hve-core",
"repository": "https://github.com/microsoft/hve-core",
"license": "MIT",
"keywords": [
"installer",
"setup",
"deployment"
],
"rules": [
"instructions/shared/hve-core-location.instructions.md"
],
"skills": [
"skills/installer/hve-core-installer"
],
"x-hve": {
"displayName": "HVE Core - HVE Core Installer",
"documentation": "docs/plugins/installer.md"
}
},
{
"name": "project-planning",
"source": {
"source": "github",
"repo": "microsoft/hve-core",
"path": ".github"
},
"description": "Outcome hypotheses, PRDs, BRDs, ADRs, architecture diagrams, and cross-tracker backlog management for Azure DevOps, GitHub, and Jira",
"version": "3.2.2",
"author": {
"name": "Microsoft",
"url": "https://www.microsoft.com"
},
"homepage": "https://github.com/microsoft/hve-core",
"repository": "https://github.com/microsoft/hve-core",
"license": "MIT",
"keywords": [
"documentation",
"architecture",
"adr",
"brd",
"prd",
"outcome-hypothesis",
"outcome-led",
"diagrams",
"planning",
"rai",
"responsible-ai",
"security",
"privacy"
],
"agents": [
"agents/accessibility/accessibility-planner.agent.md",
"agents/hve-core/rpi-agent.agent.md",
"agents/hve-core/subagents/rpi-planner.agent.md",
"agents/hve-core/subagents/rpi-researcher.agent.md",
"agents/privacy/privacy-planner.agent.md",
"agents/privacy/privacy-reviewer.agent.md",
"agents/project-planning/adr-creation.agent.md",
"agents/project-planning/backlog-manager.agent.md",
"agents/project-planning/brd-builder.agent.md",
"agents/project-planning/functional-planner.agent.md",