-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeatured-skills.json
More file actions
5029 lines (5029 loc) · 188 KB
/
Copy pathfeatured-skills.json
File metadata and controls
5029 lines (5029 loc) · 188 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
{
"updated_at": "2026-08-22T00:25:57.087Z",
"total": 300,
"categories": [
"ai-assistant"
],
"skills": [
{
"slug": "academy-guide",
"name": "academy-guide",
"summary": ">",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/academy-guide",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "algorithmic-art",
"name": "algorithmic-art",
"summary": "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, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/algorithmic-art",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "brand-guidelines",
"name": "brand-guidelines",
"summary": "Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/brand-guidelines",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "canvas-design",
"name": "canvas-design",
"summary": "Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/canvas-design",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "claude-api",
"name": "claude-api",
"summary": "|-",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/claude-api",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "discernment-nudge",
"name": "discernment-nudge",
"summary": ">",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/discernment-nudge",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "doc-coauthoring",
"name": "doc-coauthoring",
"summary": "Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/doc-coauthoring",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "docx",
"name": "docx",
"summary": "Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/docx",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "frontend-design",
"name": "frontend-design",
"summary": "Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/frontend-design",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "internal-comms",
"name": "internal-comms",
"summary": "A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/internal-comms",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "mcp-builder",
"name": "mcp-builder",
"summary": "Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/mcp-builder",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "pdf",
"name": "pdf",
"summary": "Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/pdf",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "pptx",
"name": "pptx",
"summary": "Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \\\"deck,\\\" \\\"slides,\\\" \\\"presentation,\\\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/pptx",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "skill-creator",
"name": "skill-creator",
"summary": "Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/skill-creator",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "slack-gif-creator",
"name": "slack-gif-creator",
"summary": "Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Slack like \"make me a GIF of X doing Y for Slack.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/slack-gif-creator",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "template",
"name": "template-skill",
"summary": "Replace with description of the skill and when Claude should use it.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/template",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "theme-factory",
"name": "theme-factory",
"summary": "Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/theme-factory",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "web-artifacts-builder",
"name": "web-artifacts-builder",
"summary": "Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/web-artifacts-builder",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "webapp-testing",
"name": "webapp-testing",
"summary": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/webapp-testing",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "xlsx",
"name": "xlsx",
"summary": "Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .xltx, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like \\\"the xlsx in my downloads\\\") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved.",
"downloads": 0,
"stars": 170864,
"category": "ai-assistant",
"tags": [
"agent-skills"
],
"source_url": "https://github.com/anthropics/skills/tree/main/skills/xlsx",
"updated_at": "2026-08-22T00:23:13Z"
},
{
"slug": "00-andruia-consultant",
"name": "00-andruia-consultant",
"summary": "Arquitecto de Soluciones Principal y Consultor Tecnológico de Andru.ia. Diagnostica y traza la hoja de ruta óptima para proyectos de IA en español.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/00-andruia-consultant",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "007",
"name": "007",
"summary": "Security audit, hardening, threat modeling (STRIDE/PASTA), Red/Blue Team, OWASP checks, code review, incident response, and infrastructure security for any project.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/007",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "10-andruia-skill-smith",
"name": "10-andruia-skill-smith",
"summary": "Ingeniero de Sistemas de Andru.ia. Diseña, redacta y despliega nuevas habilidades (skills) dentro del repositorio siguiendo el Estándar de Diamante.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/10-andruia-skill-smith",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "20-andruia-niche-intelligence",
"name": "20-andruia-niche-intelligence",
"summary": "Estratega de Inteligencia de Dominio de Andru.ia. Analiza el nicho específico de un proyecto para inyectar conocimientos, regulaciones y estándares únicos del sector. Actívalo tras definir el nicho.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/20-andruia-niche-intelligence",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "2slides-ppt-generator",
"name": "2slides-ppt-generator",
"summary": "AI-powered presentation generation via the 2slides API — create slides from text, match a reference image style, summarize documents into decks, add AI voice narration, and export pages/audio. Use for any \\\"make slides\\\", \\\"create a deck\\\", or \\\"slides from this document\\\" request.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/2slides-ppt-generator",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "3d-web-experience",
"name": "3d-web-experience",
"summary": "Expert in building 3D experiences for the web - Three.js, React",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/3d-web-experience",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "ab-test-setup",
"name": "ab-test-setup",
"summary": "Structured guide for setting up A/B tests with mandatory gates for hypothesis, metrics, and execution readiness.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/ab-test-setup",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "ab-testing",
"name": "ab-testing",
"summary": "When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions \"A/B test,\" \"split test,\" \"experiment,\" \"test this change,\" \"variant copy,\" \"multivariate test,\" \"hypothesis,\" \"should I test this,\"...",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/ab-testing",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "acceptance-orchestrator",
"name": "acceptance-orchestrator",
"summary": "Use when a coding task should be driven end-to-end from issue intake through implementation, review, deployment, and acceptance verification with minimal human re-intervention.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/acceptance-orchestrator",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "accessibility-compliance-accessibility-audit",
"name": "accessibility-compliance-accessibility-audit",
"summary": "You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/accessibility-compliance-accessibility-audit",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "accesslint-audit",
"name": "accesslint-audit",
"summary": "Find and fix WCAG 2.2 accessibility issues. Two modes — report (sweep a codebase or page, produce a prioritized written report, no edits) and fix (audit→edit→verify loop on a target). Prefers direct-CDP live-DOM auditing; falls back to a browser-MCP composition or HTML-string audits.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/accesslint-audit",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "accesslint-diff",
"name": "accesslint-diff",
"summary": "Diff a live page's accessibility violations against a baseline — by default compares uncommitted changes (stash-based), or pass --branch [<name>] to diff against a branch. Reports only new violations introduced, violations fixed, and pre-existing count. Use `scan` for a full audit with no diffing.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/accesslint-diff",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "accesslint-scan",
"name": "accesslint-scan",
"summary": "Audit a live page for accessibility issues, locate each WCAG violation precisely, and return a selector-grounded fix worklist without editing.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/accesslint-scan",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "accint-commitments",
"name": "accint-commitments",
"summary": "Triage acc's open promises and close them with honest real-world verdicts via acc_act(runtime=\"outcome\").",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/accint-commitments",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "accint-frames",
"name": "accint-frames",
"summary": "Drain acc's deliberation queue — open/waiting brain_frames checkpointed by headless runs — via acc_act(runtime=\"continue\").",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/accint-frames",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "accint-solve",
"name": "accint-solve",
"summary": "Route a goal through acc's scored-memory loop via acc_act(runtime=\"solve\"); deliberate any returned brain_frame and submit via continue.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/accint-solve",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "active-directory-attacks",
"name": "active-directory-attacks",
"summary": "Provide comprehensive techniques for attacking Microsoft Active Directory environments. Covers reconnaissance, credential harvesting, Kerberos attacks, lateral movement, privilege escalation, and domain dominance for red team operations and penetration testing.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/active-directory-attacks",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "activecampaign-automation",
"name": "activecampaign-automation",
"summary": "Automate ActiveCampaign tasks via Rube MCP (Composio): manage contacts, tags, list subscriptions, automation enrollment, and tasks. Always search tools first for current schemas.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/activecampaign-automation",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "ad-campaign-analyzer",
"name": "ad-campaign-analyzer",
"summary": "Analyze cross-channel campaign data, quantify uncertainty, and propose evidence-labeled budget tests without overstating causality.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/ad-campaign-analyzer",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "ad-creative",
"name": "ad-creative",
"summary": "Create, iterate, and scale paid ad creative for Google Ads, Meta, LinkedIn, TikTok, and similar platforms. Use when generating headlines, descriptions, primary text, or large sets of ad variations for testing and performance optimization.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/ad-creative",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "add-app-clip",
"name": "add-app-clip",
"summary": "Add an iOS App Clip target to an Expo app. Use when the user mentions App Clip, AASA, apple-app-site-association, appclips, smart app banner, or wants to ship a lightweight iOS Clip invoked from a URL alongside their parent app.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/add-app-clip",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "address-github-comments",
"name": "address-github-comments",
"summary": "Use when you need to address review or issue comments on an open GitHub Pull Request using the gh CLI.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/address-github-comments",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "adhx",
"name": "adhx",
"summary": "Fetch any X/Twitter post as clean LLM-friendly JSON. Converts x.com, twitter.com, or adhx.com links into structured data with full article content, author info, and engagement metrics. No scraping or browser required.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/adhx",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "advanced-evaluation",
"name": "advanced-evaluation",
"summary": "This skill should be used when the user asks to \"implement LLM-as-judge\", \"compare model outputs\", \"create evaluation rubrics\", \"mitigate evaluation bias\", or mentions direct scoring, pairwise comparison, position bias, evaluation pipelines, or automated quality assessment.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/advanced-evaluation",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "advogado-criminal",
"name": "advogado-criminal",
"summary": "Advogado criminalista especializado em Maria da Penha, violencia domestica, feminicidio, direito penal brasileiro, medidas protetivas, inquerito policial e acao penal.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/advogado-criminal",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "advogado-especialista",
"name": "advogado-especialista",
"summary": "Advogado especialista em todas as areas do Direito brasileiro: familia, criminal, trabalhista, tributario, consumidor, imobiliario, empresarial, civil e constitucional.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/advogado-especialista",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "aegisops-ai",
"name": "aegisops-ai",
"summary": "Autonomous DevSecOps & FinOps Guardrails. Orchestrates Gemini 3 Flash to audit Linux Kernel patches, Terraform cost drifts, and K8s compliance.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/aegisops-ai",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-creator",
"name": "agent-creator",
"summary": "Create custom AI subagents with proper plugin structure, persona generation, and companion routing skills.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-creator",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-evaluation",
"name": "agent-evaluation",
"summary": "Testing and benchmarking LLM agents including behavioral testing,",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-evaluation",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-evaluation-reporting",
"name": "agent-evaluation-reporting",
"summary": "Use when summarizing agent evaluations where autonomous, assisted, failed, timed-out, or invalid outcomes must remain distinct and comparable.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-evaluation-reporting",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-framework-azure-ai-py",
"name": "agent-framework-azure-ai-py",
"summary": "Build persistent agents on Azure AI Foundry using the Microsoft Agent Framework Python SDK.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-framework-azure-ai-py",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-harness-fault-injection",
"name": "agent-harness-fault-injection",
"summary": "Use when an agent workflow needs deterministic recovery evidence for sandbox, MCP/tool, worker, checkpoint, memory, or orchestration failures.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-harness-fault-injection",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-manager-skill",
"name": "agent-manager-skill",
"summary": "Manage multiple local CLI agents via tmux sessions (start/stop/monitor/assign) with cron-friendly scheduling.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-manager-skill",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-memory",
"name": "agent-memory",
"summary": "A hybrid memory system that provides persistent, searchable knowledge management for AI agents.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-memory",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-memory-mcp",
"name": "agent-memory-mcp",
"summary": "A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-memory-mcp",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-memory-systems",
"name": "agent-memory-systems",
"summary": "Memory is the cornerstone of intelligent agents. Without it, every",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-memory-systems",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-orchestration-improve-agent",
"name": "agent-orchestration-improve-agent",
"summary": "Systematic improvement of existing agents through performance analysis, prompt engineering, and continuous iteration.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-orchestration-improve-agent",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-orchestration-multi-agent-optimize",
"name": "agent-orchestration-multi-agent-optimize",
"summary": "Optimize multi-agent systems with coordinated profiling, workload distribution, and cost-aware orchestration. Use when improving agent performance, throughput, or reliability.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-orchestration-multi-agent-optimize",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-orchestrator",
"name": "agent-orchestrator",
"summary": "Meta-skill que orquestra todos os agentes do ecossistema. Scan automatico de skills, match por capacidades, coordenacao de workflows multi-skill e registry management.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-orchestrator",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-qa-authoring",
"name": "agent-qa-authoring",
"summary": "Create, edit, validate, and run Agent QA tests, suites, and hooks through MCP or CLI while preserving canonical IDs and schema contracts.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-qa-authoring",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-qa-debug-fix",
"name": "agent-qa-debug-fix",
"summary": "Debug, patch, and verify failed Agent QA runs from MCP evidence, artifacts, logs, and local code without hiding product or infrastructure defects.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-qa-debug-fix",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-qa-result-triage",
"name": "agent-qa-result-triage",
"summary": "Triage failed Agent QA runs with MCP evidence, artifacts, logs, fixed failure categories, confidence, and actionable next steps.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-qa-result-triage",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-self-scheduling",
"name": "agent-self-scheduling",
"summary": "Schedule AI agent runs with cron, loops, or external clocks while avoiding unsafe tight autonomous timers.",
"downloads": 0,
"stars": 45238,
"category": "ai-assistant",
"tags": [
"agent-skills",
"agentic-skills",
"ai-agent-skills",
"ai-agents",
"ai-coding"
],
"source_url": "https://github.com/sickn33/agentic-awesome-skills/tree/main/skills/agent-self-scheduling",
"updated_at": "2026-08-21T22:24:52Z"
},
{
"slug": "agent-squad",