forked from sickn33/agentic-awesome-skills
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskills_index.json
More file actions
9542 lines (9542 loc) · 389 KB
/
Copy pathskills_index.json
File metadata and controls
9542 lines (9542 loc) · 389 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
[
{
"id": "00-andruia-consultant",
"path": "skills/00-andruia-consultant",
"category": "andruia",
"name": "00-andruia-consultant",
"description": "Arquitecto de Soluciones Principal y Consultor Tecnol\u00f3gico de Andru.ia. Diagnostica y traza la hoja de ruta \u00f3ptima para proyectos de IA en espa\u00f1ol.",
"risk": "safe",
"source": "personal",
"date_added": "2026-02-27"
},
{
"id": "20-andruia-niche-intelligence",
"path": "skills/20-andruia-niche-intelligence",
"category": "andruia",
"name": "20-andruia-niche-intelligence",
"description": "Estratega de Inteligencia de Dominio de Andru.ia. Analiza el nicho espec\u00edfico de un proyecto para inyectar conocimientos, regulaciones y est\u00e1ndares \u00fanicos del sector. Act\u00edvalo tras definir el nicho.",
"risk": "safe",
"source": "personal",
"date_added": "2026-02-27"
},
{
"id": "2d-games",
"path": "skills/game-development/2d-games",
"category": "game-development",
"name": "2d-games",
"description": "2D game development principles. Sprites, tilemaps, physics, camera.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "3d-games",
"path": "skills/game-development/3d-games",
"category": "game-development",
"name": "3d-games",
"description": "3D game development principles. Rendering, shaders, physics, cameras.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "3d-web-experience",
"path": "skills/3d-web-experience",
"category": "uncategorized",
"name": "3d-web-experience",
"description": "Expert in building 3D experiences for the web - Three.js, React Three Fiber, Spline, WebGL, and interactive 3D scenes. Covers product configurators, 3D portfolios, immersive websites, and bringing ...",
"risk": "unknown",
"source": "vibeship-spawner-skills (Apache 2.0)",
"date_added": "2026-02-27"
},
{
"id": "ab-test-setup",
"path": "skills/ab-test-setup",
"category": "uncategorized",
"name": "ab-test-setup",
"description": "Structured guide for setting up A/B tests with mandatory gates for hypothesis, metrics, and execution readiness.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "accessibility-compliance-accessibility-audit",
"path": "skills/accessibility-compliance-accessibility-audit",
"category": "uncategorized",
"name": "accessibility-compliance-accessibility-audit",
"description": "You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "active-directory-attacks",
"path": "skills/active-directory-attacks",
"category": "uncategorized",
"name": "active-directory-attacks",
"description": "This skill should be used when the user asks to \"attack Active Directory\", \"exploit AD\", \"Kerberoasting\", \"DCSync\", \"pass-the-hash\", \"BloodHound enumeration\", \"Golden Ticket\", ...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "activecampaign-automation",
"path": "skills/activecampaign-automation",
"category": "uncategorized",
"name": "activecampaign-automation",
"description": "Automate ActiveCampaign tasks via Rube MCP (Composio): manage contacts, tags, list subscriptions, automation enrollment, and tasks. Always search tools first for current schemas.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "address-github-comments",
"path": "skills/address-github-comments",
"category": "uncategorized",
"name": "address-github-comments",
"description": "Use when you need to address review or issue comments on an open GitHub Pull Request using the gh CLI.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "agent-evaluation",
"path": "skills/agent-evaluation",
"category": "uncategorized",
"name": "agent-evaluation",
"description": "Testing and benchmarking LLM agents including behavioral testing, capability assessment, reliability metrics, and production monitoring\u2014where even top agents achieve less than 50% on re...",
"risk": "unknown",
"source": "vibeship-spawner-skills (Apache 2.0)",
"date_added": "2026-02-27"
},
{
"id": "agent-framework-azure-ai-py",
"path": "skills/agent-framework-azure-ai-py",
"category": "uncategorized",
"name": "agent-framework-azure-ai-py",
"description": "Build Azure AI Foundry agents using the Microsoft Agent Framework Python SDK (agent-framework-azure-ai). Use when creating persistent agents with AzureAIAgentsProvider, using hosted tools (code int...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "agent-manager-skill",
"path": "skills/agent-manager-skill",
"category": "uncategorized",
"name": "agent-manager-skill",
"description": "Manage multiple local CLI agents via tmux sessions (start/stop/monitor/assign) with cron-friendly scheduling.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "agent-memory-mcp",
"path": "skills/agent-memory-mcp",
"category": "uncategorized",
"name": "agent-memory-mcp",
"description": "A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "agent-memory-systems",
"path": "skills/agent-memory-systems",
"category": "uncategorized",
"name": "agent-memory-systems",
"description": "Memory is the cornerstone of intelligent agents. Without it, every interaction starts from zero. This skill covers the architecture of agent memory: short-term (context window), long-term (vector s...",
"risk": "unknown",
"source": "vibeship-spawner-skills (Apache 2.0)",
"date_added": "2026-02-27"
},
{
"id": "agent-orchestration-improve-agent",
"path": "skills/agent-orchestration-improve-agent",
"category": "uncategorized",
"name": "agent-orchestration-improve-agent",
"description": "Systematic improvement of existing agents through performance analysis, prompt engineering, and continuous iteration.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "agent-orchestration-multi-agent-optimize",
"path": "skills/agent-orchestration-multi-agent-optimize",
"category": "uncategorized",
"name": "agent-orchestration-multi-agent-optimize",
"description": "Optimize multi-agent systems with coordinated profiling, workload distribution, and cost-aware orchestration. Use when improving agent performance, throughput, or reliability.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "agent-tool-builder",
"path": "skills/agent-tool-builder",
"category": "uncategorized",
"name": "agent-tool-builder",
"description": "Tools are how AI agents interact with the world. A well-designed tool is the difference between an agent that works and one that hallucinates, fails silently, or costs 10x more tokens than necessar...",
"risk": "unknown",
"source": "vibeship-spawner-skills (Apache 2.0)",
"date_added": "2026-02-27"
},
{
"id": "agentfolio",
"path": "skills/agentfolio",
"category": "uncategorized",
"name": "agentfolio",
"description": "Skill for discovering and researching autonomous AI agents, tools, and ecosystems using the AgentFolio directory.",
"risk": "unknown",
"source": "agentfolio.io",
"date_added": "2026-02-27"
},
{
"id": "agents-v2-py",
"path": "skills/agents-v2-py",
"category": "uncategorized",
"name": "agents-v2-py",
"description": "Build container-based Foundry Agents with Azure AI Projects SDK (ImageBasedHostedAgentDefinition). Use when creating hosted agents with custom container images in Azure AI Foundry.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "ai-agent-development",
"path": "skills/ai-agent-development",
"category": "granular-workflow-bundle",
"name": "ai-agent-development",
"description": "AI agent development workflow for building autonomous agents, multi-agent systems, and agent orchestration with CrewAI, LangGraph, and custom agents.",
"risk": "safe",
"source": "personal",
"date_added": "2026-02-27"
},
{
"id": "ai-agents-architect",
"path": "skills/ai-agents-architect",
"category": "uncategorized",
"name": "ai-agents-architect",
"description": "Expert in designing and building autonomous AI agents. Masters tool use, memory systems, planning strategies, and multi-agent orchestration. Use when: build agent, AI agent, autonomous agent, tool ...",
"risk": "unknown",
"source": "vibeship-spawner-skills (Apache 2.0)",
"date_added": "2026-02-27"
},
{
"id": "ai-engineer",
"path": "skills/ai-engineer",
"category": "uncategorized",
"name": "ai-engineer",
"description": "You are an AI engineer specializing in production-grade LLM applications, generative AI systems, and intelligent agent architectures.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "ai-ml",
"path": "skills/ai-ml",
"category": "workflow-bundle",
"name": "ai-ml",
"description": "AI and machine learning workflow covering LLM application development, RAG implementation, agent architecture, ML pipelines, and AI-powered features.",
"risk": "safe",
"source": "personal",
"date_added": "2026-02-27"
},
{
"id": "ai-product",
"path": "skills/ai-product",
"category": "uncategorized",
"name": "ai-product",
"description": "Every product will be AI-powered. The question is whether you'll build it right or ship a demo that falls apart in production. This skill covers LLM integration patterns, RAG architecture, prompt ...",
"risk": "unknown",
"source": "vibeship-spawner-skills (Apache 2.0)",
"date_added": "2026-02-27"
},
{
"id": "ai-wrapper-product",
"path": "skills/ai-wrapper-product",
"category": "uncategorized",
"name": "ai-wrapper-product",
"description": "Expert in building products that wrap AI APIs (OpenAI, Anthropic, etc.) into focused tools people will pay for. Not just 'ChatGPT but different' - products that solve specific problems with AI. Cov...",
"risk": "unknown",
"source": "vibeship-spawner-skills (Apache 2.0)",
"date_added": "2026-02-27"
},
{
"id": "airflow-dag-patterns",
"path": "skills/airflow-dag-patterns",
"category": "uncategorized",
"name": "airflow-dag-patterns",
"description": "Build production Apache Airflow DAGs with best practices for operators, sensors, testing, and deployment. Use when creating data pipelines, orchestrating workflows, or scheduling batch jobs.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "airtable-automation",
"path": "skills/airtable-automation",
"category": "uncategorized",
"name": "airtable-automation",
"description": "Automate Airtable tasks via Rube MCP (Composio): records, bases, tables, fields, views. Always search tools first for current schemas.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "algolia-search",
"path": "skills/algolia-search",
"category": "uncategorized",
"name": "algolia-search",
"description": "Expert patterns for Algolia search implementation, indexing strategies, React InstantSearch, and relevance tuning Use when: adding search to, algolia, instantsearch, search api, search functionality.",
"risk": "unknown",
"source": "vibeship-spawner-skills (Apache 2.0)",
"date_added": "2026-02-27"
},
{
"id": "algorithmic-art",
"path": "skills/algorithmic-art",
"category": "uncategorized",
"name": "algorithmic-art",
"description": "Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields,...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "amplitude-automation",
"path": "skills/amplitude-automation",
"category": "uncategorized",
"name": "amplitude-automation",
"description": "Automate Amplitude tasks via Rube MCP (Composio): events, user activity, cohorts, user identification. Always search tools first for current schemas.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "analytics-tracking",
"path": "skills/analytics-tracking",
"category": "uncategorized",
"name": "analytics-tracking",
"description": "You are an expert in **analytics implementation and measurement design**. Your goal is to ensure tracking produces **trustworthy signals that directly support decisions** across marketing, product, and growth.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "android-jetpack-compose-expert",
"path": "skills/android-jetpack-compose-expert",
"category": "uncategorized",
"name": "android-jetpack-compose-expert",
"description": "Expert guidance for building modern Android UIs with Jetpack Compose, covering state management, navigation, performance, and Material Design 3.",
"risk": "safe",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "android_ui_verification",
"path": "skills/android_ui_verification",
"category": "uncategorized",
"name": "android_ui_verification",
"description": "Automated end-to-end UI testing and verification on an Android Emulator using ADB.",
"risk": "safe",
"source": "community",
"date_added": null
},
{
"id": "angular",
"path": "skills/angular",
"category": "uncategorized",
"name": "angular",
"description": "Master modern Angular development with Signals, Standalone Components, Zoneless applications, SSR/Hydration, and the latest reactive patterns.",
"risk": "safe",
"source": "self",
"date_added": "2026-02-27"
},
{
"id": "angular-best-practices",
"path": "skills/angular-best-practices",
"category": "uncategorized",
"name": "angular-best-practices",
"description": "Angular performance optimization and best practices guide. Use when writing, reviewing, or refactoring Angular code for optimal performance, bundle size, and rendering efficiency.",
"risk": "safe",
"source": "self",
"date_added": "2026-02-27"
},
{
"id": "angular-migration",
"path": "skills/angular-migration",
"category": "uncategorized",
"name": "angular-migration",
"description": "Migrate from AngularJS to Angular using hybrid mode, incremental component rewriting, and dependency injection updates. Use when upgrading AngularJS applications, planning framework migrations, or ...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "angular-state-management",
"path": "skills/angular-state-management",
"category": "uncategorized",
"name": "angular-state-management",
"description": "Master modern Angular state management with Signals, NgRx, and RxJS. Use when setting up global state, managing component stores, choosing between state solutions, or migrating from legacy patterns.",
"risk": "safe",
"source": "self",
"date_added": "2026-02-27"
},
{
"id": "angular-ui-patterns",
"path": "skills/angular-ui-patterns",
"category": "uncategorized",
"name": "angular-ui-patterns",
"description": "Modern Angular UI patterns for loading states, error handling, and data display. Use when building UI components, handling async data, or managing component states.",
"risk": "safe",
"source": "self",
"date_added": "2026-02-27"
},
{
"id": "anti-reversing-techniques",
"path": "skills/anti-reversing-techniques",
"category": "uncategorized",
"name": "anti-reversing-techniques",
"description": "Understand anti-reversing, obfuscation, and protection techniques encountered during software analysis. Use when analyzing protected binaries, bypassing anti-debugging for authorized analysis, or u...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "antigravity-workflows",
"path": "skills/antigravity-workflows",
"category": "uncategorized",
"name": "antigravity-workflows",
"description": "Orchestrate multiple Antigravity skills through guided workflows for SaaS MVP delivery, security audits, AI agent builds, and browser QA.",
"risk": "none",
"source": "self",
"date_added": "2026-02-27"
},
{
"id": "api-design-principles",
"path": "skills/api-design-principles",
"category": "uncategorized",
"name": "api-design-principles",
"description": "Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "api-documentation",
"path": "skills/api-documentation",
"category": "granular-workflow-bundle",
"name": "api-documentation",
"description": "API documentation workflow for generating OpenAPI specs, creating developer guides, and maintaining comprehensive API documentation.",
"risk": "safe",
"source": "personal",
"date_added": "2026-02-27"
},
{
"id": "api-documentation-generator",
"path": "skills/api-documentation-generator",
"category": "uncategorized",
"name": "api-documentation-generator",
"description": "Generate comprehensive, developer-friendly API documentation from code, including endpoints, parameters, examples, and best practices",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "api-documenter",
"path": "skills/api-documenter",
"category": "uncategorized",
"name": "api-documenter",
"description": "You are an expert API documentation specialist mastering modern developer experience through comprehensive, interactive, and AI-enhanced documentation.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "api-fuzzing-bug-bounty",
"path": "skills/api-fuzzing-bug-bounty",
"category": "uncategorized",
"name": "api-fuzzing-bug-bounty",
"description": "This skill should be used when the user asks to \"test API security\", \"fuzz APIs\", \"find IDOR vulnerabilities\", \"test REST API\", \"test GraphQL\", \"API penetration testing\", \"bug b...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "api-patterns",
"path": "skills/api-patterns",
"category": "uncategorized",
"name": "api-patterns",
"description": "API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "api-security-best-practices",
"path": "skills/api-security-best-practices",
"category": "uncategorized",
"name": "api-security-best-practices",
"description": "Implement secure API design patterns including authentication, authorization, input validation, rate limiting, and protection against common API vulnerabilities",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "api-security-testing",
"path": "skills/api-security-testing",
"category": "granular-workflow-bundle",
"name": "api-security-testing",
"description": "API security testing workflow for REST and GraphQL APIs covering authentication, authorization, rate limiting, input validation, and security best practices.",
"risk": "safe",
"source": "personal",
"date_added": "2026-02-27"
},
{
"id": "api-testing-observability-api-mock",
"path": "skills/api-testing-observability-api-mock",
"category": "uncategorized",
"name": "api-testing-observability-api-mock",
"description": "You are an API mocking expert specializing in realistic mock services for development, testing, and demos. Design mocks that simulate real API behavior and enable parallel development.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "app-builder",
"path": "skills/app-builder",
"category": "uncategorized",
"name": "app-builder",
"description": "Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "app-store-optimization",
"path": "skills/app-store-optimization",
"category": "uncategorized",
"name": "app-store-optimization",
"description": "Complete App Store Optimization (ASO) toolkit for researching, optimizing, and tracking mobile app performance on Apple App Store and Google Play Store",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "appdeploy",
"path": "skills/appdeploy",
"category": "uncategorized",
"name": "appdeploy",
"description": "Deploy web apps with backend APIs, database, and file storage. Use when the user asks to deploy or publish a website or web app and wants a public URL. Uses HTTP API via curl.",
"risk": "safe",
"source": "AppDeploy (MIT)",
"date_added": "2026-02-27"
},
{
"id": "application-performance-performance-optimization",
"path": "skills/application-performance-performance-optimization",
"category": "uncategorized",
"name": "application-performance-performance-optimization",
"description": "Optimize end-to-end application performance with profiling, observability, and backend/frontend tuning. Use when coordinating performance optimization across the stack.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "architect-review",
"path": "skills/architect-review",
"category": "uncategorized",
"name": "architect-review",
"description": "Master software architect specializing in modern architecture",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "architecture",
"path": "skills/architecture",
"category": "uncategorized",
"name": "architecture",
"description": "Architectural decision-making framework. Requirements analysis, trade-off evaluation, ADR documentation. Use when making architecture decisions or analyzing system design.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "architecture-decision-records",
"path": "skills/architecture-decision-records",
"category": "uncategorized",
"name": "architecture-decision-records",
"description": "Write and maintain Architecture Decision Records (ADRs) following best practices for technical decision documentation. Use when documenting significant technical decisions, reviewing past architect...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "architecture-patterns",
"path": "skills/architecture-patterns",
"category": "uncategorized",
"name": "architecture-patterns",
"description": "Implement proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design. Use when architecting complex backend systems or refactoring existing ...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "arm-cortex-expert",
"path": "skills/arm-cortex-expert",
"category": "uncategorized",
"name": "arm-cortex-expert",
"description": "- Working on @arm-cortex-expert tasks or workflows - Needing guidance, best practices, or checklists for @arm-cortex-expert",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "asana-automation",
"path": "skills/asana-automation",
"category": "uncategorized",
"name": "asana-automation",
"description": "Automate Asana tasks via Rube MCP (Composio): tasks, projects, sections, teams, workspaces. Always search tools first for current schemas.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "async-python-patterns",
"path": "skills/async-python-patterns",
"category": "uncategorized",
"name": "async-python-patterns",
"description": "Master Python asyncio, concurrent programming, and async/await patterns for high-performance applications. Use when building async APIs, concurrent systems, or I/O-bound applications requiring non-...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "attack-tree-construction",
"path": "skills/attack-tree-construction",
"category": "uncategorized",
"name": "attack-tree-construction",
"description": "Build comprehensive attack trees to visualize threat paths. Use when mapping attack scenarios, identifying defense gaps, or communicating security risks to stakeholders.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "audio-transcriber",
"path": "skills/audio-transcriber",
"category": "content",
"name": "audio-transcriber",
"description": "Transform audio recordings into professional Markdown documentation with intelligent summaries using LLM integration",
"risk": "safe",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "auth-implementation-patterns",
"path": "skills/auth-implementation-patterns",
"category": "uncategorized",
"name": "auth-implementation-patterns",
"description": "Master authentication and authorization patterns including JWT, OAuth2, session management, and RBAC to build secure, scalable access control systems. Use when implementing auth systems, securing A...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "automate-whatsapp",
"path": "skills/automate-whatsapp",
"category": "uncategorized",
"name": "automate-whatsapp",
"description": "Build WhatsApp automations with Kapso workflows: configure WhatsApp triggers, edit workflow graphs, manage executions, deploy functions, and use databases/integrations for state. Use when automatin...",
"risk": "safe",
"source": "https://github.com/gokapso/agent-skills/tree/master/skills/automate-whatsapp",
"date_added": "2026-02-27"
},
{
"id": "autonomous-agent-patterns",
"path": "skills/autonomous-agent-patterns",
"category": "uncategorized",
"name": "autonomous-agent-patterns",
"description": "Design patterns for building autonomous coding agents. Covers tool integration, permission systems, browser automation, and human-in-the-loop workflows. Use when building AI agents, designing tool ...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "autonomous-agents",
"path": "skills/autonomous-agents",
"category": "uncategorized",
"name": "autonomous-agents",
"description": "Autonomous agents are AI systems that can independently decompose goals, plan actions, execute tools, and self-correct without constant human guidance. The challenge isn't making them capable - it'...",
"risk": "unknown",
"source": "vibeship-spawner-skills (Apache 2.0)",
"date_added": "2026-02-27"
},
{
"id": "avalonia-layout-zafiro",
"path": "skills/avalonia-layout-zafiro",
"category": "uncategorized",
"name": "avalonia-layout-zafiro",
"description": "Guidelines for modern Avalonia UI layout using Zafiro.Avalonia, emphasizing shared styles, generic components, and avoiding XAML redundancy.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "avalonia-viewmodels-zafiro",
"path": "skills/avalonia-viewmodels-zafiro",
"category": "uncategorized",
"name": "avalonia-viewmodels-zafiro",
"description": "Optimal ViewModel and Wizard creation patterns for Avalonia using Zafiro and ReactiveUI.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "avalonia-zafiro-development",
"path": "skills/avalonia-zafiro-development",
"category": "uncategorized",
"name": "avalonia-zafiro-development",
"description": "Mandatory skills, conventions, and behavioral rules for Avalonia UI development using the Zafiro toolkit.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "aws-compliance-checker",
"path": "skills/security/aws-compliance-checker",
"category": "security",
"name": "aws-compliance-checker",
"description": "Automated compliance checking against CIS, PCI-DSS, HIPAA, and SOC 2 benchmarks",
"risk": "safe",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "aws-cost-cleanup",
"path": "skills/aws-cost-cleanup",
"category": "uncategorized",
"name": "aws-cost-cleanup",
"description": "Automated cleanup of unused AWS resources to reduce costs",
"risk": "safe",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "aws-cost-optimizer",
"path": "skills/aws-cost-optimizer",
"category": "uncategorized",
"name": "aws-cost-optimizer",
"description": "Comprehensive AWS cost analysis and optimization recommendations using AWS CLI and Cost Explorer",
"risk": "safe",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "aws-iam-best-practices",
"path": "skills/security/aws-iam-best-practices",
"category": "security",
"name": "aws-iam-best-practices",
"description": "IAM policy review, hardening, and least privilege implementation",
"risk": "safe",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "aws-penetration-testing",
"path": "skills/aws-penetration-testing",
"category": "uncategorized",
"name": "aws-penetration-testing",
"description": "This skill should be used when the user asks to \"pentest AWS\", \"test AWS security\", \"enumerate IAM\", \"exploit cloud infrastructure\", \"AWS privilege escalation\", \"S3 bucket testing...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "aws-secrets-rotation",
"path": "skills/security/aws-secrets-rotation",
"category": "security",
"name": "aws-secrets-rotation",
"description": "Automate AWS secrets rotation for RDS, API keys, and credentials",
"risk": "safe",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "aws-security-audit",
"path": "skills/security/aws-security-audit",
"category": "security",
"name": "aws-security-audit",
"description": "Comprehensive AWS security posture assessment using AWS CLI and security best practices",
"risk": "safe",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "aws-serverless",
"path": "skills/aws-serverless",
"category": "uncategorized",
"name": "aws-serverless",
"description": "Specialized skill for building production-ready serverless applications on AWS. Covers Lambda functions, API Gateway, DynamoDB, SQS/SNS event-driven patterns, SAM/CDK deployment, and cold start opt...",
"risk": "unknown",
"source": "vibeship-spawner-skills (Apache 2.0)",
"date_added": "2026-02-27"
},
{
"id": "aws-skills",
"path": "skills/aws-skills",
"category": "uncategorized",
"name": "aws-skills",
"description": "AWS development with infrastructure automation and cloud architecture patterns",
"risk": "safe",
"source": "https://github.com/zxkane/aws-skills",
"date_added": "2026-02-27"
},
{
"id": "azd-deployment",
"path": "skills/azd-deployment",
"category": "uncategorized",
"name": "azd-deployment",
"description": "Deploy containerized applications to Azure Container Apps using Azure Developer CLI (azd). Use when setting up azd projects, writing azure.yaml configuration, creating Bicep infrastructure for Cont...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-agents-persistent-dotnet",
"path": "skills/azure-ai-agents-persistent-dotnet",
"category": "uncategorized",
"name": "azure-ai-agents-persistent-dotnet",
"description": "Low-level SDK for creating and managing persistent AI agents with threads, messages, runs, and tools.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-agents-persistent-java",
"path": "skills/azure-ai-agents-persistent-java",
"category": "uncategorized",
"name": "azure-ai-agents-persistent-java",
"description": "Low-level SDK for creating and managing persistent AI agents with threads, messages, runs, and tools.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-anomalydetector-java",
"path": "skills/azure-ai-anomalydetector-java",
"category": "uncategorized",
"name": "azure-ai-anomalydetector-java",
"description": "Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate/multivariate anomaly detection, time-series analysis, or AI-powered monitoring.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-contentsafety-java",
"path": "skills/azure-ai-contentsafety-java",
"category": "uncategorized",
"name": "azure-ai-contentsafety-java",
"description": "Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text/image analysis, blocklist management, or harm detection for hate, violence, sexual conten...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-contentsafety-py",
"path": "skills/azure-ai-contentsafety-py",
"category": "uncategorized",
"name": "azure-ai-contentsafety-py",
"description": "Detect harmful user-generated and AI-generated content in applications.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-contentsafety-ts",
"path": "skills/azure-ai-contentsafety-ts",
"category": "uncategorized",
"name": "azure-ai-contentsafety-ts",
"description": "Analyze text and images for harmful content using Azure AI Content Safety (@azure-rest/ai-content-safety). Use when moderating user-generated content, detecting hate speech, violence, sexual conten...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-contentunderstanding-py",
"path": "skills/azure-ai-contentunderstanding-py",
"category": "uncategorized",
"name": "azure-ai-contentunderstanding-py",
"description": "Multimodal AI service that extracts semantic content from documents, video, audio, and image files for RAG and automated workflows.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-document-intelligence-dotnet",
"path": "skills/azure-ai-document-intelligence-dotnet",
"category": "uncategorized",
"name": "azure-ai-document-intelligence-dotnet",
"description": "Extract text, tables, and structured data from documents using prebuilt and custom models.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-document-intelligence-ts",
"path": "skills/azure-ai-document-intelligence-ts",
"category": "uncategorized",
"name": "azure-ai-document-intelligence-ts",
"description": "Extract text, tables, and structured data from documents using Azure Document Intelligence (@azure-rest/ai-document-intelligence). Use when processing invoices, receipts, IDs, forms, or building cu...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-formrecognizer-java",
"path": "skills/azure-ai-formrecognizer-java",
"category": "uncategorized",
"name": "azure-ai-formrecognizer-java",
"description": "Build document analysis applications with Azure Document Intelligence (Form Recognizer) SDK for Java. Use when extracting text, tables, key-value pairs from documents, receipts, invoices, or buildi...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-ml-py",
"path": "skills/azure-ai-ml-py",
"category": "uncategorized",
"name": "azure-ai-ml-py",
"description": "Client library for managing Azure ML resources: workspaces, jobs, models, data, and compute.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-openai-dotnet",
"path": "skills/azure-ai-openai-dotnet",
"category": "uncategorized",
"name": "azure-ai-openai-dotnet",
"description": "Client library for Azure OpenAI Service providing access to OpenAI models including GPT-4, GPT-4o, embeddings, DALL-E, and Whisper.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-projects-dotnet",
"path": "skills/azure-ai-projects-dotnet",
"category": "uncategorized",
"name": "azure-ai-projects-dotnet",
"description": "High-level SDK for Azure AI Foundry project operations including agents, connections, datasets, deployments, evaluations, and indexes.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-projects-java",
"path": "skills/azure-ai-projects-java",
"category": "uncategorized",
"name": "azure-ai-projects-java",
"description": "High-level SDK for Azure AI Foundry project management with access to connections, datasets, indexes, and evaluations.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-projects-py",
"path": "skills/azure-ai-projects-py",
"category": "uncategorized",
"name": "azure-ai-projects-py",
"description": "Build AI applications using the Azure AI Projects Python SDK (azure-ai-projects). Use when working with Foundry project clients, creating versioned agents with PromptAgentDefinition, running evalua...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-projects-ts",
"path": "skills/azure-ai-projects-ts",
"category": "uncategorized",
"name": "azure-ai-projects-ts",
"description": "Build AI applications using Azure AI Projects SDK for JavaScript (@azure/ai-projects). Use when working with Foundry project clients, agents, connections, deployments, datasets, indexes, evaluation...",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-textanalytics-py",
"path": "skills/azure-ai-textanalytics-py",
"category": "uncategorized",
"name": "azure-ai-textanalytics-py",
"description": "Client library for Azure AI Language service NLP capabilities including sentiment, entities, key phrases, and more.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-transcription-py",
"path": "skills/azure-ai-transcription-py",
"category": "uncategorized",
"name": "azure-ai-transcription-py",
"description": "Client library for Azure AI Transcription (speech-to-text) with real-time and batch transcription.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-translation-document-py",
"path": "skills/azure-ai-translation-document-py",
"category": "uncategorized",
"name": "azure-ai-translation-document-py",
"description": "Client library for Azure AI Translator document translation service for batch document translation with format preservation.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"
},
{
"id": "azure-ai-translation-text-py",
"path": "skills/azure-ai-translation-text-py",
"category": "uncategorized",
"name": "azure-ai-translation-text-py",
"description": "Client library for Azure AI Translator text translation service for real-time text translation, transliteration, and language operations.",
"risk": "unknown",
"source": "community",
"date_added": "2026-02-27"