-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathregistry.json
More file actions
1963 lines (1963 loc) · 55.5 KB
/
Copy pathregistry.json
File metadata and controls
1963 lines (1963 loc) · 55.5 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
{
"version": "1.1.0",
"lastUpdated": "2026-05-25T14:09:02Z",
"categories": [
{
"id": "git-version-control",
"name": "Git & Version Control",
"description": "Skills for git workflows, commits, branching, and GitHub operations",
"icon": "\ud83d\udd00"
},
{
"id": "code-quality",
"name": "Code Quality & Refactoring",
"description": "Skills for code reviews, refactoring, linting, and best practices",
"icon": "\u2728"
},
{
"id": "documentation",
"name": "Documentation",
"description": "Skills for writing docs, READMEs, PRDs, and technical writing",
"icon": "\ud83d\udcdd"
},
{
"id": "diagrams",
"name": "Diagrams & Visualization",
"description": "Skills for creating Mermaid, PlantUML, Excalidraw diagrams",
"icon": "\ud83d\udcca"
},
{
"id": "testing",
"name": "Testing",
"description": "Skills for unit tests, integration tests, E2E, and test automation",
"icon": "\ud83e\uddea"
},
{
"id": "api-backend",
"name": "API & Backend",
"description": "Skills for REST APIs, GraphQL, databases, and backend development",
"icon": "\ud83d\udd0c"
},
{
"id": "frontend-ui",
"name": "Frontend & UI",
"description": "Skills for React, Vue, CSS, components, and web design",
"icon": "\ud83c\udfa8"
},
{
"id": "devops-cicd",
"name": "DevOps & CI/CD",
"description": "Skills for pipelines, Docker, Kubernetes, Terraform, and deployments",
"icon": "\ud83d\ude80"
},
{
"id": "security",
"name": "Security",
"description": "Skills for security audits, vulnerability scanning, and secure coding",
"icon": "\ud83d\udd12"
},
{
"id": "data-analytics",
"name": "Data & Analytics",
"description": "Skills for data pipelines, SQL, Power BI, and data analysis",
"icon": "\ud83d\udcc8"
},
{
"id": "office-documents",
"name": "Office Documents",
"description": "Skills for creating and editing Word, Excel, PowerPoint, and PDF files",
"icon": "\ud83d\udcc4"
},
{
"id": "mcp-development",
"name": "MCP Development",
"description": "Skills for building Model Context Protocol servers and apps",
"icon": "\ud83d\udd27"
}
],
"skills": [
{
"id": "git-commit",
"name": "git-commit",
"description": "Execute git commit with conventional commit message analysis, intelligent staging, and message generation. Supports auto-detecting type and scope from changes, generating conventional commit messages from diff, and intelligent file staging for logical grouping.",
"shortDescription": "Generate standardized commit messages",
"category": "git-version-control",
"author": "github",
"license": "MIT",
"triggers": [
"commit",
"git commit",
"commit message",
"conventional commit",
"/commit"
],
"complexity": "beginner",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/git-commit/SKILL.md",
"branch": "main"
},
"featured": true,
"tags": [
"git",
"commits",
"semantic",
"changelog",
"conventional-commits"
]
},
{
"id": "refactor",
"name": "refactor",
"description": "Perform code refactoring with best practices. Analyzes code structure and suggests improvements for readability, maintainability, and performance.",
"shortDescription": "Refactor code with best practices",
"category": "code-quality",
"author": "github",
"license": "MIT",
"triggers": [
"refactor",
"refactoring",
"clean code",
"improve code"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/refactor/SKILL.md",
"branch": "main"
},
"featured": true,
"tags": [
"refactor",
"clean-code",
"quality",
"maintainability"
]
},
{
"id": "anti-ui-slop",
"name": "STOP UI SLOP",
"description": "Stop generic UI before it ships. Turn real interface evidence into a product-specific design contract, implement the states the flow actually needs, and enforce a hard finish gate for React, Next.js, web, and iOS interfaces.",
"shortDescription": "Stop generic UI with evidence, states, and a hard finish gate",
"category": "frontend-ui",
"author": "UIZZE",
"license": "MIT",
"triggers": [
"stop UI slop",
"review this UI",
"make this interface product-specific",
"finish gate",
"generic dashboard"
],
"complexity": "advanced",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/uizze/uizze",
"repoName": "uizze/uizze",
"path": "skills/anti-ui-slop/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"ui-design",
"frontend",
"design-systems",
"code-quality",
"anti-slop"
]
},
{
"id": "prd",
"name": "prd",
"description": "Generate Product Requirements Documents from feature descriptions. Creates structured PRDs with user stories, acceptance criteria, and technical requirements.",
"shortDescription": "Generate Product Requirements Documents",
"category": "documentation",
"author": "github",
"license": "MIT",
"triggers": [
"prd",
"requirements",
"product requirements",
"spec",
"specification"
],
"complexity": "beginner",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/prd/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"documentation",
"prd",
"requirements",
"product"
]
},
{
"id": "excalidraw-diagram-generator",
"name": "excalidraw-diagram-generator",
"description": "Create professional diagrams using Excalidraw. Generates flowcharts, architecture diagrams, and visual documentation from natural language descriptions.",
"shortDescription": "Create Excalidraw diagrams",
"category": "diagrams",
"author": "github",
"license": "MIT",
"triggers": [
"excalidraw",
"diagram",
"flowchart",
"architecture diagram",
"visualize"
],
"complexity": "beginner",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/excalidraw-diagram-generator/SKILL.md",
"branch": "main"
},
"featured": true,
"tags": [
"diagrams",
"excalidraw",
"flowchart",
"visualization",
"architecture"
]
},
{
"id": "plantuml-ascii",
"name": "plantuml-ascii",
"description": "Create PlantUML diagrams with ASCII output. Generates sequence diagrams, class diagrams, and more in text format.",
"shortDescription": "Create PlantUML ASCII diagrams",
"category": "diagrams",
"author": "github",
"license": "MIT",
"triggers": [
"plantuml",
"uml",
"sequence diagram",
"class diagram",
"ascii diagram"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/plantuml-ascii/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"diagrams",
"plantuml",
"uml",
"ascii",
"sequence"
]
},
{
"id": "gh-cli",
"name": "gh-cli",
"description": "Use GitHub CLI (gh) for repository management, issues, pull requests, and GitHub operations directly from the command line.",
"shortDescription": "GitHub CLI operations",
"category": "git-version-control",
"author": "github",
"license": "MIT",
"triggers": [
"gh",
"github cli",
"gh pr",
"gh issue",
"github command"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/gh-cli/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"github",
"cli",
"gh",
"pull-request",
"issues"
]
},
{
"id": "github-issues",
"name": "github-issues",
"description": "Create, manage, and organize GitHub issues. Includes templates, labels, and best practices for issue tracking.",
"shortDescription": "Manage GitHub issues",
"category": "git-version-control",
"author": "github",
"license": "MIT",
"triggers": [
"issue",
"github issue",
"create issue",
"bug report",
"feature request"
],
"complexity": "beginner",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/github-issues/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"github",
"issues",
"tracking",
"project-management"
]
},
{
"id": "azure-static-web-apps",
"name": "azure-static-web-apps",
"description": "Create, test, deploy, and update Azure Static Web Apps. Full lifecycle management for static web applications on Azure.",
"shortDescription": "Azure Static Web Apps deployment",
"category": "devops-cicd",
"author": "github",
"license": "MIT",
"triggers": [
"azure static web app",
"swa",
"static site",
"azure deploy"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/azure-static-web-apps/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"azure",
"static-web-apps",
"deployment",
"cloud"
]
},
{
"id": "azure-devops-cli",
"name": "azure-devops-cli",
"description": "Use Azure DevOps CLI for pipeline management, work items, and Azure DevOps operations from the command line.",
"shortDescription": "Azure DevOps CLI operations",
"category": "devops-cicd",
"author": "github",
"license": "MIT",
"triggers": [
"azure devops",
"az devops",
"ado",
"azure pipelines"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/azure-devops-cli/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"azure",
"devops",
"cli",
"pipelines",
"ado"
]
},
{
"id": "copilot-sdk",
"name": "copilot-sdk",
"description": "Build applications with the GitHub Copilot SDK. Create AI-powered applications using the Copilot API across multiple programming languages.",
"shortDescription": "Build with GitHub Copilot SDK",
"category": "api-backend",
"author": "github",
"license": "MIT",
"triggers": [
"copilot sdk",
"copilot api",
"ai application",
"copilot integration"
],
"complexity": "advanced",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/copilot-sdk/SKILL.md",
"branch": "main"
},
"featured": true,
"tags": [
"copilot",
"sdk",
"api",
"ai",
"integration"
]
},
{
"id": "meeting-minutes",
"name": "meeting-minutes",
"description": "Generate structured meeting minutes from notes or transcripts. Creates organized summaries with action items, decisions, and follow-ups.",
"shortDescription": "Generate meeting minutes",
"category": "documentation",
"author": "github",
"license": "MIT",
"triggers": [
"meeting minutes",
"meeting notes",
"action items",
"meeting summary"
],
"complexity": "beginner",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/meeting-minutes/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"meeting",
"minutes",
"documentation",
"notes"
]
},
{
"id": "agentic-eval",
"name": "agentic-eval",
"description": "Evaluate AI agent performance with structured patterns. Create test cases, metrics, and evaluation frameworks for agent-based systems.",
"shortDescription": "Evaluate AI agent performance",
"category": "testing",
"author": "github",
"license": "MIT",
"triggers": [
"agent evaluation",
"ai testing",
"agent metrics",
"eval"
],
"complexity": "advanced",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/agentic-eval/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"agent",
"evaluation",
"testing",
"ai",
"metrics"
]
},
{
"id": "mcp-builder",
"name": "mcp-builder",
"description": "Create high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Includes TypeScript and Python implementation guides.",
"shortDescription": "Build MCP servers for LLM integration",
"category": "mcp-development",
"author": "anthropic",
"license": "Apache-2.0",
"triggers": [
"mcp server",
"model context protocol",
"llm integration",
"tool server"
],
"complexity": "advanced",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/anthropics/skills",
"repoName": "anthropics/skills",
"path": "skills/mcp-builder/SKILL.md",
"branch": "main"
},
"featured": true,
"tags": [
"mcp",
"server",
"llm",
"api",
"integration"
]
},
{
"id": "frontend-design",
"name": "frontend-design",
"description": "Design and implement frontend user interfaces with modern best practices. Covers layout, accessibility, responsive design, and user experience.",
"shortDescription": "Frontend design best practices",
"category": "frontend-ui",
"author": "anthropic",
"license": "Apache-2.0",
"triggers": [
"frontend design",
"ui design",
"web design",
"responsive",
"accessibility"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/anthropics/skills",
"repoName": "anthropics/skills",
"path": "skills/frontend-design/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"frontend",
"design",
"ui",
"ux",
"responsive"
]
},
{
"id": "canvas-design",
"name": "canvas-design",
"description": "Create canvas-based graphics and visualizations. Design interactive graphics, animations, and visual elements using HTML5 Canvas API.",
"shortDescription": "HTML5 Canvas graphics design",
"category": "frontend-ui",
"author": "anthropic",
"license": "Apache-2.0",
"triggers": [
"canvas",
"graphics",
"animation",
"html5 canvas",
"visualization"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/anthropics/skills",
"repoName": "anthropics/skills",
"path": "skills/canvas-design/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"canvas",
"graphics",
"animation",
"html5",
"visualization"
]
},
{
"id": "webapp-testing",
"name": "webapp-testing",
"description": "Test web applications with comprehensive testing strategies. Includes unit testing, integration testing, E2E testing, and test automation patterns.",
"shortDescription": "Web application testing strategies",
"category": "testing",
"author": "anthropic",
"license": "Apache-2.0",
"triggers": [
"webapp testing",
"e2e testing",
"integration test",
"test automation"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/anthropics/skills",
"repoName": "anthropics/skills",
"path": "skills/webapp-testing/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"testing",
"webapp",
"e2e",
"automation",
"qa"
]
},
{
"id": "skill-creator",
"name": "skill-creator",
"description": "Create new AI agent skills with proper structure and best practices. Generate SKILL.md files, reference documentation, and skill configurations.",
"shortDescription": "Create AI agent skills",
"category": "mcp-development",
"author": "anthropic",
"license": "Apache-2.0",
"triggers": [
"create skill",
"skill template",
"agent skill",
"new skill"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/anthropics/skills",
"repoName": "anthropics/skills",
"path": "skills/skill-creator/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"skill",
"template",
"agent",
"creation",
"meta"
]
},
{
"id": "create-mcp-app",
"name": "create-mcp-app",
"description": "Build interactive UIs that run inside MCP-enabled hosts like Claude Desktop. An MCP App combines an MCP tool with an HTML resource to display rich, interactive content with React, Vue, or vanilla JS.",
"shortDescription": "Create MCP Apps with interactive UIs",
"category": "mcp-development",
"author": "modelcontextprotocol",
"license": "MIT",
"triggers": [
"create mcp app",
"mcp ui",
"mcp view",
"scaffold mcp app",
"interactive mcp"
],
"complexity": "advanced",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/modelcontextprotocol/ext-apps",
"repoName": "modelcontextprotocol/ext-apps",
"path": "plugins/mcp-apps/skills/create-mcp-app/SKILL.md",
"branch": "main"
},
"featured": true,
"tags": [
"mcp",
"app",
"ui",
"interactive",
"react",
"claude-desktop"
]
},
{
"id": "appinsights-instrumentation",
"name": "appinsights-instrumentation",
"description": "Instrument a webapp to send useful telemetry data to Azure App Insights. Configures application monitoring with custom metrics, traces, and performance tracking.",
"shortDescription": "Azure App Insights instrumentation",
"category": "devops-cicd",
"author": "github",
"license": "MIT",
"triggers": [
"app insights",
"application insights",
"telemetry",
"azure monitoring",
"instrumentation"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/appinsights-instrumentation/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"azure",
"app-insights",
"telemetry",
"monitoring",
"observability"
]
},
{
"id": "azure-deployment-preflight",
"name": "azure-deployment-preflight",
"description": "Performs comprehensive preflight validation of Bicep deployments to Azure. Validates templates, checks resource availability, and identifies potential deployment issues before execution.",
"shortDescription": "Validate Bicep deployments before Azure deploy",
"category": "devops-cicd",
"author": "github",
"license": "MIT",
"triggers": [
"bicep validation",
"deployment preflight",
"azure deploy check",
"validate bicep"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/azure-deployment-preflight/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"azure",
"bicep",
"deployment",
"validation",
"preflight"
]
},
{
"id": "azure-resource-visualizer",
"name": "azure-resource-visualizer",
"description": "Analyze Azure resource groups and generate detailed Mermaid architecture diagrams. Creates visual representations of Azure infrastructure including dependencies and relationships.",
"shortDescription": "Generate Azure architecture diagrams",
"category": "diagrams",
"author": "github",
"license": "MIT",
"triggers": [
"azure diagram",
"resource visualizer",
"azure architecture",
"mermaid azure"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/azure-resource-visualizer/SKILL.md",
"branch": "main"
},
"featured": true,
"tags": [
"azure",
"mermaid",
"diagrams",
"architecture",
"visualization"
]
},
{
"id": "azure-role-selector",
"name": "azure-role-selector",
"description": "Guidance for selecting the appropriate Azure RBAC role to assign to an identity. Helps choose the right role with least-privilege principles for secure access management.",
"shortDescription": "Select appropriate Azure RBAC roles",
"category": "security",
"author": "github",
"license": "MIT",
"triggers": [
"azure role",
"rbac",
"role assignment",
"azure permissions",
"least privilege"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/azure-role-selector/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"azure",
"rbac",
"security",
"roles",
"permissions"
]
},
{
"id": "chrome-devtools",
"name": "chrome-devtools",
"description": "Expert-level browser automation, debugging, and performance analysis using Chrome DevTools MCP. Enables DOM inspection, network monitoring, JavaScript debugging, and performance profiling.",
"shortDescription": "Browser automation with Chrome DevTools",
"category": "testing",
"author": "github",
"license": "MIT",
"triggers": [
"chrome devtools",
"browser debugging",
"dom inspection",
"network monitoring",
"performance profiling"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/chrome-devtools/SKILL.md",
"branch": "main"
},
"featured": true,
"tags": [
"chrome",
"devtools",
"debugging",
"browser",
"automation"
]
},
{
"id": "image-manipulation-image-magick",
"name": "image-manipulation-image-magick",
"description": "Process and manipulate images using ImageMagick. Supports resizing, cropping, format conversion, filters, compositing, and batch image processing operations.",
"shortDescription": "Image processing with ImageMagick",
"category": "frontend-ui",
"author": "github",
"license": "MIT",
"triggers": [
"imagemagick",
"image manipulation",
"resize image",
"convert image",
"image processing"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/image-manipulation-image-magick/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"imagemagick",
"image",
"manipulation",
"graphics",
"processing"
]
},
{
"id": "legacy-circuit-mockups",
"name": "legacy-circuit-mockups",
"description": "Generate breadboard circuit mockups and visual diagrams using HTML5 Canvas drawing techniques. Creates circuit visualizations for electronics documentation and education.",
"shortDescription": "Create breadboard circuit mockups",
"category": "diagrams",
"author": "github",
"license": "MIT",
"triggers": [
"circuit diagram",
"breadboard",
"electronics",
"circuit mockup",
"hardware diagram"
],
"complexity": "intermediate",
"platforms": [
"windows",
"macos",
"linux"
],
"source": {
"repo": "https://github.com/github/awesome-copilot",
"repoName": "github/awesome-copilot",
"path": "skills/legacy-circuit-mockups/SKILL.md",
"branch": "main"
},
"featured": false,
"tags": [
"circuit",
"breadboard",
"electronics",
"canvas",
"diagrams"
]
},
{