-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopen-design-marketplace.json
More file actions
1065 lines (1065 loc) · 67.2 KB
/
Copy pathopen-design-marketplace.json
File metadata and controls
1065 lines (1065 loc) · 67.2 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
{
"$schema": "https://open-design.ai/schemas/marketplace.v1.json",
"specVersion": "1.0.0",
"name": "albert-ai-skills",
"version": "1.0.1",
"owner": {
"name": "Albert Unchiasu",
"url": "https://github.com/ferrarifankid04"
},
"metadata": {
"description": "Skills from Claude Code, Codex, Cursor and Antigravity"
},
"plugins": [
{
"name": "ab-testing",
"title": "Ab Testing",
"version": "1.0.0",
"source": "./claude-code/skills/ab-testing",
"description": "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,\" \"which version "
},
{
"name": "ad-creative",
"title": "Ad Creative",
"version": "1.0.0",
"source": "./claude-code/skills/ad-creative",
"description": "\"When the user wants to generate, iterate, or scale ad creative \u2014 headlines, descriptions, primary text, or full ad variations \u2014 for any paid advertising platform. Also use when the user mentions 'ad copy variations,' 'ad creative,' 'generate headlines,' 'RSA headlines,' 'bulk ad copy,' 'ad iteratio"
},
{
"name": "ads",
"title": "Ads",
"version": "1.0.0",
"source": "./claude-code/skills/ads",
"description": "\"When the user wants help with paid advertising campaigns on Google Ads, Meta (Facebook/Instagram), LinkedIn, Twitter/X, or other ad platforms. Also use when the user mentions 'PPC,' 'paid media,' 'ROAS,' 'CPA,' 'ad campaign,' 'retargeting,' 'audience targeting,' 'Google Ads,' 'Facebook ads,' 'Linke"
},
{
"name": "agent-browser",
"title": "Agent Browser",
"version": "1.0.0",
"source": "./claude-code/skills/agent-browser",
"description": "Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form"
},
{
"name": "ai-seo",
"title": "Ai Seo",
"version": "1.0.0",
"source": "./claude-code/skills/ai-seo",
"description": "\"When the user wants to optimize content for AI search engines, get cited by LLMs, or appear in AI-generated answers. Also use when the user mentions 'AI SEO,' 'AEO,' 'GEO,' 'LLMO,' 'answer engine optimization,' 'generative engine optimization,' 'LLM optimization,' 'AI Overviews,' 'optimize for Chat"
},
{
"name": "analytics",
"title": "Analytics",
"version": "1.0.0",
"source": "./claude-code/skills/analytics",
"description": "When the user wants to set up, improve, or audit analytics tracking and measurement. Also use when the user mentions \"set up tracking,\" \"GA4,\" \"Google Analytics,\" \"conversion tracking,\" \"event tracking,\" \"UTM parameters,\" \"tag manager,\" \"GTM,\" \"analytics implementation,\" \"tracking plan,\" \"how do I m"
},
{
"name": "antigravity-cavecrew",
"title": "Cavecrew",
"version": "1.0.0",
"source": "./antigravity/caveman/skills/cavecrew",
"description": "> Decision guide for delegating to caveman-style subagents. Tells the main thread WHEN to spawn `cavecrew-investigator` (locate code), `cavecrew-builder` (1-2 file edit), or `cavecrew-reviewer` (diff review) instead of doing the work inline or using vanilla `Explore`. Subagent output is caveman-comp"
},
{
"name": "antigravity-caveman",
"title": "Caveman",
"version": "1.0.0",
"source": "./antigravity/caveman/skills/caveman",
"description": "> Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra. Use when user says \"caveman mode\", \"talk like caveman\", \"use caveman\", \"less to"
},
{
"name": "antigravity-caveman-compress",
"title": "Caveman Compress",
"version": "1.0.0",
"source": "./antigravity/caveman/skills/caveman-compress",
"description": "> Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens. Preserves all technical substance, code, URLs, and structure. Compressed version overwrites the original file. Human-readable backup saved as FILE.original.md. Trigger: /caveman-compres"
},
{
"name": "antigravity-caveman-stats",
"title": "Caveman Stats",
"version": "1.0.0",
"source": "./antigravity/caveman/skills/caveman-stats",
"description": "> Show real token usage and estimated savings for the current session. Reads directly from the Claude Code session log \u2014 no AI estimation. Triggers on /caveman-stats. Output is injected by the mode-tracker hook; the model itself does not compute the numbers."
},
{
"name": "aso",
"title": "Aso",
"version": "1.0.0",
"source": "./claude-code/skills/aso",
"description": "\"When the user wants to audit or optimize an App Store or Google Play listing. Also use when the user mentions 'ASO audit,' 'app store optimization,' 'optimize my app listing,' 'improve app visibility,' 'app store ranking,' 'audit my listing,' 'why aren't people downloading my app,' 'improve my app "
},
{
"name": "automate",
"title": "Automate",
"version": "1.0.0",
"source": "./cursor/skills-cursor/automate",
"description": "Use this skill to create Cursor Automations."
},
{
"name": "babysit",
"title": "Babysit",
"version": "1.0.0",
"source": "./cursor/skills-cursor/babysit",
"description": ">- Keep a PR merge-ready by triaging comments, resolving clear conflicts, and fixing CI in a loop."
},
{
"name": "brandkit",
"title": "Brandkit",
"version": "1.0.0",
"source": "./claude-code/skills/brandkit",
"description": "Premium brand-kit image generation skill for creating high-end brand-guidelines boards, logo systems, identity decks, and visual-world presentations. Trained for minimalist, cinematic, editorial, dark-tech, luxury, cultural, security, gaming, developer-tool, and consumer-app brand systems. Optimized"
},
{
"name": "canvas",
"title": "Canvas",
"version": "1.0.0",
"source": "./cursor/skills-cursor/canvas",
"description": ">- A Cursor Canvas is a live React app that the user can open beside the chat. You MUST use a canvas when the agent produces a standalone analytical artifact \u2014 quantitative analyses, billing investigations, security audits, architecture reviews, data-heavy content, timelines, charts, tables, interac"
},
{
"name": "cavecrew",
"title": "Cavecrew",
"version": "1.0.0",
"source": "./antigravity/caveman/plugins/caveman/skills/cavecrew",
"description": "> Decision guide for delegating to caveman-style subagents. Tells the main thread WHEN to spawn `cavecrew-investigator` (locate code), `cavecrew-builder` (1-2 file edit), or `cavecrew-reviewer` (diff review) instead of doing the work inline or using vanilla `Explore`. Subagent output is caveman-comp"
},
{
"name": "caveman",
"title": "Caveman",
"version": "1.0.0",
"source": "./antigravity/caveman/plugins/caveman/skills/caveman",
"description": "> Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra. Use when user says \"caveman mode\", \"talk like caveman\", \"use caveman\", \"less to"
},
{
"name": "caveman-commit",
"title": "Caveman Commit",
"version": "1.0.0",
"source": "./antigravity/caveman/skills/caveman-commit",
"description": "> Ultra-compressed commit message generator. Cuts noise from commit messages while preserving intent and reasoning. Conventional Commits format. Subject \u226450 chars, body only when \"why\" isn't obvious. Use when user says \"write a commit\", \"commit message\", \"generate commit\", \"/commit\", or invokes /cav"
},
{
"name": "caveman-compress",
"title": "Caveman Compress",
"version": "1.0.0",
"source": "./antigravity/caveman/plugins/caveman/skills/caveman-compress",
"description": "> Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens. Preserves all technical substance, code, URLs, and structure. Compressed version overwrites the original file. Human-readable backup saved as FILE.original.md. Trigger: /caveman-compres"
},
{
"name": "caveman-help",
"title": "Caveman Help",
"version": "1.0.0",
"source": "./antigravity/caveman/skills/caveman-help",
"description": "> Quick-reference card for all caveman modes, skills, and commands. One-shot display, not a persistent mode. Trigger: /caveman-help, \"caveman help\", \"what caveman commands\", \"how do I use caveman\"."
},
{
"name": "caveman-review",
"title": "Caveman Review",
"version": "1.0.0",
"source": "./antigravity/caveman/skills/caveman-review",
"description": "> Ultra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix. Use when user says \"review this PR\", \"code review\", \"review the diff\", \"/review\", or invokes /caveman-review. Auto-triggers when reviewing pu"
},
{
"name": "caveman-stats",
"title": "Caveman Stats",
"version": "1.0.0",
"source": "./antigravity/caveman/plugins/caveman/skills/caveman-stats",
"description": "> Show real token usage and estimated savings for the current session. Reads directly from the Claude Code session log \u2014 no AI estimation. Triggers on /caveman-stats. Output is injected by the mode-tracker hook; the model itself does not compute the numbers."
},
{
"name": "chrome-extensions",
"title": "Chrome Extensions",
"version": "1.0.0",
"source": "./antigravity/plugins/modern-web-guidance-plugin/skills/chrome-extensions",
"description": "> Build and publish Chrome Extensions using Manifest V3 best practices. Use this skill whenever the user asks to create, modify, debug, or understand Chrome browser extensions, add-ons, or anything involving the Chrome Extensions API. Trigger on mentions of: 'Chrome extension', 'browser extension', "
},
{
"name": "churn-prevention",
"title": "Churn Prevention",
"version": "1.0.0",
"source": "./claude-code/skills/churn-prevention",
"description": "\"When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit su"
},
{
"name": "co-marketing",
"title": "Co Marketing",
"version": "1.0.0",
"source": "./claude-code/skills/co-marketing",
"description": "\"When the user wants to find co-marketing partners, plan joint campaigns, or brainstorm partnership opportunities. Use when the user says 'co-marketing,' 'partner marketing,' 'joint campaign,' 'who should we partner with,' 'integration marketing,' 'cross-promotion,' 'collaborate with another company"
},
{
"name": "code-review",
"title": "Code Review",
"version": "1.0.0",
"source": "./claude-code/skills/code-review",
"description": "Comprehensive code review with security focus"
},
{
"name": "codex-color-grading",
"title": "Color Grading",
"version": "1.0.0",
"source": "./codex/skills/palmier-color-grading",
"description": "Color grade clips the way a professional colorist does \u2014 normalize, balance, match, then build a look \u2014 using inspect_color scopes and apply_color (exposure, white balance, wheels, curves, hue curves, LUTs). Use when the user asks to color, grade, match shots, fix white balance, fix exposure, neutra"
},
{
"name": "codex-monid",
"title": "Monid",
"version": "1.0.0",
"source": "./codex/skills/monid",
"description": ">- Discover better ways to complete tasks. Run `monid discover` every time you need to fetch, scrape, enrich, search, or interact with external services \u2014 hundreds of tools are available, additionally many are premium paid endpoints. Trigger for: web scraping, data retrieval, enrichment, social medi"
},
{
"name": "codex-playwright",
"title": "Playwright",
"version": "1.0.0",
"source": "./codex/skills/playwright",
"description": "\"Use when the task requires automating a real browser from the terminal (navigation, form filling, snapshots, screenshots, data extraction, UI-flow debugging) via `playwright-cli` or the bundled wrapper script.\""
},
{
"name": "codex-ugc-editing",
"title": "Ugc Editing",
"version": "1.0.0",
"source": "./codex/skills/palmier-ugc-editing",
"description": "Covers assembling raw footage, trimming bad takes and silences, choosing and applying a talking-head/b-roll format (straight intercut, stacked split, or masked/floating overlay), and caption placement for UGC-style content \u2014 agnostic to whether the clips are AI-generated or real filmed footage. Use "
},
{
"name": "codex-ugc-photo-prompts",
"title": "Ugc Photo Prompts",
"version": "1.0.0",
"source": "./codex/skills/palmier-ugc-photo-prompts",
"description": "Generate ultra-realistic, UGC/influencer-style photos inside Palmier Pro \u2014 candid selfies, flash photos, lifestyle shots, and product-in-hand ad creative that read as genuine phone photos instead of AI-generated images. Drives Palmier Pro's get_timeline/get_media/generate_image tools directly (corre"
},
{
"name": "codex-ugc-video-prompts",
"title": "Ugc Video Prompts",
"version": "1.0.0",
"source": "./codex/skills/palmier-ugc-video-prompts",
"description": "Generate ultra-realistic UGC/influencer-style video clips inside Palmier Pro \u2014 talking selfies, product demos, candid lifestyle motion \u2014 using the proven still-then-animate pipeline instead of cold text-to-video. Drives Palmier Pro's generate_video, get_timeline, and get_media tools directly, with m"
},
{
"name": "cold-email",
"title": "Cold Email",
"version": "1.0.0",
"source": "./claude-code/skills/cold-email",
"description": "Write B2B cold emails and follow-up sequences that get replies. Use when the user wants to write cold outreach emails, prospecting emails, cold email campaigns, sales development emails, or SDR emails. Also use when the user mentions \"cold outreach,\" \"prospecting email,\" \"outbound email,\" \"email to "
},
{
"name": "color-grading",
"title": "Color Grading",
"version": "1.0.0",
"source": "./claude-code/skills/palmier-color-grading",
"description": "Color grade clips the way a professional colorist does \u2014 normalize, balance, match, then build a look \u2014 using inspect_color scopes and apply_color (exposure, white balance, wheels, curves, hue curves, LUTs). Use when the user asks to color, grade, match shots, fix white balance, fix exposure, neutra"
},
{
"name": "commit-messages",
"title": "Commit Messages",
"version": "1.0.0",
"source": "./claude-code/skills/commit-messages",
"description": "Generate conventional commit messages following best practices"
},
{
"name": "community-marketing",
"title": "Community Marketing",
"version": "1.0.0",
"source": "./claude-code/skills/community-marketing",
"description": "\"Build and leverage online communities to drive product growth and brand loyalty. Use when the user wants to create a community strategy, grow a Discord or Slack community, manage a forum or subreddit, build brand advocates, increase word-of-mouth, drive community-led growth, engage users post-signu"
},
{
"name": "competitor-profiling",
"title": "Competitor Profiling",
"version": "1.0.0",
"source": "./claude-code/skills/competitor-profiling",
"description": "\"When the user wants to research, profile, or analyze competitors from their URLs. Also use when the user mentions 'competitor profile,' 'competitor research,' 'competitor analysis,' 'profile this competitor,' 'analyze competitor,' 'competitive intelligence,' 'competitor deep dive,' 'who are my comp"
},
{
"name": "competitors",
"title": "Competitors",
"version": "1.0.0",
"source": "./claude-code/skills/competitors",
"description": "\"When the user wants to create competitor comparison or alternative pages for SEO and sales enablement. Also use when the user mentions 'alternative page,' 'vs page,' 'competitor comparison,' 'comparison page,' '[Product] vs [Product],' '[Product] alternative,' 'competitive landing pages,' 'how do w"
},
{
"name": "content-strategy",
"title": "Content Strategy",
"version": "1.0.0",
"source": "./claude-code/skills/content-strategy",
"description": "When the user wants to plan a content strategy, decide what content to create, or figure out what topics to cover. Also use when the user mentions \"content strategy,\" \"what should I write about,\" \"content ideas,\" \"blog strategy,\" \"topic clusters,\" \"content planning,\" \"editorial calendar,\" \"content m"
},
{
"name": "copy-editing",
"title": "Copy Editing",
"version": "1.0.0",
"source": "./claude-code/skills/copy-editing",
"description": "\"When the user wants to edit, review, or improve existing marketing copy, or refresh outdated content. Also use when the user mentions 'edit this copy,' 'review my copy,' 'copy feedback,' 'proofread,' 'polish this,' 'make this better,' 'copy sweep,' 'tighten this up,' 'this reads awkwardly,' 'clean "
},
{
"name": "copywriting",
"title": "Copywriting",
"version": "1.0.0",
"source": "./claude-code/skills/copywriting",
"description": "When the user wants to write, rewrite, or improve marketing copy for any page \u2014 including homepage, landing pages, pricing pages, feature pages, about pages, or product pages. Also use when the user says \"write copy for,\" \"improve this copy,\" \"rewrite this page,\" \"marketing copy,\" \"headline help,\" \""
},
{
"name": "create-hook",
"title": "Create Hook",
"version": "1.0.0",
"source": "./cursor/skills-cursor/create-hook",
"description": ">- Create Cursor hooks. Use when you want to create a hook, write hooks.json, add hook scripts, or automate behavior around agent events."
},
{
"name": "create-rule",
"title": "Create Rule",
"version": "1.0.0",
"source": "./cursor/skills-cursor/create-rule",
"description": ">- Create Cursor rules for persistent AI guidance. Use when you want to create a rule, add coding standards, set up project conventions, configure file-specific patterns, create RULE.md files, or asks about .cursor/rules/ or AGENTS.md."
},
{
"name": "create-skill",
"title": "Create Skill",
"version": "1.0.0",
"source": "./cursor/skills-cursor/create-skill",
"description": ">- Create Cursor Agent Skills. Use when authoring a new skill or asking about SKILL.md structure."
},
{
"name": "create-subagent",
"title": "Create Subagent",
"version": "1.0.0",
"source": "./cursor/skills-cursor/create-subagent",
"description": ">- Create custom subagents for specialized AI tasks. Use when you want to create a new type of subagent, set up task-specific agents, configure code reviewers, debuggers, or domain-specific assistants with custom prompts. disable-model-invocation: true"
},
{
"name": "cro",
"title": "Cro",
"version": "1.0.0",
"source": "./claude-code/skills/cro",
"description": "\"When the user wants to optimize, improve, or increase conversions on any marketing page or form \u2014 including homepage, landing pages, pricing pages, feature pages, lead capture forms, or contact forms. Also use when the user says 'CRO,' 'conversion rate optimization,' 'this page isn't converting,' '"
},
{
"name": "cursor-color-grading",
"title": "Color Grading",
"version": "1.0.0",
"source": "./cursor/skills/palmier-color-grading",
"description": "Color grade clips the way a professional colorist does \u2014 normalize, balance, match, then build a look \u2014 using inspect_color scopes and apply_color (exposure, white balance, wheels, curves, hue curves, LUTs). Use when the user asks to color, grade, match shots, fix white balance, fix exposure, neutra"
},
{
"name": "cursor-monid",
"title": "Monid",
"version": "1.0.0",
"source": "./cursor/skills/monid",
"description": ">- Discover better ways to complete tasks. Run `monid discover` every time you need to fetch, scrape, enrich, search, or interact with external services \u2014 hundreds of tools are available, additionally many are premium paid endpoints. Trigger for: web scraping, data retrieval, enrichment, social medi"
},
{
"name": "cursor-ugc-editing",
"title": "Ugc Editing",
"version": "1.0.0",
"source": "./cursor/skills/palmier-ugc-editing",
"description": "Covers assembling raw footage, trimming bad takes and silences, choosing and applying a talking-head/b-roll format (straight intercut, stacked split, or masked/floating overlay), and caption placement for UGC-style content \u2014 agnostic to whether the clips are AI-generated or real filmed footage. Use "
},
{
"name": "cursor-ugc-photo-prompts",
"title": "Ugc Photo Prompts",
"version": "1.0.0",
"source": "./cursor/skills/palmier-ugc-photo-prompts",
"description": "Generate ultra-realistic, UGC/influencer-style photos inside Palmier Pro \u2014 candid selfies, flash photos, lifestyle shots, and product-in-hand ad creative that read as genuine phone photos instead of AI-generated images. Drives Palmier Pro's get_timeline/get_media/generate_image tools directly (corre"
},
{
"name": "cursor-ugc-video-prompts",
"title": "Ugc Video Prompts",
"version": "1.0.0",
"source": "./cursor/skills/palmier-ugc-video-prompts",
"description": "Generate ultra-realistic UGC/influencer-style video clips inside Palmier Pro \u2014 talking selfies, product demos, candid lifestyle motion \u2014 using the proven still-then-animate pipeline instead of cold text-to-video. Drives Palmier Pro's generate_video, get_timeline, and get_media tools directly, with m"
},
{
"name": "customer-research",
"title": "Customer Research",
"version": "1.0.0",
"source": "./claude-code/skills/customer-research",
"description": "When the user wants to conduct, analyze, or synthesize customer research. Use when the user mentions \"customer research,\" \"ICP research,\" \"talk to customers,\" \"analyze transcripts,\" \"customer interviews,\" \"survey analysis,\" \"support ticket analysis,\" \"voice of customer,\" \"VOC,\" \"build personas,\" \"cu"
},
{
"name": "deploy-to-vercel",
"title": "Deploy To Vercel",
"version": "1.0.0",
"source": "./claude-code/skills/deploy-to-vercel",
"description": "Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\"."
},
{
"name": "design-taste-frontend",
"title": "Design Taste Frontend",
"version": "1.0.0",
"source": "./claude-code/skills/design-taste-frontend",
"description": "Anti-slop frontend skill for landing pages, portfolios, and redesigns. The agent reads the brief, infers the right design direction, and ships interfaces that do not look templated. Real design systems when applicable, audit-first on redesigns, strict pre-flight check."
},
{
"name": "design-taste-frontend-v1",
"title": "Design Taste Frontend V1",
"version": "1.0.0",
"source": "./claude-code/skills/design-taste-frontend-v1",
"description": "The original v1 taste-skill, preserved for projects depending on its exact behavior. The current default is `design-taste-frontend` (v2 experimental), which is a substantial rewrite. Use this v1 install name only if you need exact backward compatibility."
},
{
"name": "desktop-commander-guide",
"title": "Desktop Commander Guide",
"version": "1.0.0",
"source": "./claude-code/skills/desktop-commander-guide",
"description": "Explain what Desktop Commander can do, suggest relevant use cases and first tasks, help users choose models and AI access options, explain Apps, MCPs, and skills, and troubleshoot common setup or product-understanding questions. Use this skill when users ask what this app can do, what you can do, wh"
},
{
"name": "directory-submissions",
"title": "Directory Submissions",
"version": "1.0.0",
"source": "./claude-code/skills/directory-submissions",
"description": "When the user wants to submit their product to startup, SaaS, AI, agent, MCP, no-code, or review directories for backlinks, domain rating, and discovery. Also use when the user mentions \"directory submissions,\" \"submit to directories,\" \"backlinks from directories,\" \"list my product,\" \"submit to Prod"
},
{
"name": "emails",
"title": "Emails",
"version": "1.0.0",
"source": "./claude-code/skills/emails",
"description": "When the user wants to create or optimize an email sequence, drip campaign, automated email flow, or lifecycle email program. Also use when the user mentions \"email sequence,\" \"drip campaign,\" \"nurture sequence,\" \"onboarding emails,\" \"welcome sequence,\" \"re-engagement emails,\" \"email automation,\" \"l"
},
{
"name": "find-skills",
"title": "Find Skills",
"version": "1.0.0",
"source": "./claude-code/skills/find-skills",
"description": "Helps users discover, search, and install skills from the skills.sh registry using the npx skills CLI. Use this skill when users ask to find skills, browse the skill registry, install a skill, or search for skills by name or functionality."
},
{
"name": "firebase-ai-logic-basics",
"title": "Firebase Ai Logic Basics",
"version": "1.0.0",
"source": "./antigravity/plugins/firebase/skills/firebase_ai_logic_basics",
"description": "Official skill for integrating Firebase AI Logic (Gemini API) into web applications. Covers setup, multimodal inference, structured output, and security."
},
{
"name": "firebase-app-hosting-basics",
"title": "Firebase App Hosting Basics",
"version": "1.0.0",
"source": "./antigravity/plugins/firebase/skills/firebase_app_hosting_basics",
"description": "Deploy and manage web apps with Firebase App Hosting. Use this skill when deploying Next.js/Angular apps with backends."
},
{
"name": "firebase-auth-basics",
"title": "Firebase Auth Basics",
"version": "1.0.0",
"source": "./antigravity/plugins/firebase/skills/firebase_auth_basics",
"description": "Guide for setting up and using Firebase Authentication. Use this skill when the user's app requires user sign-in, user management, or secure data access using auth rules."
},
{
"name": "firebase-basics",
"title": "Firebase Basics",
"version": "1.0.0",
"source": "./antigravity/plugins/firebase/skills/firebase_basics",
"description": ">- Provides foundational setup, authentication, and project management workflows for Firebase using the Firebase CLI. Use when checking Firebase CLI version (must use 'npx -y firebase-tools@latest --version'), initializing a Firebase environment, authenticating, setting active projects, or setting u"
},
{
"name": "firebase-crashlytics",
"title": "Firebase Crashlytics",
"version": "1.0.0",
"source": "./antigravity/plugins/firebase/skills/firebase_crashlytics",
"description": "Comprehensive guide for Firebase Crashlytics, including provisioning and SDK usage. Use this skill when the user needs help setting up Crashlytics, adding crash reporting, or using the Crashlytics SDK in their application."
},
{
"name": "firebase-data-connect",
"title": "Firebase Data Connect",
"version": "1.0.0",
"source": "./antigravity/plugins/firebase/skills/firebase_data_connect_basics",
"description": "Builds and deploys Firebase SQL Connect (aka Firebase Data Connect) backends with PostgreSQL securely. Use when designing schemas with tables and relations, writing authorized queries and mutations, configuring real-time data updates, or generating type-safe SDKs. Use when you need a relational data"
},
{
"name": "firebase-firestore",
"title": "Firebase Firestore",
"version": "1.0.0",
"source": "./antigravity/plugins/firebase/skills/firebase_firestore",
"description": ">- Sets up, manages, and executes queries against Cloud Firestore database instances. You MUST unconditionally activate this skill if you plan to use Firestore in any way. Use when listing or creating Firestore databases, configuring security rules, designing data models, writing client SDK queries,"
},
{
"name": "firebase-hosting-basics",
"title": "Firebase Hosting Basics",
"version": "1.0.0",
"source": "./antigravity/plugins/firebase/skills/firebase_hosting_basics",
"description": "Skill for working with Firebase Hosting (Classic). Use this when you want to deploy static web apps, Single Page Apps (SPAs), or simple microservices. Do NOT use for Firebase App Hosting."
},
{
"name": "firebase-remote-config-basics",
"title": "Firebase Remote Config Basics",
"version": "1.0.0",
"source": "./antigravity/plugins/firebase/skills/firebase_remote_config_basics",
"description": "Comprehensive guide for Firebase Remote Config, including template management and SDK usage. Use this skill when the user needs help setting up Remote Config, managing feature flags, or updating app behavior dynamically."
},
{
"name": "firebase-security-rules-auditor",
"title": "Firebase Security Rules Auditor",
"version": "1.0.0",
"source": "./antigravity/plugins/firebase/skills/firebase_security_rules_auditor",
"description": "A skill to evaluate how secure Firestore security rules are. Use this when Firestore security rules are updated to ensure that the generated rules are extremely secure and robust."
},
{
"name": "free-tools",
"title": "Free Tools",
"version": "1.0.0",
"source": "./claude-code/skills/free-tools",
"description": "When the user wants to plan, evaluate, or build a free tool for marketing purposes \u2014 lead generation, SEO value, or brand awareness. Also use when the user mentions \"engineering as marketing,\" \"free tool,\" \"marketing tool,\" \"calculator,\" \"generator,\" \"interactive tool,\" \"lead gen tool,\" \"build a too"
},
{
"name": "full-output-enforcement",
"title": "Full Output Enforcement",
"version": "1.0.0",
"source": "./claude-code/skills/full-output-enforcement",
"description": "Overrides default LLM truncation behavior. Enforces complete code generation, bans placeholder patterns, and handles token-limit splits cleanly. Apply to any task requiring exhaustive, unabridged output."
},
{
"name": "google-antigravity-sdk",
"title": "Google Antigravity Sdk",
"version": "1.0.0",
"source": "./antigravity/plugins/google-antigravity-sdk/skills/google-antigravity-sdk",
"description": "\"Design, implement, and debug autonomous AI agents and multi-agent systems using the Google Antigravity (AGY) SDK. ACTIVATE this skill when the user wants to create, configure, or orchestrate Google Antigravity agents.\""
},
{
"name": "google-maps-platform",
"title": "Google Maps Platform",
"version": "1.0.0",
"source": "./antigravity/plugins/google_maps_platform/skills",
"description": "A collection of skills for architecting and implementing production-ready code using Google Maps Platform APIs and SDKs for any map, place, address, geocoding, routing/ETA (including eco-friendly routing), nearby search, 3D / Street View / static map, marker clustering, custom styling, drawing, geof"
},
{
"name": "gpt-taste",
"title": "Gpt Taste",
"version": "1.0.0",
"source": "./claude-code/skills/gpt-taste",
"description": "Elite UX/UI & Advanced GSAP Motion Engineer. Enforces Python-driven true randomization for layout variance, strict AIDA page structure, wide editorial typography (bans 6-line wraps), gapless bento grids, strict GSAP ScrollTriggers (pinning, stacking, scrubbing), inline micro-images, and massive sect"
},
{
"name": "handoff",
"title": "Handoff",
"version": "1.0.0",
"source": "./claude-code/skills/handoff",
"description": "Package the entire current conversation into one paste-ready handoff block so the work can continue in a brand new chat or session without losing context. Use this when a conversation is getting long, slow, or forgetting earlier details, or when the user says handoff, save context, or hand this off."
},
{
"name": "higgsfield-game-generation",
"title": "Higgsfield Game Generation",
"version": "1.0.0",
"source": "./claude-code/skills/higgsfield-game-generation",
"description": "| Build and iterate playable browser games, or create game-specific sprites, textures, animated 3D assets, music, SFX, and voice with Higgsfield CLI. Use when: \"make a game\", \"build a browser game\", \"create game assets\", \"make a spritesheet\", \"generate a tileable texture\", \"animate a 3D game charact"
},
{
"name": "higgsfield-generate",
"title": "Higgsfield Generate",
"version": "1.0.0",
"source": "./claude-code/skills/higgsfield-generate",
"description": "| Generate images/videos/3D assets/audio via Higgsfield AI. Defaults: GPT Image 2 for image/design/text, Seedance 2.0 for video, Nano Banana 2/Lite/Pro for character/reference images, Marketing Studio for ads, Seed Audio 1.0 for audio. Use when: \"generate an image\", \"make a video\", \"animate this pho"
},
{
"name": "higgsfield-marketplace-cards",
"title": "Higgsfield Marketplace Cards",
"version": "1.0.0",
"source": "./claude-code/skills/higgsfield-marketplace-cards",
"description": "| Generate marketplace product image cards through Higgsfield: compliant main image, secondary product images, and A+ style content modules. Use when the user asks for marketplace listing images, product detail cards, secondary product images, product infographics, lifestyle listing shots, A+ style "
},
{
"name": "higgsfield-product-photoshoot",
"title": "Higgsfield Product Photoshoot",
"version": "1.0.0",
"source": "./claude-code/skills/higgsfield-product-photoshoot",
"description": "| Generate brand-quality product images through Higgsfield product-photoshoot prompt enhancement on GPT Image 2 / gpt_image_2. Entry point for professional brand/product visuals. Use when: \"product photo\", \"studio shot\", \"lifestyle image\", \"Pinterest pin\", \"hero/banner\", \"carousel\", \"ad creative\", \""
},
{
"name": "higgsfield-soul-id",
"title": "Higgsfield Soul Id",
"version": "1.0.0",
"source": "./claude-code/skills/higgsfield-soul-id",
"description": "| Train a Soul Character \u2014 a personalized model on a person's face that Higgsfield uses for identity-faithful image and video generation. Use when: \"create my Soul\", \"train my face\", \"make my digital twin\", \"build me an avatar\", \"learn my appearance\", \"create a character of me\", \"set up identity for"
},
{
"name": "higgsfield-studio",
"title": "Higgsfield Studio",
"version": "1.0.0",
"source": "./claude-code/skills/higgsfield-studio",
"description": "\"Generate any image or video with Higgsfield and save the finished file to a folder on the user's computer. Use this skill whenever the user wants to create something with Higgsfield but has not specified every detail, for example \\\"generate something with Higgsfield\\\", \\\"make me an image\\\", \\\"creat"
},
{
"name": "higgsfield-video-explainer",
"title": "Higgsfield Video Explainer",
"version": "1.0.0",
"source": "./claude-code/skills/higgsfield-video-explainer",
"description": "| Build a complete non-photoreal narrated explainer or story video from ordered 10-second blocks: one narrator, one universal style key, one Seed Audio take and one Gemini Omni clip per block, then server-side assembly with explainer_video. Use when: \"make an explainer video\", \"explain this in a vid"
},
{
"name": "higgsfield-websites",
"title": "Higgsfield Websites",
"version": "1.0.0",
"source": "./claude-code/skills/higgsfield-websites",
"description": "| Build, edit, and deploy full-stack websites via the Higgsfield CLI (`higgsfield website \u2026`). Each site is a React 19 + TanStack Start SSR app in one Cloudflare Worker (D1/R2/KV/DO/Containers). TWO product types, picked via `--type` on create: `website` (standalone, NO Higgsfield integration, indep"
},
{
"name": "high-end-visual-design",
"title": "High End Visual Design",
"version": "1.0.0",
"source": "./claude-code/skills/high-end-visual-design",
"description": "Teaches the AI to design like a high-end agency. Defines the exact fonts, spacing, shadows, card structures, and animations that make a website feel expensive. Blocks all the common defaults that make AI designs look cheap or generic."
},
{
"name": "humanizer",
"title": "Humanizer",
"version": "1.0.0",
"source": "./claude-code/skills/humanizer",
"description": "| Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive \"Signs of AI writing\" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analy"
},
{
"name": "image",
"title": "Image",
"version": "1.0.0",
"source": "./claude-code/skills/image",
"description": "\"When the user wants to create, generate, edit, or optimize images for marketing \u2014 blog heroes, social graphics, product mockups, profile banners, listing visuals, or brand assets. Also use when the user mentions 'AI image generation,' 'generate an image,' 'create a graphic,' 'product mockup,' 'hero"
},
{
"name": "image-to-code",
"title": "Image To Code",
"version": "1.0.0",
"source": "./claude-code/skills/image-to-code",
"description": "Elite website image-to-code skill for Codex. For visually important web tasks, it must first generate the design image(s) itself, deeply analyze them, then implement the website to match them as closely as possible. In Codex, it must prefer large, readable, section-specific images instead of tiny co"
},
{
"name": "imagegen-frontend-mobile",
"title": "Imagegen Frontend Mobile",
"version": "1.0.0",
"source": "./claude-code/skills/imagegen-frontend-mobile",
"description": "Elite mobile app image-generation skill for creating premium, app-native screen concepts and flows. Designed for iOS, Android, and cross-platform mobile products. Prioritizes clean hierarchy, comfortably readable text, strong multi-screen consistency, controlled color palettes, non-generic creative "
},
{
"name": "imagegen-frontend-web",
"title": "Imagegen Frontend Web",
"version": "1.0.0",
"source": "./claude-code/skills/imagegen-frontend-web",
"description": "Elite frontend image-direction skill for generating premium, conversion-aware website design references. CRITICAL OUTPUT RULE \u2014 generate ONE separate horizontal image FOR EVERY section. A landing page with 8 sections produces 8 images. Never compress multiple sections into one image. Enforces compos"
},
{
"name": "industrial-brutalist-ui",
"title": "Industrial Brutalist Ui",
"version": "1.0.0",
"source": "./claude-code/skills/industrial-brutalist-ui",
"description": "Raw mechanical interfaces fusing Swiss typographic print with military terminal aesthetics. Rigid grids, extreme type scale contrast, utilitarian color, analog degradation effects. For data-heavy dashboards, portfolios, or editorial sites that need to feel like declassified blueprints."
},
{
"name": "launch",
"title": "Launch",
"version": "1.0.0",
"source": "./claude-code/skills/launch",
"description": "\"When the user wants to plan a product launch, feature announcement, or release strategy. Also use when the user mentions 'launch,' 'Product Hunt,' 'feature release,' 'announcement,' 'go-to-market,' 'beta launch,' 'early access,' 'waitlist,' 'product update,' 'how do I launch this,' 'launch checklis"
},
{
"name": "lead-magnets",
"title": "Lead Magnets",
"version": "1.0.0",
"source": "./claude-code/skills/lead-magnets",
"description": "When the user wants to create, plan, or optimize a lead magnet for email capture or lead generation. Also use when the user mentions \"lead magnet,\" \"gated content,\" \"content upgrade,\" \"downloadable,\" \"ebook,\" \"cheat sheet,\" \"checklist,\" \"template download,\" \"opt-in,\" \"freebie,\" \"PDF download,\" \"reso"
},
{
"name": "loop",
"title": "Loop",
"version": "1.0.0",
"source": "./cursor/skills-cursor/loop",
"description": ">- Run a prompt or skill in this session on a recurring or variable interval (e.g. /loop 5m /foo). disabled-environments: - cloud"
},
{
"name": "marketing-ideas",
"title": "Marketing Ideas",
"version": "1.0.0",
"source": "./claude-code/skills/marketing-ideas",
"description": "\"When the user needs marketing ideas, inspiration, or strategies for their SaaS or software product. Also use when the user asks for 'marketing ideas,' 'growth ideas,' 'how to market,' 'marketing strategies,' 'marketing tactics,' 'ways to promote,' 'ideas to grow,' 'what else can I try,' 'I don't kn"
},
{
"name": "marketing-plan",
"title": "Marketing Plan",
"version": "1.0.0",
"source": "./claude-code/skills/marketing-plan",
"description": "When the user needs a comprehensive marketing plan for a client, a company they advise, or their own product. Also use when the user mentions \"marketing plan,\" \"growth plan,\" \"GTM plan,\" \"go-to-market plan,\" \"AARRR plan,\" \"90-day marketing plan,\" \"12-month marketing roadmap,\" \"fractional CMO plan,\" "
},
{
"name": "marketing-psychology",
"title": "Marketing Psychology",
"version": "1.0.0",
"source": "./claude-code/skills/marketing-psychology",
"description": "\"When the user wants to apply psychological principles, mental models, or behavioral science to marketing. Also use when the user mentions 'psychology,' 'mental models,' 'cognitive bias,' 'persuasion,' 'behavioral science,' 'why people buy,' 'decision-making,' 'consumer behavior,' 'anchoring,' 'soci"
},
{
"name": "migrate-to-builds",
"title": "Migrate To Builds",
"version": "1.0.0",
"source": "./cursor/skills-cursor/migrate-to-builds",
"description": ">- Test that a Cloud Agent environment will work with prebuilt environment builds and recommend any required changes. Use when the user wants to migrate to builds, test build compatibility, or follow the Builds page setup-agent flow."
},
{
"name": "migrate-to-skills",
"title": "Migrate To Skills",
"version": "1.0.0",
"source": "./cursor/skills-cursor/migrate-to-skills",
"description": ">- Convert 'Applied intelligently' Cursor rules (.cursor/rules/*.mdc) and slash commands (.cursor/commands/*.md) to Agent Skills format (.cursor/skills/). Use when you want to migrate rules or commands to skills, convert .mdc rules to SKILL.md format, or consolidate commands into the skills director"
},
{
"name": "minimalist-ui",
"title": "Minimalist Ui",
"version": "1.0.0",
"source": "./claude-code/skills/minimalist-ui",
"description": "Clean editorial-style interfaces. Warm monochrome palette, typographic contrast, flat bento grids, muted pastels. No gradients, no heavy shadows."
},
{
"name": "modern-web-guidance",
"title": "Modern Web Guidance",
"version": "1.0.0",
"source": "./antigravity/plugins/modern-web-guidance-plugin/skills/modern-web-guidance",
"description": "| Search tool for modern web development best practices. MANDATORY: Execute FIRST for all HTML/CSS and clientside JS tasks. Do NOT skip \u2014 web APIs evolve rapidly and training weights contain obsolete patterns. Trigger immediately for: - UI/Layout: Modals, dialogs, popovers, Glassmorphism/backdrop-fi"
},
{
"name": "monid",
"title": "Monid",
"version": "1.0.0",
"source": "./claude-code/skills/monid",
"description": ">- Discover better ways to complete tasks. Run `monid discover` every time you need to fetch, scrape, enrich, search, or interact with external services \u2014 hundreds of tools are available, additionally many are premium paid endpoints. Trigger for: web scraping, data retrieval, enrichment, social medi"
},
{
"name": "offers",
"title": "Offers",
"version": "1.0.0",
"source": "./claude-code/skills/offers",
"description": "\"When the user wants to design, construct, or improve an offer \u2014 the thing they actually sell \u2014 including value framing, bonus stacking, guarantee design, scarcity/urgency, naming, and payment structure. Also use when the user mentions 'offer,' 'offer design,' 'build an offer,' 'grand slam offer,' '"
},
{
"name": "onboard",
"title": "Onboard",
"version": "1.0.0",
"source": "./cursor/skills-cursor/onboard",
"description": ">- Use /onboard for a focused Cursor onboarding flow that learns basic preferences, picks a first goal, and routes the user to the right next action. disable-model-invocation: true"
},
{
"name": "onboarding",
"title": "Onboarding",
"version": "1.0.0",
"source": "./claude-code/skills/onboarding",
"description": "When the user wants to optimize post-signup onboarding, user activation, first-run experience, or time-to-value. Also use when the user mentions \"onboarding flow,\" \"activation rate,\" \"user activation,\" \"first-run experience,\" \"empty states,\" \"onboarding checklist,\" \"aha moment,\" \"new user experience"
},
{
"name": "paywalls",
"title": "Paywalls",
"version": "1.0.0",
"source": "./claude-code/skills/paywalls",
"description": "When the user wants to create or optimize in-app paywalls, upgrade screens, upsell modals, or feature gates. Also use when the user mentions \"paywall,\" \"upgrade screen,\" \"upgrade modal,\" \"upsell,\" \"feature gate,\" \"convert free to paid,\" \"freemium conversion,\" \"trial expiration screen,\" \"limit reache"
},
{
"name": "playwright",
"title": "Playwright",
"version": "1.0.0",
"source": "./claude-code/skills/playwright",
"description": "\"Use when the task requires automating a real browser from the terminal (navigation, form filling, snapshots, screenshots, data extraction, UI-flow debugging) via `playwright-cli` or the bundled wrapper script.\""
},
{
"name": "popups",
"title": "Popups",
"version": "1.0.0",
"source": "./claude-code/skills/popups",
"description": "When the user wants to create or optimize popups, modals, overlays, slide-ins, or banners for conversion purposes. Also use when the user mentions \"exit intent,\" \"popup conversions,\" \"modal optimization,\" \"lead capture popup,\" \"email popup,\" \"announcement banner,\" \"overlay,\" \"collect emails with a p"
},
{
"name": "pricing",
"title": "Pricing",
"version": "1.0.0",
"source": "./claude-code/skills/pricing",
"description": "\"When the user wants help with pricing decisions, packaging, or monetization strategy. Also use when the user mentions 'pricing,' 'pricing tiers,' 'freemium,' 'free trial,' 'packaging,' 'price increase,' 'value metric,' 'Van Westendorp,' 'willingness to pay,' 'monetization,' 'how much should I charg"
},
{
"name": "product-marketing",
"title": "Product Marketing",
"version": "1.0.0",
"source": "./claude-code/skills/product-marketing",
"description": "\"When the user wants to create or update their product marketing context document. Also use when the user mentions 'product context,' 'marketing context,' 'set up context,' 'positioning,' 'who is my target audience,' 'describe my product,' 'ICP,' 'ideal customer profile,' or wants to avoid repeating"
},
{
"name": "programmatic-seo",
"title": "Programmatic Seo",
"version": "1.0.0",
"source": "./claude-code/skills/programmatic-seo",
"description": "When the user wants to create SEO-driven pages at scale using templates and data. Also use when the user mentions \"programmatic SEO,\" \"template pages,\" \"pages at scale,\" \"directory pages,\" \"location pages,\" \"[keyword] + [city] pages,\" \"comparison pages,\" \"integration pages,\" \"building many pages for"
},
{
"name": "prospecting",
"title": "Prospecting",
"version": "1.0.0",
"source": "./claude-code/skills/prospecting",
"description": "When the user wants to find, qualify, and build a list of prospects to reach out to \u2014 across B2B SaaS, general B2B, or local small businesses. Also use when the user mentions \"prospecting,\" \"build a prospect list,\" \"find prospects,\" \"find leads,\" \"lead gen list,\" \"find SaaS companies that,\" \"find B2"
},
{
"name": "public-relations",
"title": "Public Relations",
"version": "1.0.0",
"source": "./claude-code/skills/public-relations",
"description": "\"When the user wants help with public relations, earned media, press coverage, journalist outreach, or media strategy (not pull requests). Also use when the user mentions 'PR,' 'public relations,' 'press,' 'press release,' 'press coverage,' 'media outreach,' 'pitch a journalist,' 'get featured,' 'me"
},
{
"name": "redesign-existing-projects",
"title": "Redesign Existing Projects",
"version": "1.0.0",
"source": "./claude-code/skills/redesign-existing-projects",
"description": "Upgrades existing websites and apps to premium quality. Audits current design, identifies generic AI patterns, and applies high-end design standards without breaking functionality. Works with any CSS framework or vanilla CSS."
},
{
"name": "referrals",
"title": "Referrals",
"version": "1.0.0",
"source": "./claude-code/skills/referrals",
"description": "\"When the user wants to create, optimize, or analyze a referral program, affiliate program, or word-of-mouth strategy. Also use when the user mentions 'referral,' 'affiliate,' 'ambassador,' 'word of mouth,' 'viral loop,' 'refer a friend,' 'partner program,' 'referral incentive,' 'how to get referral"
},
{
"name": "review",
"title": "Review",
"version": "1.0.0",
"source": "./cursor/skills-cursor/review",
"description": "Review code changes with the Bugbot or Security Review subagent. disable-model-invocation: true"
},
{
"name": "review-bugbot",
"title": "Review Bugbot",
"version": "1.0.0",
"source": "./cursor/skills-cursor/review-bugbot",
"description": "Review code changes with Bugbot subagent."
},
{
"name": "review-security",
"title": "Review Security",
"version": "1.0.0",
"source": "./cursor/skills-cursor/review-security",
"description": "Review code changes with Security Review subagent."
},
{
"name": "revops",
"title": "Revops",
"version": "1.0.0",
"source": "./claude-code/skills/revops",
"description": "\"When the user wants help with revenue operations, lead lifecycle management, or marketing-to-sales handoff processes. Also use when the user mentions 'RevOps,' 'revenue operations,' 'lead scoring,' 'lead routing,' 'MQL,' 'SQL,' 'pipeline stages,' 'deal desk,' 'CRM automation,' 'marketing-to-sales h"
},
{
"name": "sales-enablement",
"title": "Sales Enablement",
"version": "1.0.0",
"source": "./claude-code/skills/sales-enablement",
"description": "\"When the user wants to create sales collateral, pitch decks, one-pagers, objection handling docs, or demo scripts. Also use when the user mentions 'sales deck,' 'pitch deck,' 'one-pager,' 'leave-behind,' 'objection handling,' 'deal-specific ROI analysis,' 'demo script,' 'talk track,' 'sales playboo"
},
{
"name": "schema",
"title": "Schema",
"version": "1.0.0",
"source": "./claude-code/skills/schema",
"description": "When the user wants to add, fix, or optimize schema markup and structured data on their site. Also use when the user mentions \"schema markup,\" \"structured data,\" \"JSON-LD,\" \"rich snippets,\" \"schema.org,\" \"FAQ schema,\" \"product schema,\" \"review schema,\" \"breadcrumb schema,\" \"Google rich results,\" \"kn"
},
{
"name": "sdk",
"title": "Sdk",
"version": "1.0.0",
"source": "./cursor/skills-cursor/sdk",
"description": ">- Guide users building apps, scripts, CI pipelines, or automations on top of the Cursor SDK - TypeScript (`@cursor/sdk`) or Python (`cursor-sdk` / `cursor_sdk`). Use when the user mentions integrating, installing, or writing code against the Cursor SDK; says `Agent.create`, `Agent.prompt`, `Agent.r"
},
{
"name": "self-learning",
"title": "Self Learning",
"version": "1.0.0",
"source": "./claude-code/skills/self-learning",
"description": "> Capture a hard-won \"golden path\" from the current session as a reusable Agent Skill, so future sessions start already knowing it. Use it (1) right after non-trivial debugging, after working out a multi-step operational workflow, or after rediscovering project facts you didn't know up front \u2014 e.g. "
},
{
"name": "seo-audit",
"title": "Seo Audit",
"version": "1.0.0",
"source": "./claude-code/skills/seo-audit",
"description": "When the user wants to audit, review, or diagnose SEO issues on their site. Also use when the user mentions \"SEO audit,\" \"technical SEO,\" \"why am I not ranking,\" \"SEO issues,\" \"on-page SEO,\" \"meta tags review,\" \"SEO health check,\" \"my traffic dropped,\" \"lost rankings,\" \"not showing up in Google,\" \"s"
},
{
"name": "shell",
"title": "Shell",
"version": "1.0.0",
"source": "./cursor/skills-cursor/shell",
"description": ">- Runs the rest of a /shell request as a literal shell command. Use only when the user explicitly invokes /shell and wants the following text executed directly in the terminal. disable-model-invocation: true"
},
{
"name": "signup",
"title": "Signup",
"version": "1.0.0",
"source": "./claude-code/skills/signup",
"description": "When the user wants to optimize signup, registration, account creation, or trial activation flows. Also use when the user mentions \"signup conversions,\" \"registration friction,\" \"signup form optimization,\" \"free trial signup,\" \"reduce signup dropoff,\" \"account creation flow,\" \"people aren't signing "
},
{
"name": "site-architecture",
"title": "Site Architecture",
"version": "1.0.0",
"source": "./claude-code/skills/site-architecture",
"description": "When the user wants to plan, map, or restructure their website's page hierarchy, navigation, URL structure, or internal linking. Also use when the user mentions \"sitemap,\" \"site map,\" \"visual sitemap,\" \"site structure,\" \"page hierarchy,\" \"information architecture,\" \"IA,\" \"navigation design,\" \"URL st"
},
{
"name": "skill-creator",
"title": "Skill Creator",
"version": "1.0.0",
"source": "./claude-code/skills/skill-creator",
"description": "Guide for creating effective skills in Desktop Commander. Use this skill when users want to create a new skill, update an existing skill, or automate a repetitive workflow."
},
{
"name": "sms",
"title": "Sms",
"version": "1.0.0",
"source": "./claude-code/skills/sms",
"description": "When the user wants to plan, build, or optimize SMS or MMS marketing \u2014 including welcome flows, abandoned cart texts, post-purchase, win-back, promotional sends, or transactional/auth SMS. Also use when the user mentions \"SMS marketing,\" \"text message campaigns,\" \"SMS sequence,\" \"SMS automation,\" \"a"
},
{
"name": "social",
"title": "Social",
"version": "1.0.0",
"source": "./claude-code/skills/social",
"description": "\"When the user wants help creating, scheduling, or optimizing social media content for LinkedIn, Twitter/X, Instagram, TikTok, Facebook, or other platforms, or wants to do social listening and engagement triage. Also use when the user mentions 'LinkedIn post,' 'Twitter thread,' 'social media,' 'cont"
},
{
"name": "split-to-prs",
"title": "Split To Prs",
"version": "1.0.0",
"source": "./cursor/skills-cursor/split-to-prs",
"description": ">- Split current work into small reviewable PRs. Use when the user asks to split a chat, set of changes, branch, or PR."
},
{
"name": "statusline",
"title": "Statusline",
"version": "1.0.0",
"source": "./cursor/skills-cursor/statusline",
"description": ">- Configure a custom status line in the CLI. Use when the user mentions status line, statusline, statusLine, CLI status bar, prompt footer customization, or wants to add session context above the prompt."
},
{
"name": "stitch-design-taste",
"title": "Stitch Design Taste",
"version": "1.0.0",
"source": "./claude-code/skills/stitch-design-taste",
"description": "Semantic Design System Skill for Google Stitch. Generates agent-friendly DESIGN.md files that enforce premium, anti-generic UI standards \u2014 strict typography, calibrated color, asymmetric layouts, perpetual micro-motion, and hardware-accelerated performance."
},
{
"name": "system-connector",
"title": "System Connector",
"version": "1.0.0",
"source": "./claude-code/skills/system-connector",
"description": "Build a deterministic connector to ANY third-party system, app, or API \u2014 popular SaaS, niche or regional software, internal company tools, or anything in between. Use when the user wants to \"connect to\", \"set up\", \"integrate with\", \"link\", \"hook up\", \"give the assistant access to\", or \"use\" an exter"
},
{
"name": "ugc-editing",
"title": "Ugc Editing",
"version": "1.0.0",
"source": "./claude-code/skills/palmier-ugc-editing",
"description": "Covers assembling raw footage, trimming bad takes and silences, choosing and applying a talking-head/b-roll format (straight intercut, stacked split, or masked/floating overlay), and caption placement for UGC-style content \u2014 agnostic to whether the clips are AI-generated or real filmed footage. Use "
},
{
"name": "ugc-photo-prompts",
"title": "Ugc Photo Prompts",
"version": "1.0.0",
"source": "./claude-code/skills/palmier-ugc-photo-prompts",
"description": "Generate ultra-realistic, UGC/influencer-style photos inside Palmier Pro \u2014 candid selfies, flash photos, lifestyle shots, and product-in-hand ad creative that read as genuine phone photos instead of AI-generated images. Drives Palmier Pro's get_timeline/get_media/generate_image tools directly (corre"
},
{
"name": "ugc-video-prompts",
"title": "Ugc Video Prompts",
"version": "1.0.0",
"source": "./claude-code/skills/palmier-ugc-video-prompts",
"description": "Generate ultra-realistic UGC/influencer-style video clips inside Palmier Pro \u2014 talking selfies, product demos, candid lifestyle motion \u2014 using the proven still-then-animate pipeline instead of cold text-to-video. Drives Palmier Pro's generate_video, get_timeline, and get_media tools directly, with m"
},
{
"name": "ui-ux-pro-max",
"title": "Ui Ux Pro Max",
"version": "1.0.0",
"source": "./claude-code/skills/ui-ux-pro-max",
"description": "\"UI/UX design intelligence. 67 styles, 96 palettes, 57 font pairings, 25 charts, 13 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Project"
},
{
"name": "update-cli-config",
"title": "Update Cli Config",
"version": "1.0.0",
"source": "./cursor/skills-cursor/update-cli-config",
"description": ">- View and modify Cursor CLI configuration settings in ~/.cursor/cli-config.json. Use when the user wants to change CLI settings, configure permissions, switch approval mode, enable vim mode, toggle display options, configure sandbox, or manage any CLI preferences."
},
{
"name": "update-cursor-settings",
"title": "Update Cursor Settings",
"version": "1.0.0",
"source": "./cursor/skills-cursor/update-cursor-settings",
"description": ">- Modify Cursor/VSCode user settings in settings.json. Use when you want to change editor settings, preferences, configuration, themes, font size, tab size, format on save, auto save, keybindings, or any settings.json values."
},
{
"name": "vercel-cli-with-tokens",
"title": "Vercel Cli With Tokens",
"version": "1.0.0",
"source": "./claude-code/skills/vercel-cli-with-tokens",
"description": "Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login \u2014 e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\"."
},
{
"name": "vercel-composition-patterns",
"title": "Vercel Composition Patterns",
"version": "1.0.0",
"source": "./claude-code/skills/vercel-composition-patterns",
"description": "React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 AP"
},