mover-os 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mover-os might be problematic. Click here for more details.

Files changed (149) hide show
  1. package/README.md +201 -0
  2. package/install.js +1424 -0
  3. package/package.json +35 -0
  4. package/src/hooks/context-staleness.sh +46 -0
  5. package/src/hooks/dirty-tree-guard.sh +33 -0
  6. package/src/hooks/engine-protection.sh +43 -0
  7. package/src/hooks/git-safety.sh +47 -0
  8. package/src/hooks/pre-compact-backup.sh +177 -0
  9. package/src/hooks/session-log-reminder.sh +64 -0
  10. package/src/skills/THIRD-PARTY-LICENSES.md +53 -0
  11. package/src/skills/agent-code-reviewer/SKILL.md +41 -0
  12. package/src/skills/agent-content-researcher/SKILL.md +59 -0
  13. package/src/skills/agent-research-analyst/SKILL.md +53 -0
  14. package/src/skills/agent-security-auditor/SKILL.md +42 -0
  15. package/src/skills/agent-strategy-analyst/SKILL.md +54 -0
  16. package/src/skills/defuddle/SKILL.md +41 -0
  17. package/src/skills/find-bugs/SKILL.md +75 -0
  18. package/src/skills/find-skills/SKILL.md +133 -0
  19. package/src/skills/frontend-design/LICENSE.txt +177 -0
  20. package/src/skills/frontend-design/SKILL.md +42 -0
  21. package/src/skills/human-writer/SKILL.md +185 -0
  22. package/src/skills/json-canvas/SKILL.md +656 -0
  23. package/src/skills/marketingskills/.claude-plugin/marketplace.json +45 -0
  24. package/src/skills/marketingskills/README.md +204 -0
  25. package/src/skills/marketingskills/skills/ab-test-setup/SKILL.md +508 -0
  26. package/src/skills/marketingskills/skills/analytics-tracking/SKILL.md +539 -0
  27. package/src/skills/marketingskills/skills/competitor-alternatives/SKILL.md +750 -0
  28. package/src/skills/marketingskills/skills/copy-editing/SKILL.md +439 -0
  29. package/src/skills/marketingskills/skills/copywriting/SKILL.md +455 -0
  30. package/src/skills/marketingskills/skills/email-sequence/SKILL.md +925 -0
  31. package/src/skills/marketingskills/skills/form-cro/SKILL.md +425 -0
  32. package/src/skills/marketingskills/skills/free-tool-strategy/SKILL.md +576 -0
  33. package/src/skills/marketingskills/skills/launch-strategy/SKILL.md +344 -0
  34. package/src/skills/marketingskills/skills/marketing-ideas/SKILL.md +565 -0
  35. package/src/skills/marketingskills/skills/marketing-psychology/SKILL.md +451 -0
  36. package/src/skills/marketingskills/skills/onboarding-cro/SKILL.md +433 -0
  37. package/src/skills/marketingskills/skills/page-cro/SKILL.md +334 -0
  38. package/src/skills/marketingskills/skills/paid-ads/SKILL.md +551 -0
  39. package/src/skills/marketingskills/skills/paywall-upgrade-cro/SKILL.md +570 -0
  40. package/src/skills/marketingskills/skills/popup-cro/SKILL.md +449 -0
  41. package/src/skills/marketingskills/skills/pricing-strategy/SKILL.md +710 -0
  42. package/src/skills/marketingskills/skills/programmatic-seo/SKILL.md +626 -0
  43. package/src/skills/marketingskills/skills/referral-program/SKILL.md +602 -0
  44. package/src/skills/marketingskills/skills/schema-markup/SKILL.md +596 -0
  45. package/src/skills/marketingskills/skills/seo-audit/SKILL.md +384 -0
  46. package/src/skills/marketingskills/skills/signup-flow-cro/SKILL.md +355 -0
  47. package/src/skills/marketingskills/skills/social-content/SKILL.md +807 -0
  48. package/src/skills/obsidian-bases/SKILL.md +651 -0
  49. package/src/skills/obsidian-cli/SKILL.md +103 -0
  50. package/src/skills/obsidian-markdown/SKILL.md +620 -0
  51. package/src/skills/react-best-practices/SKILL.md +136 -0
  52. package/src/skills/refactoring/SKILL.md +119 -0
  53. package/src/skills/seo-content-writer/SKILL.md +661 -0
  54. package/src/skills/seo-content-writer/references/content-structure-templates.md +875 -0
  55. package/src/skills/seo-content-writer/references/title-formulas.md +339 -0
  56. package/src/skills/skill-creator/LICENSE.txt +202 -0
  57. package/src/skills/skill-creator/SKILL.md +357 -0
  58. package/src/skills/skill-creator/references/output-patterns.md +82 -0
  59. package/src/skills/skill-creator/references/workflows.md +28 -0
  60. package/src/skills/skill-creator/scripts/init_skill.py +303 -0
  61. package/src/skills/skill-creator/scripts/package_skill.py +110 -0
  62. package/src/skills/skill-creator/scripts/quick_validate.py +103 -0
  63. package/src/skills/systematic-debugging/CREATION-LOG.md +119 -0
  64. package/src/skills/systematic-debugging/SKILL.md +296 -0
  65. package/src/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  66. package/src/skills/systematic-debugging/condition-based-waiting.md +115 -0
  67. package/src/skills/systematic-debugging/defense-in-depth.md +122 -0
  68. package/src/skills/systematic-debugging/find-polluter.sh +63 -0
  69. package/src/skills/systematic-debugging/root-cause-tracing.md +169 -0
  70. package/src/skills/systematic-debugging/test-academic.md +14 -0
  71. package/src/skills/systematic-debugging/test-pressure-1.md +58 -0
  72. package/src/skills/systematic-debugging/test-pressure-2.md +68 -0
  73. package/src/skills/systematic-debugging/test-pressure-3.md +69 -0
  74. package/src/skills/ui-ux-pro-max/SKILL.md +386 -0
  75. package/src/skills/webhook-handler-patterns/SKILL.md +81 -0
  76. package/src/skills/webhook-handler-patterns/references/error-handling.md +299 -0
  77. package/src/skills/webhook-handler-patterns/references/frameworks/express.md +295 -0
  78. package/src/skills/webhook-handler-patterns/references/frameworks/fastapi.md +415 -0
  79. package/src/skills/webhook-handler-patterns/references/frameworks/nextjs.md +331 -0
  80. package/src/skills/webhook-handler-patterns/references/handler-sequence.md +51 -0
  81. package/src/skills/webhook-handler-patterns/references/idempotency.md +227 -0
  82. package/src/skills/webhook-handler-patterns/references/retry-logic.md +261 -0
  83. package/src/structure/00_Inbox/.gitkeep +0 -0
  84. package/src/structure/00_Inbox/Quick_Capture.md +5 -0
  85. package/src/structure/01_Projects/.gitkeep +0 -0
  86. package/src/structure/01_Projects/_Template Project/plan.md +55 -0
  87. package/src/structure/01_Projects/_Template Project/project_brief.md +45 -0
  88. package/src/structure/01_Projects/_Template Project/project_state.md +19 -0
  89. package/src/structure/02_Areas/Engine/Active_Context.md +126 -0
  90. package/src/structure/02_Areas/Engine/Auto_Learnings.md +36 -0
  91. package/src/structure/02_Areas/Engine/Dailies/.gitkeep +0 -0
  92. package/src/structure/02_Areas/Engine/Daily_Template.md +130 -0
  93. package/src/structure/02_Areas/Engine/Goals.md +65 -0
  94. package/src/structure/02_Areas/Engine/Identity_Prime_template.md +86 -0
  95. package/src/structure/02_Areas/Engine/Metrics_Log.md +45 -0
  96. package/src/structure/02_Areas/Engine/Monthly Reviews/.gitkeep +0 -0
  97. package/src/structure/02_Areas/Engine/Mover_Dossier.md +120 -0
  98. package/src/structure/02_Areas/Engine/Quarterly Reviews/.gitkeep +0 -0
  99. package/src/structure/02_Areas/Engine/Someday_Maybe.md +51 -0
  100. package/src/structure/02_Areas/Engine/Strategy_template.md +65 -0
  101. package/src/structure/02_Areas/Engine/Weekly Reviews/.gitkeep +0 -0
  102. package/src/structure/03_Library/Cheatsheets/.gitkeep +0 -0
  103. package/src/structure/03_Library/Entities/Decisions/_TEMPLATE.md +38 -0
  104. package/src/structure/03_Library/Entities/Entities MOC.md +49 -0
  105. package/src/structure/03_Library/Entities/Organizations/_TEMPLATE.md +28 -0
  106. package/src/structure/03_Library/Entities/People/_TEMPLATE.md +31 -0
  107. package/src/structure/03_Library/Entities/Places/_TEMPLATE.md +26 -0
  108. package/src/structure/03_Library/Inputs/.gitkeep +0 -0
  109. package/src/structure/03_Library/Inputs/Archive/.gitkeep +0 -0
  110. package/src/structure/03_Library/Inputs/Articles/.gitkeep +0 -0
  111. package/src/structure/03_Library/Inputs/Articles/_TEMPLATE.md +29 -0
  112. package/src/structure/03_Library/Inputs/Books/.gitkeep +0 -0
  113. package/src/structure/03_Library/Inputs/Books/_TEMPLATE.md +41 -0
  114. package/src/structure/03_Library/Inputs/Inputs MOC.md +40 -0
  115. package/src/structure/03_Library/Inputs/Videos/.gitkeep +0 -0
  116. package/src/structure/03_Library/Inputs/Videos/_TEMPLATE.md +29 -0
  117. package/src/structure/03_Library/MOCs/.gitkeep +0 -0
  118. package/src/structure/03_Library/Misc/.gitkeep +0 -0
  119. package/src/structure/03_Library/Principles/.gitkeep +0 -0
  120. package/src/structure/03_Library/Principles/Naval_Leverage.md +65 -0
  121. package/src/structure/03_Library/SOPs/Mover_OS_Architecture.md +74 -0
  122. package/src/structure/03_Library/SOPs/Tech_Doctrine.md +123 -0
  123. package/src/structure/03_Library/SOPs/Tech_Stack.md +55 -0
  124. package/src/structure/03_Library/SOPs/Zone_Operating.md +58 -0
  125. package/src/structure/04_Archives/.gitkeep +0 -0
  126. package/src/system/AI_INSTALL_MANIFEST.md +219 -0
  127. package/src/system/Mover_Global_Rules.md +646 -0
  128. package/src/system/V4_CONTEXT.md +223 -0
  129. package/src/workflows/analyse-day.md +376 -0
  130. package/src/workflows/context.md +24 -0
  131. package/src/workflows/debrief.md +199 -0
  132. package/src/workflows/debug-resistance.md +181 -0
  133. package/src/workflows/harvest.md +240 -0
  134. package/src/workflows/history.md +247 -0
  135. package/src/workflows/ignite.md +696 -0
  136. package/src/workflows/init-plan.md +16 -0
  137. package/src/workflows/log.md +314 -0
  138. package/src/workflows/morning.md +209 -0
  139. package/src/workflows/overview.md +203 -0
  140. package/src/workflows/pivot-strategy.md +218 -0
  141. package/src/workflows/plan-tomorrow.md +286 -0
  142. package/src/workflows/primer.md +209 -0
  143. package/src/workflows/project-notes.md +17 -0
  144. package/src/workflows/reboot.md +201 -0
  145. package/src/workflows/refactor-plan.md +135 -0
  146. package/src/workflows/review-week.md +537 -0
  147. package/src/workflows/setup.md +387 -0
  148. package/src/workflows/update.md +411 -0
  149. package/src/workflows/walkthrough.md +259 -0
@@ -0,0 +1,565 @@
1
+ ---
2
+ name: marketing-ideas
3
+ 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,' or 'ideas to grow.' This skill provides 140 proven marketing approaches organized by category."
4
+ ---
5
+
6
+ # Marketing Ideas for SaaS
7
+
8
+ You are a marketing strategist with a library of 140 proven marketing ideas. Your goal is to help users find the right marketing strategies for their specific situation, stage, and resources.
9
+
10
+ ## How to Use This Skill
11
+
12
+ When asked for marketing ideas:
13
+ 1. Ask about their product, audience, and current stage if not clear
14
+ 2. Suggest 3-5 most relevant ideas based on their context
15
+ 3. Provide details on implementation for chosen ideas
16
+ 4. Consider their resources (time, budget, team size)
17
+
18
+ ---
19
+
20
+ ## The 140 Marketing Ideas
21
+
22
+ Organized by category for easy reference.
23
+
24
+ ---
25
+
26
+ ## Content & SEO
27
+
28
+ ### 3. Easy Keyword Ranking
29
+ Target low-competition keywords where you can rank quickly. Find terms competitors overlook—niche variations, long-tail queries, emerging topics. Build authority in micro-niches before expanding.
30
+
31
+ ### 7. SEO Audit
32
+ Conduct comprehensive technical SEO audits of your own site and share findings publicly. Document fixes and improvements to build authority while improving your rankings.
33
+
34
+ ### 39. Glossary Marketing
35
+ Create comprehensive glossaries defining industry terms. Each term becomes an SEO-optimized page targeting "what is X" searches, building topical authority while capturing top-of-funnel traffic.
36
+
37
+ ### 40. Programmatic SEO
38
+ Build template-driven pages at scale targeting keyword patterns. Location pages, comparison pages, integration pages—any pattern with search volume can become a scalable content engine.
39
+
40
+ ### 41. Content Repurposing
41
+ Transform one piece of content into multiple formats. Blog post becomes Twitter thread, YouTube video, podcast episode, infographic. Maximize ROI on content creation.
42
+
43
+ ### 56. Proprietary Data Content
44
+ Leverage unique data from your product to create original research and reports. Data competitors can't replicate creates linkable, quotable assets.
45
+
46
+ ### 67. Internal Linking
47
+ Strategic internal linking distributes authority and improves crawlability. Build topical clusters connecting related content to strengthen overall SEO performance.
48
+
49
+ ### 73. Content Refreshing
50
+ Regularly update existing content with fresh data, examples, and insights. Refreshed content often outperforms new content and protects existing rankings.
51
+
52
+ ### 74. Knowledge Base SEO
53
+ Optimize help documentation for search. Support articles targeting problem-solution queries capture users actively seeking solutions.
54
+
55
+ ### 137. Parasite SEO
56
+ Publish content on high-authority platforms (Medium, LinkedIn, Substack) that rank faster than your own domain. Funnel that traffic back to your product.
57
+
58
+ ---
59
+
60
+ ## Competitor & Comparison
61
+
62
+ ### 2. Competitor Comparison Pages
63
+ Create detailed comparison pages positioning your product against competitors. "[Your Product] vs [Competitor]" and "[Competitor] alternatives" pages capture high-intent searchers.
64
+
65
+ ### 4. Marketing Jiu-Jitsu
66
+ Turn competitor weaknesses into your strengths. When competitors raise prices, launch affordability campaigns. When they have outages, emphasize your reliability.
67
+
68
+ ### 38. Competitive Ad Research
69
+ Study competitor advertising through tools like SpyFu or Facebook Ad Library. Learn what messaging resonates, then improve on their approach.
70
+
71
+ ---
72
+
73
+ ## Free Tools & Engineering
74
+
75
+ ### 5. Side Projects as Marketing
76
+ Build small, useful tools related to your main product. Side projects attract users who may later convert, generate backlinks, and showcase your capabilities.
77
+
78
+ ### 30. Engineering as Marketing
79
+ Build free tools that solve real problems for your target audience. Calculators, analyzers, generators—useful utilities that naturally lead to your paid product.
80
+
81
+ ### 31. Importers as Marketing
82
+ Build import tools for competitor data. "Import from [Competitor]" reduces switching friction while capturing users actively looking to leave.
83
+
84
+ ### 92. Quiz Marketing
85
+ Create interactive quizzes that engage users while qualifying leads. Personality quizzes, assessments, and diagnostic tools generate shares and capture emails.
86
+
87
+ ### 93. Calculator Marketing
88
+ Build calculators solving real problems—ROI calculators, pricing estimators, savings tools. Calculators attract links, rank well, and demonstrate value.
89
+
90
+ ### 94. Chrome Extensions
91
+ Create browser extensions providing standalone value. Chrome Web Store becomes another distribution channel while keeping your brand in daily view.
92
+
93
+ ### 110. Microsites
94
+ Build focused microsites for specific campaigns, products, or audiences. Dedicated domains can rank faster and allow bolder positioning.
95
+
96
+ ### 117. Scanners
97
+ Build free scanning tools that audit or analyze something for users. Website scanners, security checkers, performance analyzers—provide value while showcasing expertise.
98
+
99
+ ### 122. Public APIs
100
+ Open APIs enable developers to build on your platform, creating an ecosystem that attracts users and increases switching costs.
101
+
102
+ ---
103
+
104
+ ## Paid Advertising
105
+
106
+ ### 18. Podcast Advertising
107
+ Sponsor relevant podcasts to reach engaged audiences. Host-read ads perform especially well due to built-in trust.
108
+
109
+ ### 48. Pre-targeting Ads
110
+ Show awareness ads before launching direct response campaigns. Warm audiences convert better than cold ones.
111
+
112
+ ### 55. Facebook Ads
113
+ Meta's detailed targeting reaches specific audiences. Test creative variations and leverage retargeting for users who've shown interest.
114
+
115
+ ### 57. Instagram Ads
116
+ Visual-first advertising for products with strong imagery. Stories and Reels ads capture attention in native formats.
117
+
118
+ ### 60. Twitter Ads
119
+ Reach engaged professionals discussing industry topics. Promoted tweets and follower campaigns build visibility.
120
+
121
+ ### 62. LinkedIn Ads
122
+ Target by job title, company size, and industry. Premium CPMs justified by B2B purchase intent.
123
+
124
+ ### 64. Reddit Ads
125
+ Reach passionate communities with authentic messaging. Reddit users detect inauthentic ads quickly—transparency wins.
126
+
127
+ ### 66. Quora Ads
128
+ Target users actively asking questions your product answers. Intent-rich environment for educational ads.
129
+
130
+ ### 68. Google Ads
131
+ Capture high-intent search queries. Brand terms protect your name; competitor terms capture switchers; category terms reach researchers.
132
+
133
+ ### 70. YouTube Ads
134
+ Video ads with detailed targeting. Pre-roll and discovery ads reach users consuming related content.
135
+
136
+ ### 72. Cross-Platform Retargeting
137
+ Follow users across platforms with consistent messaging. Retargeting converts window shoppers into buyers.
138
+
139
+ ### 129. Click-to-Messenger Ads
140
+ Ads that open direct conversations rather than landing pages. Higher engagement through immediate dialogue.
141
+
142
+ ---
143
+
144
+ ## Social Media & Community
145
+
146
+ ### 42. Community Marketing
147
+ Build and nurture communities around your product or industry. Slack groups, Discord servers, Facebook groups, or forums create loyal advocates.
148
+
149
+ ### 43. Quora Marketing
150
+ Answer relevant questions with genuine expertise. Include product mentions where naturally appropriate.
151
+
152
+ ### 76. Reddit Keyword Research
153
+ Mine Reddit for real language your audience uses. Discover pain points, objections, and desires expressed naturally.
154
+
155
+ ### 82. Reddit Marketing
156
+ Participate authentically in relevant subreddits. Provide value first; promotional content fails without established credibility.
157
+
158
+ ### 105. LinkedIn Audience
159
+ Build personal brands on LinkedIn for B2B reach. Thought leadership content builds authority and drives inbound interest.
160
+
161
+ ### 106. Instagram Audience
162
+ Visual storytelling for products with strong aesthetics. Behind-the-scenes, user stories, and product showcases build following.
163
+
164
+ ### 107. X Audience
165
+ Build presence on X/Twitter through consistent value. Threads, insights, and engagement grow followings that convert.
166
+
167
+ ### 130. Short Form Video
168
+ TikTok, Reels, and Shorts reach new audiences with snackable content. Educational and entertaining short videos spread organically.
169
+
170
+ ### 138. Engagement Pods
171
+ Coordinate with peers to boost each other's content engagement. Early engagement signals help content reach wider audiences.
172
+
173
+ ### 139. Comment Marketing
174
+ Thoughtful comments on relevant content build visibility. Add value to discussions where your target audience pays attention.
175
+
176
+ ---
177
+
178
+ ## Email Marketing
179
+
180
+ ### 17. Mistake Email Marketing
181
+ Send "oops" emails when something genuinely goes wrong. Authenticity and transparency often generate higher engagement than polished campaigns.
182
+
183
+ ### 25. Reactivation Emails
184
+ Win back churned or inactive users with targeted campaigns. Remind them of value, share what's new, offer incentives.
185
+
186
+ ### 28. Founder Welcome Email
187
+ Personal welcome emails from founders create connection. Share your story, ask about their goals, start relationships.
188
+
189
+ ### 36. Dynamic Email Capture
190
+ Smart email capture that adapts to user behavior. Exit intent, scroll depth, time on page—trigger popups at the right moment.
191
+
192
+ ### 79. Monthly Newsletters
193
+ Consistent newsletters keep your brand top-of-mind. Curate industry news, share insights, highlight product updates.
194
+
195
+ ### 80. Inbox Placement
196
+ Technical email optimization for deliverability. Authentication, list hygiene, and engagement signals determine whether emails arrive.
197
+
198
+ ### 113. Onboarding Emails
199
+ Guide new users to activation with targeted email sequences. Behavior-triggered emails outperform time-based schedules.
200
+
201
+ ### 115. Win-back Emails
202
+ Re-engage churned users with compelling reasons to return. New features, improvements, or offers reignite interest.
203
+
204
+ ### 116. Trial Reactivation
205
+ Expired trials aren't lost causes. Targeted campaigns highlighting new value can recover abandoned trials.
206
+
207
+ ---
208
+
209
+ ## Partnerships & Programs
210
+
211
+ ### 9. Affiliate Discovery Through Backlinks
212
+ Find potential affiliates by analyzing who links to competitors. Sites already promoting similar products may welcome affiliate relationships.
213
+
214
+ ### 27. Influencer Whitelisting
215
+ Run ads through influencer accounts for authentic reach. Whitelisting combines influencer credibility with paid targeting.
216
+
217
+ ### 33. Reseller Programs
218
+ Enable agencies and service providers to resell your product. White-label options create invested distribution partners.
219
+
220
+ ### 37. Expert Networks
221
+ Build networks of certified experts who implement your product. Experts extend your reach while ensuring quality implementations.
222
+
223
+ ### 50. Newsletter Swaps
224
+ Exchange promotional mentions with complementary newsletters. Access each other's audiences without advertising costs.
225
+
226
+ ### 51. Article Quotes
227
+ Contribute expert quotes to journalists and publications. Tools like HARO connect experts with writers seeking sources.
228
+
229
+ ### 77. Pixel Sharing
230
+ Partner with complementary companies to share remarketing audiences. Expand reach through strategic data partnerships.
231
+
232
+ ### 78. Shared Slack Channels
233
+ Create shared channels with partners and customers. Direct communication lines strengthen relationships.
234
+
235
+ ### 97. Affiliate Program
236
+ Structured commission programs for referrers. Affiliates become motivated salespeople earning from successful referrals.
237
+
238
+ ### 98. Integration Marketing
239
+ Joint marketing with integration partners. Combined audiences and shared promotion amplify reach for both products.
240
+
241
+ ### 99. Community Sponsorship
242
+ Sponsor relevant communities, newsletters, or publications. Aligned sponsorships build brand awareness with target audiences.
243
+
244
+ ---
245
+
246
+ ## Events & Speaking
247
+
248
+ ### 15. Live Webinars
249
+ Educational webinars demonstrate expertise while generating leads. Interactive formats create engagement and urgency.
250
+
251
+ ### 53. Virtual Summits
252
+ Multi-speaker online events attract audiences through varied perspectives. Summit speakers promote to their audiences, amplifying reach.
253
+
254
+ ### 87. Roadshows
255
+ Take your product on the road to meet customers directly. Regional events create personal connections at scale.
256
+
257
+ ### 90. Local Meetups
258
+ Host or attend local meetups in key markets. In-person connections create stronger relationships than digital alone.
259
+
260
+ ### 91. Meetup Sponsorship
261
+ Sponsor relevant meetups to reach engaged local audiences. Food, venue, or swag sponsorships generate goodwill.
262
+
263
+ ### 103. Conference Speaking
264
+ Speak at industry conferences to reach engaged audiences. Presentations showcase expertise while generating leads.
265
+
266
+ ### 126. Conferences
267
+ Host your own conference to become the center of your industry. User conferences strengthen communities and generate content.
268
+
269
+ ### 132. Conference Sponsorship
270
+ Sponsor relevant conferences for brand visibility. Booth presence, speaking slots, and attendee lists justify investment.
271
+
272
+ ---
273
+
274
+ ## PR & Media
275
+
276
+ ### 8. Media Acquisitions as Marketing
277
+ Acquire newsletters, podcasts, or publications in your space. Owned media provides direct access to engaged audiences.
278
+
279
+ ### 52. Press Coverage
280
+ Pitch newsworthy stories to relevant publications. Launches, funding, data, and trends create press opportunities.
281
+
282
+ ### 84. Fundraising PR
283
+ Leverage funding announcements for press coverage. Rounds signal validation and create natural news hooks.
284
+
285
+ ### 118. Documentaries
286
+ Create documentary content exploring your industry or customers. Long-form storytelling builds deep connection and differentiation.
287
+
288
+ ---
289
+
290
+ ## Launches & Promotions
291
+
292
+ ### 21. Black Friday Promotions
293
+ Annual deals create urgency and acquisition spikes. Promotional periods capture deal-seekers who become long-term customers.
294
+
295
+ ### 22. Product Hunt Launch
296
+ Structured Product Hunt launches reach early adopters. Preparation, timing, and community engagement drive successful launches.
297
+
298
+ ### 23. Early-Access Referrals
299
+ Reward referrals with earlier access during launches. Waitlist referral programs create viral anticipation.
300
+
301
+ ### 44. New Year Promotions
302
+ New Year brings fresh budgets and goal-setting energy. Promotional timing aligned with renewal mindsets increases conversion.
303
+
304
+ ### 54. Early Access Pricing
305
+ Launch with discounted early access tiers. Early supporters get deals while you build testimonials and feedback.
306
+
307
+ ### 58. Product Hunt Alternatives
308
+ Launch on alternatives to Product Hunt—BetaList, Launching Next, AlternativeTo. Multiple launch platforms expand reach.
309
+
310
+ ### 59. Twitter Giveaways
311
+ Engagement-boosting giveaways that require follows, retweets, or tags. Giveaways grow following while generating buzz.
312
+
313
+ ### 109. Giveaways
314
+ Strategic giveaways attract attention and capture leads. Product giveaways, partner prizes, or experience rewards create engagement.
315
+
316
+ ### 119. Vacation Giveaways
317
+ Grand prize giveaways generate massive engagement. Dream vacation packages motivate sharing and participation.
318
+
319
+ ### 140. Lifetime Deals
320
+ One-time payment deals generate cash and users. Lifetime deal platforms reach deal-hunting audiences willing to pay upfront.
321
+
322
+ ---
323
+
324
+ ## Product-Led Growth
325
+
326
+ ### 16. Powered By Marketing
327
+ "Powered by [Your Product]" badges on customer output create free impressions. Every customer becomes a marketing channel.
328
+
329
+ ### 19. Free Migrations
330
+ Offer free migration services from competitors. Reduce switching friction while capturing users ready to leave.
331
+
332
+ ### 20. Contract Buyouts
333
+ Pay to exit competitor contracts. Dramatic commitment removes the final barrier for locked-in prospects.
334
+
335
+ ### 32. One-Click Registration
336
+ Minimize signup friction with one-click OAuth options. Pre-filled forms and instant access increase conversion.
337
+
338
+ ### 69. In-App Upsells
339
+ Strategic upgrade prompts within the product experience. Contextual upsells at usage limits or feature attempts convert best.
340
+
341
+ ### 71. Newsletter Referrals
342
+ Built-in referral programs for newsletters and content. Easy sharing mechanisms turn subscribers into promoters.
343
+
344
+ ### 75. Viral Loops
345
+ Product mechanics that naturally encourage sharing. Collaboration features, public outputs, or referral incentives create organic growth.
346
+
347
+ ### 114. Offboarding Flows
348
+ Optimize cancellation flows to retain or learn. Exit surveys, save offers, and pause options reduce churn.
349
+
350
+ ### 124. Concierge Setup
351
+ White-glove onboarding for high-value accounts. Personal setup assistance increases activation and retention.
352
+
353
+ ### 127. Onboarding Optimization
354
+ Continuous improvement of the new user experience. Faster time-to-value increases conversion and retention.
355
+
356
+ ---
357
+
358
+ ## Content Formats
359
+
360
+ ### 1. Playlists as Marketing
361
+ Create Spotify playlists for your audience—productivity playlists, work music, industry-themed collections. Daily listening touchpoints build brand affinity.
362
+
363
+ ### 46. Template Marketing
364
+ Offer free templates users can immediately use. Templates in your product create habit and dependency while showcasing capabilities.
365
+
366
+ ### 49. Graphic Novel Marketing
367
+ Transform complex stories into visual narratives. Graphic novels stand out and make abstract concepts tangible.
368
+
369
+ ### 65. Promo Videos
370
+ High-quality promotional videos showcase your product professionally. Invest in production value for shareable, memorable content.
371
+
372
+ ### 81. Industry Interviews
373
+ Interview customers, experts, and thought leaders. Interview content builds relationships while creating valuable assets.
374
+
375
+ ### 89. Social Screenshots
376
+ Design shareable screenshot templates for social proof. Make it easy for customers to share wins and testimonials.
377
+
378
+ ### 101. Online Courses
379
+ Educational courses establish authority while generating leads. Free courses attract learners; paid courses create revenue.
380
+
381
+ ### 102. Book Marketing
382
+ Author a book establishing expertise in your domain. Books create credibility, speaking opportunities, and media coverage.
383
+
384
+ ### 111. Annual Reports
385
+ Publish annual reports showcasing industry data and trends. Original research becomes a linkable, quotable reference.
386
+
387
+ ### 120. End of Year Wraps
388
+ Personalized year-end summaries users want to share. "Spotify Wrapped" style reports turn data into social content.
389
+
390
+ ### 121. Podcasts
391
+ Launch a podcast reaching audiences during commutes and workouts. Regular audio content builds intimate audience relationships.
392
+
393
+ ### 63. Changelogs
394
+ Public changelogs showcase product momentum. Regular updates demonstrate active development and responsiveness.
395
+
396
+ ### 112. Public Demos
397
+ Live product demonstrations showing real usage. Transparent demos build trust and answer questions in real-time.
398
+
399
+ ---
400
+
401
+ ## Unconventional & Creative
402
+
403
+ ### 6. Awards as Marketing
404
+ Create industry awards positioning your brand as tastemaker. Award programs attract applications, sponsors, and press coverage.
405
+
406
+ ### 10. Challenges as Marketing
407
+ Launch viral challenges that spread organically. Creative challenges generate user content and social sharing.
408
+
409
+ ### 11. Reality TV Marketing
410
+ Create reality-show style content following real customers. Documentary competition formats create engaging narratives.
411
+
412
+ ### 12. Controversy as Marketing
413
+ Strategic positioning against industry norms. Contrarian takes generate attention and discussion.
414
+
415
+ ### 13. Moneyball Marketing
416
+ Data-driven marketing finding undervalued channels and tactics. Analytics identify opportunities competitors overlook.
417
+
418
+ ### 14. Curation as Marketing
419
+ Curate valuable resources for your audience. Directories, lists, and collections provide value while building authority.
420
+
421
+ ### 29. Grants as Marketing
422
+ Offer grants to customers or community members. Grant programs generate applications, PR, and goodwill.
423
+
424
+ ### 34. Product Competitions
425
+ Sponsor competitions using your product. Hackathons, design contests, and challenges showcase capabilities while engaging users.
426
+
427
+ ### 35. Cameo Marketing
428
+ Use Cameo celebrities for personalized marketing messages. Unexpected celebrity endorsements generate buzz and shares.
429
+
430
+ ### 83. OOH Advertising
431
+ Out-of-home advertising—billboards, transit ads, and placements. Physical presence in key locations builds brand awareness.
432
+
433
+ ### 125. Marketing Stunts
434
+ Bold, attention-grabbing marketing moments. Well-executed stunts generate press coverage and social sharing.
435
+
436
+ ### 128. Guerrilla Marketing
437
+ Unconventional, low-cost marketing in unexpected places. Creative guerrilla tactics stand out from traditional advertising.
438
+
439
+ ### 136. Humor Marketing
440
+ Use humor to stand out and create memorability. Funny content gets shared and builds brand personality.
441
+
442
+ ---
443
+
444
+ ## Platforms & Marketplaces
445
+
446
+ ### 24. Open Source as Marketing
447
+ Open-source components or tools build developer goodwill. Open source creates community, contributions, and credibility.
448
+
449
+ ### 61. App Store Optimization
450
+ Optimize app store listings for discoverability. Keywords, screenshots, and reviews drive organic app installs.
451
+
452
+ ### 86. App Marketplaces
453
+ List in relevant app marketplaces and directories. Salesforce AppExchange, Shopify App Store, and similar platforms provide distribution.
454
+
455
+ ### 95. YouTube Reviews
456
+ Get YouTubers to review your product. Authentic reviews reach engaged audiences and create lasting content.
457
+
458
+ ### 96. YouTube Channel
459
+ Build a YouTube presence with tutorials, updates, and thought leadership. Video content compounds in value over time.
460
+
461
+ ### 108. Source Platforms
462
+ Submit to platforms that aggregate tools and products. G2, Capterra, GetApp, and similar directories drive discovery.
463
+
464
+ ### 88. Review Sites
465
+ Actively manage presence on review platforms. Reviews influence purchase decisions; actively request and respond to them.
466
+
467
+ ### 100. Live Audio
468
+ Host live audio discussions on Twitter Spaces, Clubhouse, or LinkedIn Audio. Real-time conversation creates intimate engagement.
469
+
470
+ ---
471
+
472
+ ## International & Localization
473
+
474
+ ### 133. International Expansion
475
+ Expand to new geographic markets. Localization, partnerships, and regional marketing unlock new growth.
476
+
477
+ ### 134. Price Localization
478
+ Adjust pricing for local purchasing power. Localized pricing increases conversion in price-sensitive markets.
479
+
480
+ ---
481
+
482
+ ## Developer & Technical
483
+
484
+ ### 104. Investor Marketing
485
+ Market to investors for downstream portfolio introductions. Investors recommend tools to their portfolio companies.
486
+
487
+ ### 123. Certifications
488
+ Create certification programs validating expertise. Certifications create invested advocates while generating training revenue.
489
+
490
+ ### 131. Support as Marketing
491
+ Turn support interactions into marketing opportunities. Exceptional support creates stories customers share.
492
+
493
+ ### 135. Developer Relations
494
+ Build relationships with developer communities. DevRel creates advocates who recommend your product to peers.
495
+
496
+ ---
497
+
498
+ ## Audience-Specific
499
+
500
+ ### 26. Two-Sided Referrals
501
+ Reward both referrer and referred in referral programs. Dual incentives motivate sharing while welcoming new users.
502
+
503
+ ### 45. Podcast Tours
504
+ Guest on multiple podcasts reaching your target audience. Podcast tours create compounding awareness across shows.
505
+
506
+ ### 47. Customer Language
507
+ Use the exact words your customers use. Mining reviews, support tickets, and interviews for language that resonates.
508
+
509
+ ---
510
+
511
+ ## Implementation Tips
512
+
513
+ When suggesting ideas, consider:
514
+
515
+ **By Stage:**
516
+ - Pre-launch: Waitlist referrals, early access, Product Hunt prep
517
+ - Early stage: Content, SEO, community, founder-led sales
518
+ - Growth stage: Paid acquisition, partnerships, events
519
+ - Scale: Brand, international, acquisitions
520
+
521
+ **By Budget:**
522
+ - Free: Content, SEO, community, social media
523
+ - Low budget: Targeted ads, sponsorships, tools
524
+ - Medium budget: Events, partnerships, PR
525
+ - High budget: Acquisitions, conferences, brand campaigns
526
+
527
+ **By Timeline:**
528
+ - Quick wins: Ads, email, social posts
529
+ - Medium-term: Content, SEO, community building
530
+ - Long-term: Brand, thought leadership, platform effects
531
+
532
+ ---
533
+
534
+ ## Questions to Ask
535
+
536
+ If you need more context:
537
+ 1. What's your product and who's your target customer?
538
+ 2. What's your current stage and main growth goal?
539
+ 3. What's your marketing budget and team size?
540
+ 4. What have you already tried that worked or didn't?
541
+ 5. What are your competitors doing that you admire or want to counter?
542
+
543
+ ---
544
+
545
+ ## Output Format
546
+
547
+ When recommending ideas:
548
+
549
+ **For each recommended idea:**
550
+ - **Idea name**: One-line description
551
+ - **Why it fits**: Connection to their situation
552
+ - **How to start**: First 2-3 implementation steps
553
+ - **Expected outcome**: What success looks like
554
+ - **Resources needed**: Time, budget, skills required
555
+
556
+ ---
557
+
558
+ ## Related Skills
559
+
560
+ - **programmatic-seo**: For scaling SEO content (#40)
561
+ - **competitor-alternatives**: For comparison pages (#2)
562
+ - **email-sequence**: For email marketing tactics
563
+ - **free-tool-strategy**: For engineering as marketing (#30)
564
+ - **page-cro**: For landing page optimization
565
+ - **ab-test-setup**: For testing marketing experiments