-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy patheditorial-bundles.json
More file actions
2774 lines (2774 loc) · 95.5 KB
/
Copy patheditorial-bundles.json
File metadata and controls
2774 lines (2774 loc) · 95.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
{
"bundles": [
{
"id": "essentials",
"name": "Essentials",
"group": "Essentials & Core",
"emoji": "🚀",
"tagline": "The \"Essentials\" Starter Pack",
"audience": "For everyone. Install these first.",
"description": "For everyone. Install these first.",
"skills": [
{
"id": "concise-planning",
"summary": "Always start with a plan."
},
{
"id": "test-driven-development",
"summary": "Build features and fixes through a red-green-refactor loop."
},
{
"id": "lint-and-validate",
"summary": "Keep your code clean automatically."
},
{
"id": "systematic-debugging",
"summary": "Debug from evidence instead of guesses."
},
{
"id": "git-pushing",
"summary": "Save your work safely."
}
]
},
{
"id": "security-engineer",
"name": "Security Engineer",
"group": "Security & Compliance",
"emoji": "🛡️",
"tagline": "The \"Security Engineer\" Pack",
"audience": "For pentesting, auditing, and hardening.",
"description": "For pentesting, auditing, and hardening.",
"skills": [
{
"id": "ethical-hacking-methodology",
"summary": "Plan authorized security assessments with clear boundaries."
},
{
"id": "threat-modeling-expert",
"summary": "Model threats with STRIDE, PASTA, and attack trees."
},
{
"id": "top-web-vulnerabilities",
"summary": "OWASP-aligned vulnerability taxonomy."
},
{
"id": "burp-suite-testing",
"summary": "Web vulnerability scanning."
},
{
"id": "cloud-penetration-testing",
"summary": "AWS/Azure/GCP security."
},
{
"id": "linux-privilege-escalation",
"summary": "Advanced Linux security assessment."
},
{
"id": "vulnerability-scanner",
"summary": "Advanced vulnerability analysis."
},
{
"id": "security-auditor",
"summary": "Comprehensive security audits."
}
]
},
{
"id": "security-developer",
"name": "Security Developer",
"group": "Security & Compliance",
"emoji": "🔐",
"tagline": "The \"Security Developer\" Pack",
"audience": "For building secure applications.",
"description": "For building secure applications.",
"skills": [
{
"id": "api-security-best-practices",
"summary": "Secure API design patterns."
},
{
"id": "auth-implementation-patterns",
"summary": "JWT, OAuth2, session management."
},
{
"id": "backend-security-coder",
"summary": "Secure backend coding practices."
},
{
"id": "frontend-security-coder",
"summary": "XSS prevention and client-side security."
},
{
"id": "dependency-management-deps-audit",
"summary": "Audit dependency vulnerabilities, licenses, and supply-chain risk."
},
{
"id": "cc-skill-security-review",
"summary": "Security checklist for features."
},
{
"id": "pci-compliance",
"summary": "Payment card security standards."
}
]
},
{
"id": "web-wizard",
"name": "Web Wizard",
"group": "🌐 Web Development",
"emoji": "🌐",
"tagline": "The \"Web Wizard\" Pack",
"audience": "For building modern, high-performance web apps.",
"description": "For building modern, high-performance web apps.",
"skills": [
{
"id": "frontend-design",
"summary": "UI guidelines and aesthetics."
},
{
"id": "tailwind-patterns",
"summary": "Tailwind CSS v4 styling patterns."
},
{
"id": "react-patterns",
"summary": "Modern React patterns and principles."
},
{
"id": "react-best-practices",
"summary": "React & Next.js performance optimization."
},
{
"id": "nextjs-best-practices",
"summary": "Next.js App Router patterns."
},
{
"id": "form-cro",
"summary": "Optimize your forms for conversion."
},
{
"id": "accessibility-compliance-accessibility-audit",
"summary": "Audit WCAG issues and plan concrete remediation."
},
{
"id": "seo-audit",
"summary": "Get found on Google."
}
]
},
{
"id": "web-designer",
"name": "Web Designer",
"group": "🌐 Web Development",
"emoji": "🖌️",
"tagline": "The \"Web Designer\" Pack",
"audience": "For pixel-perfect experiences.",
"description": "For pixel-perfect experiences.",
"skills": [
{
"id": "ui-ux-pro-max",
"summary": "Premium design systems and tokens."
},
{
"id": "frontend-design",
"summary": "The base layer of aesthetics."
},
{
"id": "mobile-design",
"summary": "Mobile-first design principles."
},
{
"id": "accessibility-compliance-accessibility-audit",
"summary": "Audit WCAG issues and plan concrete remediation."
},
{
"id": "canvas-design",
"summary": "Static visuals and posters."
},
{
"id": "3d-web-experience",
"summary": "Build immersive Three.js and React Three Fiber experiences."
},
{
"id": "scroll-experience",
"summary": "Immersive scroll-driven experiences."
}
]
},
{
"id": "full-stack-developer",
"name": "Full-Stack Developer",
"group": "🌐 Web Development",
"emoji": "⚡",
"tagline": "The \"Full-Stack Developer\" Pack",
"audience": "For end-to-end web application development.",
"description": "For end-to-end web application development.",
"skills": [
{
"id": "senior-fullstack",
"summary": "Complete fullstack development guide."
},
{
"id": "frontend-developer",
"summary": "React 19+ and Next.js 15+ expertise."
},
{
"id": "backend-dev-guidelines",
"summary": "Node.js/Express/TypeScript patterns."
},
{
"id": "api-patterns",
"summary": "REST vs GraphQL vs tRPC selection."
},
{
"id": "database-design",
"summary": "Schema design and ORM selection."
},
{
"id": "auth-implementation-patterns",
"summary": "Design secure sessions, JWT, OAuth2, and authorization."
},
{
"id": "stripe-integration",
"summary": "Payments and subscriptions."
},
{
"id": "e2e-testing-patterns",
"summary": "Verify critical user journeys with reliable E2E tests."
}
]
},
{
"id": "agent-architect",
"name": "Agent Architect",
"group": "🤖 AI & Agents",
"emoji": "🤖",
"tagline": "The \"Agent Architect\" Pack",
"audience": "For building AI systems and autonomous agents.",
"description": "For building AI systems and autonomous agents.",
"skills": [
{
"id": "prompt-engineering",
"summary": "Design reliable instructions and prompt workflows."
},
{
"id": "ai-agents-architect",
"summary": "Design autonomous AI agents."
},
{
"id": "mcp-builder",
"summary": "Create your own MCP tools."
},
{
"id": "langgraph",
"summary": "Build stateful agent workflows."
},
{
"id": "rag-engineer",
"summary": "Build RAG systems with vector search."
},
{
"id": "agent-memory-systems",
"summary": "Design durable short- and long-term memory for agents."
},
{
"id": "agent-evaluation",
"summary": "Test and benchmark your agents."
}
]
},
{
"id": "llm-application-developer",
"name": "LLM Application Developer",
"group": "🤖 AI & Agents",
"emoji": "🧠",
"tagline": "The \"LLM Application Developer\" Pack",
"audience": "For building production LLM applications.",
"description": "For building production LLM applications.",
"skills": [
{
"id": "llm-app-patterns",
"summary": "Production-ready LLM patterns."
},
{
"id": "rag-implementation",
"summary": "Retrieval-Augmented Generation."
},
{
"id": "prompt-caching",
"summary": "Cache strategies for LLM prompts."
},
{
"id": "context-window-management",
"summary": "Manage LLM context efficiently."
},
{
"id": "langfuse",
"summary": "LLM observability and tracing."
},
{
"id": "llm-evaluation",
"summary": "Measure LLM quality with automated and human evaluation."
}
]
},
{
"id": "indie-game-dev",
"name": "Indie Game Dev",
"group": "🎮 Game Development",
"emoji": "🎮",
"tagline": "The \"Indie Game Dev\" Pack",
"audience": "For building games with AI assistants.",
"description": "For building games with AI assistants.",
"skills": [
{
"id": "game-development/game-design",
"summary": "Mechanics and loops."
},
{
"id": "game-development/2d-games",
"summary": "Sprites and physics."
},
{
"id": "game-development/3d-games",
"summary": "Models and shaders."
},
{
"id": "unity-developer",
"summary": "Unity 6 LTS development."
},
{
"id": "godot-gdscript-patterns",
"summary": "Godot 4 GDScript patterns."
},
{
"id": "game-development/game-audio",
"summary": "Design sound effects, music systems, and adaptive game audio."
},
{
"id": "algorithmic-art",
"summary": "Generate assets with code."
}
]
},
{
"id": "python-pro",
"name": "Python Pro",
"group": "🐍 Backend & Languages",
"emoji": "🐍",
"tagline": "The \"Python Pro\" Pack",
"audience": "For backend heavyweights and data scientists.",
"description": "For backend heavyweights and data scientists.",
"skills": [
{
"id": "python-pro",
"summary": "Master Python 3.12+ with modern features."
},
{
"id": "python-patterns",
"summary": "Idiomatic Python code."
},
{
"id": "fastapi-pro",
"summary": "High-performance async APIs."
},
{
"id": "fastapi-templates",
"summary": "Production-ready FastAPI projects."
},
{
"id": "django-pro",
"summary": "The battery-included framework."
},
{
"id": "python-testing-patterns",
"summary": "Comprehensive testing with pytest."
},
{
"id": "async-python-patterns",
"summary": "Python asyncio mastery."
}
]
},
{
"id": "typescript-javascript",
"name": "TypeScript & JavaScript",
"group": "🐍 Backend & Languages",
"emoji": "🟦",
"tagline": "The \"TypeScript & JavaScript\" Pack",
"audience": "For modern web development.",
"description": "For modern web development.",
"skills": [
{
"id": "typescript-expert",
"summary": "TypeScript mastery and advanced types."
},
{
"id": "javascript-pro",
"summary": "Modern JavaScript with ES6+."
},
{
"id": "react-best-practices",
"summary": "React performance optimization."
},
{
"id": "nodejs-best-practices",
"summary": "Node.js development principles."
},
{
"id": "nextjs-app-router-patterns",
"summary": "Next.js 14+ App Router."
}
]
},
{
"id": "systems-programming",
"name": "Systems Programming",
"group": "🐍 Backend & Languages",
"emoji": "🦀",
"tagline": "The \"Systems Programming\" Pack",
"audience": "For low-level and performance-critical code.",
"description": "For low-level and performance-critical code.",
"skills": [
{
"id": "rust-pro",
"summary": "Rust 1.75+ with async patterns."
},
{
"id": "go-concurrency-patterns",
"summary": "Go concurrency mastery."
},
{
"id": "golang-pro",
"summary": "Go development expertise."
},
{
"id": "memory-safety-patterns",
"summary": "Memory-safe programming."
},
{
"id": "cpp-pro",
"summary": "Modern C++ development."
}
]
},
{
"id": "startup-founder",
"name": "Startup Founder",
"group": "🦄 Product & Business",
"emoji": "🦄",
"tagline": "The \"Startup Founder\" Pack",
"audience": "For building products, not just code.",
"description": "For building products, not just code.",
"skills": [
{
"id": "product-manager-toolkit",
"summary": "RICE prioritization, PRD templates."
},
{
"id": "competitive-landscape",
"summary": "Competitor analysis."
},
{
"id": "pricing-strategy",
"summary": "Design pricing, packaging, and value metrics."
},
{
"id": "competitor-alternatives",
"summary": "Create comparison pages."
},
{
"id": "launch-strategy",
"summary": "Product launch planning."
},
{
"id": "copywriting",
"summary": "Marketing copy that converts."
},
{
"id": "stripe-integration",
"summary": "Get paid from day one."
}
]
},
{
"id": "business-analyst",
"name": "Business Analyst",
"group": "🦄 Product & Business",
"emoji": "📊",
"tagline": "The \"Business Analyst\" Pack",
"audience": "For data-driven decision making.",
"description": "For data-driven decision making.",
"skills": [
{
"id": "business-analyst",
"summary": "AI-powered analytics and KPIs."
},
{
"id": "startup-metrics-framework",
"summary": "SaaS metrics and unit economics."
},
{
"id": "startup-financial-modeling",
"summary": "3-5 year financial projections."
},
{
"id": "market-sizing-analysis",
"summary": "TAM/SAM/SOM calculations."
},
{
"id": "kpi-dashboard-design",
"summary": "Effective KPI dashboards."
}
]
},
{
"id": "marketing-growth",
"name": "Marketing & Growth",
"group": "🦄 Product & Business",
"emoji": "📈",
"tagline": "The \"Marketing & Growth\" Pack",
"audience": "For driving user acquisition and retention.",
"description": "For driving user acquisition and retention.",
"skills": [
{
"id": "content-strategy",
"summary": "Plan content pillars, topic clusters, and an editorial roadmap."
},
{
"id": "content-creator",
"summary": "SEO-optimized marketing content."
},
{
"id": "seo-audit",
"summary": "Technical SEO health checks."
},
{
"id": "programmatic-seo",
"summary": "Create pages at scale."
},
{
"id": "analytics-tracking",
"summary": "Set up GA4/PostHog correctly."
},
{
"id": "ab-test-setup",
"summary": "Validated learning experiments."
},
{
"id": "email-sequence",
"summary": "Automated email campaigns."
}
]
},
{
"id": "devops-cloud",
"name": "DevOps & Cloud",
"group": "DevOps & Infrastructure",
"emoji": "🌧️",
"tagline": "The \"DevOps & Cloud\" Pack",
"audience": "For infrastructure and scaling.",
"description": "For infrastructure and scaling.",
"skills": [
{
"id": "environment-setup-guide",
"summary": "Standardize development environments for teams."
},
{
"id": "bash-linux",
"summary": "Automate operational work safely from the shell."
},
{
"id": "docker-expert",
"summary": "Master containers and multi-stage builds."
},
{
"id": "terraform-specialist",
"summary": "Infrastructure as Code mastery."
},
{
"id": "kubernetes-architect",
"summary": "K8s architecture and GitOps."
},
{
"id": "aws-serverless",
"summary": "Serverless on AWS (Lambda, DynamoDB)."
},
{
"id": "ci-cd-and-automation",
"summary": "Build CI/CD pipelines with automated quality gates."
},
{
"id": "deployment-procedures",
"summary": "Apply safe rollout and rollback strategies."
}
]
},
{
"id": "observability-monitoring",
"name": "Observability & Monitoring",
"group": "DevOps & Infrastructure",
"emoji": "📊",
"tagline": "The \"Observability & Monitoring\" Pack",
"audience": "For production reliability.",
"description": "For production reliability.",
"skills": [
{
"id": "observability-engineer",
"summary": "Comprehensive monitoring systems."
},
{
"id": "distributed-tracing",
"summary": "Track requests across microservices."
},
{
"id": "slo-implementation",
"summary": "Service Level Objectives."
},
{
"id": "incident-responder",
"summary": "Rapid incident response."
},
{
"id": "postmortem-writing",
"summary": "Blameless postmortems."
},
{
"id": "performance-engineer",
"summary": "Application performance optimization."
}
]
},
{
"id": "data-analytics",
"name": "Data & Analytics",
"group": "📊 Data & Analytics",
"emoji": "📊",
"tagline": "The \"Data & Analytics\" Pack",
"audience": "For making sense of the numbers.",
"description": "For making sense of the numbers.",
"skills": [
{
"id": "analytics-tracking",
"summary": "Set up GA4/PostHog correctly."
},
{
"id": "data-quality-frameworks",
"summary": "Validate data with contracts, dbt tests, and quality monitoring."
},
{
"id": "sql-pro",
"summary": "Modern SQL with cloud-native databases."
},
{
"id": "postgres-best-practices",
"summary": "Postgres optimization."
},
{
"id": "ab-test-setup",
"summary": "Validated learning."
},
{
"id": "database-architect",
"summary": "Database design from scratch."
},
{
"id": "data-storytelling",
"summary": "Turn analysis into clear narratives and decisions."
}
]
},
{
"id": "data-engineering",
"name": "Data Engineering",
"group": "📊 Data & Analytics",
"emoji": "🔄",
"tagline": "The \"Data Engineering\" Pack",
"audience": "For building data pipelines.",
"description": "For building data pipelines.",
"skills": [
{
"id": "data-engineer",
"summary": "Data pipeline architecture."
},
{
"id": "airflow-dag-patterns",
"summary": "Apache Airflow DAGs."
},
{
"id": "dbt-transformation-patterns",
"summary": "Analytics engineering."
},
{
"id": "data-quality-frameworks",
"summary": "Validate pipelines with contracts, dbt tests, and quality monitoring."
},
{
"id": "vector-database-engineer",
"summary": "Vector databases for RAG."
}
]
},
{
"id": "creative-director",
"name": "Creative Director",
"group": "🎨 Creative & Content",
"emoji": "🎨",
"tagline": "The \"Creative Director\" Pack",
"audience": "For visuals, content, and branding.",
"description": "For visuals, content, and branding.",
"skills": [
{
"id": "canvas-design",
"summary": "Generate posters and diagrams."
},
{
"id": "frontend-design",
"summary": "UI aesthetics."
},
{
"id": "content-creator",
"summary": "SEO-optimized blog posts."
},
{
"id": "copy-editing",
"summary": "Polish your prose."
},
{
"id": "algorithmic-art",
"summary": "Code-generated masterpieces."
},
{
"id": "interactive-portfolio",
"summary": "Portfolios that land jobs."
}
]
},
{
"id": "qa-testing",
"name": "QA & Testing",
"group": "🐞 Quality Assurance",
"emoji": "🐞",
"tagline": "The \"QA & Testing\" Pack",
"audience": "For breaking things before users do.",
"description": "For breaking things before users do.",
"skills": [
{
"id": "test-driven-development",
"summary": "Red, Green, Refactor."
},
{
"id": "e2e-testing-patterns",
"summary": "Reliable E2E test suites."
},
{
"id": "browser-automation",
"summary": "End-to-end testing with Playwright."
},
{
"id": "test-fixing",
"summary": "Fix failing tests systematically."
},
{
"id": "systematic-debugging",
"summary": "Diagnose failures from evidence instead of guesses."
},
{
"id": "code-review-checklist",
"summary": "Catch bugs in PRs."
},
{
"id": "ci-cd-and-automation",
"summary": "Run automated test gates consistently in CI/CD."
}
]
},
{
"id": "aas-web-app-builder",
"name": "AAS Web App Builder",
"group": "⭐ Specialized Product Plugins",
"emoji": "🌐",
"tagline": "The \"AAS Web App Builder\" Plugin",
"audience": "Frontend and full-stack developers shipping modern web apps.",
"description": "High-demand workflow with a coherent path from UI design to React/Next.js implementation, forms, Tailwind, and SEO.",
"skills": [
{
"id": "frontend-developer",
"summary": "Build production React and Next.js interfaces."
},
{
"id": "frontend-design",
"summary": "Apply strong UI layout and visual design patterns."
},
{
"id": "react-best-practices",
"summary": "Optimize React performance and maintainability."
},
{
"id": "nextjs-app-router-patterns",
"summary": "Use Next.js App Router patterns safely."
},
{
"id": "nextjs-best-practices",
"summary": "Ship high-quality Next.js applications."
},
{
"id": "tailwind-patterns",
"summary": "Style efficiently with Tailwind CSS patterns."
},
{
"id": "shadcn",
"summary": "Build polished interfaces with shadcn/ui."
},
{
"id": "form-cro",
"summary": "Improve form conversion and usability."
},
{
"id": "seo-audit",
"summary": "Audit technical SEO and discoverability."
},
{
"id": "ui-a11y",
"summary": "Audit WCAG, contrast, focus, labels, motion, and semantic HTML."
}
],
"why": "High-demand workflow with a coherent path from UI design to React/Next.js implementation, forms, Tailwind, and SEO.",
"positioning": "Build modern React/Next.js apps from UI planning to implementation, accessibility, forms, SEO, and QA.",
"recommendedFor": [
"Frontend teams",
"Full-stack builders",
"Startup product engineers"
],
"notFor": [
"Native mobile-only apps",
"Backend-only API services"
],
"defaultPrompts": [
"Use this plugin to audit this Next.js app and produce a prioritized implementation plan.",
"Use this plugin to build a responsive landing page with forms, SEO, and accessibility checks.",
"Use this plugin to review this React component for performance, UX, accessibility, and maintainability."
]
},
{
"id": "aas-product-design-studio",
"name": "AAS Product Design Studio",
"group": "⭐ Specialized Product Plugins",
"emoji": "🎨",
"tagline": "The \"AAS Product Design Studio\" Plugin",
"audience": "Builders who want richer UI, brand, portfolio, and visual product work.",
"description": "Turns design from a generic skill category into a strong plugin proposition with visual direction, responsive UI, motion, and asset creation.",
"skills": [
{
"id": "ui-ux-pro-max",
"summary": "Use advanced UI/UX reasoning and design systems."
},
{
"id": "high-end-visual-design",
"summary": "Raise visual polish for premium interfaces."
},
{
"id": "frontend-design",
"summary": "Apply strong UI layout and visual design patterns."
},
{
"id": "mobile-design",
"summary": "Design mobile-first interaction patterns."
},
{
"id": "3d-web-experience",
"summary": "Create immersive Three.js web experiences."
},
{
"id": "canvas-design",
"summary": "Generate visual assets, posters, and diagrams."
},
{
"id": "scroll-experience",
"summary": "Design scroll-driven web experiences."
},
{
"id": "interactive-portfolio",
"summary": "Create compelling interactive portfolios."
},
{
"id": "ui-a11y",
"summary": "Audit WCAG, contrast, focus, labels, motion, and semantic HTML."
},
{
"id": "ui-review",
"summary": "Review UI quality, usability, and product fit."
}
],
"why": "Turns design from a generic skill category into a strong plugin proposition with visual direction, responsive UI, motion, and asset creation.",
"positioning": "Shape product UI through design critique, visual direction, accessibility, responsive UX, motion, and asset generation.",
"recommendedFor": [
"Product designers",
"Frontend teams",
"Founders polishing a product surface"
],
"notFor": [
"Backend-only services",
"Security audits"
],
"defaultPrompts": [
"Use this plugin to critique this UI and propose a stronger visual direction.",
"Use this plugin to design a responsive accessible product screen and handoff notes for implementation.",
"Use this plugin to improve the visual polish, motion, and accessibility of this interface."
]
},
{
"id": "aas-security-engineer",
"name": "AAS Security Engineer",
"group": "⭐ Specialized Product Plugins",
"emoji": "🛡️",
"tagline": "The \"AAS Security Engineer\" Plugin",
"audience": "Authorized security testing, audit, and hardening teams.",
"description": "Security has enough depth in the catalog to deserve a standalone plugin with explicit authorized-use boundaries and testing workflows.",
"skills": [
{
"id": "ethical-hacking-methodology",
"summary": "Follow an authorized pentest methodology."
},
{
"id": "burp-suite-testing",
"summary": "Test web apps with Burp Suite workflows."
},
{
"id": "top-web-vulnerabilities",
"summary": "Cover OWASP-aligned vulnerability classes."
},
{
"id": "api-security-testing",
"summary": "Test REST and GraphQL API security."
},
{
"id": "linux-privilege-escalation",
"summary": "Assess Linux privilege escalation paths."
},
{
"id": "cloud-penetration-testing",
"summary": "Assess AWS, Azure, and GCP environments."
},
{
"id": "security-auditor",
"summary": "Run comprehensive security audits."
},
{
"id": "vulnerability-scanner",
"summary": "Analyze and validate vulnerability findings."
},
{
"id": "sast-configuration",
"summary": "Configure static application security testing."
},
{
"id": "web-security-testing",
"summary": "Test web application security defensively."
}
],
"why": "Security has enough depth in the catalog to deserve a standalone plugin with explicit authorized-use boundaries and testing workflows.",
"positioning": "Run authorized security testing, audit, vulnerability validation, web testing, and hardening workflows.",
"recommendedFor": [
"Authorized security teams",
"Maintainers validating reported findings",
"Cloud and app security reviewers"
],
"notFor": [
"Unauthorized testing",
"Pure feature implementation"
],
"defaultPrompts": [
"Use this plugin to plan an authorized security assessment for this app and define the evidence to collect.",
"Use this plugin to validate this vulnerability report and separate confirmed risk from false positives.",
"Use this plugin to review this system for web, API, cloud, and SAST coverage gaps."
]
},
{
"id": "aas-secure-app-builder",
"name": "AAS Secure App Builder",
"group": "⭐ Specialized Product Plugins",
"emoji": "🔐",
"tagline": "The \"AAS Secure App Builder\" Plugin",
"audience": "Application developers who want security embedded while building features.",
"description": "Separates defensive implementation from offensive assessment, making a safer and clearer plugin for product engineering teams.",
"skills": [
{
"id": "api-security-best-practices",
"summary": "Design secure APIs from the start."
},
{