bobo-ai-cli 1.0.1

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.
Files changed (234) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +216 -0
  3. package/dist/agent.d.ts +9 -0
  4. package/dist/agent.js +144 -0
  5. package/dist/agent.js.map +1 -0
  6. package/dist/config.d.ts +15 -0
  7. package/dist/config.js +76 -0
  8. package/dist/config.js.map +1 -0
  9. package/dist/index.d.ts +2 -0
  10. package/dist/index.js +366 -0
  11. package/dist/index.js.map +1 -0
  12. package/dist/knowledge-commands.d.ts +2 -0
  13. package/dist/knowledge-commands.js +40 -0
  14. package/dist/knowledge-commands.js.map +1 -0
  15. package/dist/knowledge.d.ts +17 -0
  16. package/dist/knowledge.js +112 -0
  17. package/dist/knowledge.js.map +1 -0
  18. package/dist/memory.d.ts +17 -0
  19. package/dist/memory.js +215 -0
  20. package/dist/memory.js.map +1 -0
  21. package/dist/planner.d.ts +22 -0
  22. package/dist/planner.js +130 -0
  23. package/dist/planner.js.map +1 -0
  24. package/dist/project.d.ts +25 -0
  25. package/dist/project.js +117 -0
  26. package/dist/project.js.map +1 -0
  27. package/dist/rules-commands.d.ts +2 -0
  28. package/dist/rules-commands.js +51 -0
  29. package/dist/rules-commands.js.map +1 -0
  30. package/dist/skills.d.ts +28 -0
  31. package/dist/skills.js +349 -0
  32. package/dist/skills.js.map +1 -0
  33. package/dist/structured/loader.d.ts +19 -0
  34. package/dist/structured/loader.js +147 -0
  35. package/dist/structured/loader.js.map +1 -0
  36. package/dist/structured/paths.d.ts +2 -0
  37. package/dist/structured/paths.js +14 -0
  38. package/dist/structured/paths.js.map +1 -0
  39. package/dist/structured/project-scaffold.d.ts +7 -0
  40. package/dist/structured/project-scaffold.js +60 -0
  41. package/dist/structured/project-scaffold.js.map +1 -0
  42. package/dist/structured/render-markdown.d.ts +37 -0
  43. package/dist/structured/render-markdown.js +47 -0
  44. package/dist/structured/render-markdown.js.map +1 -0
  45. package/dist/structured/render-table.d.ts +1 -0
  46. package/dist/structured/render-table.js +15 -0
  47. package/dist/structured/render-table.js.map +1 -0
  48. package/dist/structured/search.d.ts +10 -0
  49. package/dist/structured/search.js +104 -0
  50. package/dist/structured/search.js.map +1 -0
  51. package/dist/structured/skill-runner.d.ts +15 -0
  52. package/dist/structured/skill-runner.js +60 -0
  53. package/dist/structured/skill-runner.js.map +1 -0
  54. package/dist/structured/types.d.ts +212 -0
  55. package/dist/structured/types.js +97 -0
  56. package/dist/structured/types.js.map +1 -0
  57. package/dist/structured-skills-commands.d.ts +3 -0
  58. package/dist/structured-skills-commands.js +126 -0
  59. package/dist/structured-skills-commands.js.map +1 -0
  60. package/dist/structured-template-commands.d.ts +2 -0
  61. package/dist/structured-template-commands.js +34 -0
  62. package/dist/structured-template-commands.js.map +1 -0
  63. package/dist/tools/index.d.ts +3 -0
  64. package/dist/tools/index.js +450 -0
  65. package/dist/tools/index.js.map +1 -0
  66. package/dist/ui.d.ts +19 -0
  67. package/dist/ui.js +72 -0
  68. package/dist/ui.js.map +1 -0
  69. package/dist/web.d.ts +4 -0
  70. package/dist/web.js +124 -0
  71. package/dist/web.js.map +1 -0
  72. package/knowledge/advanced-patterns.md +70 -0
  73. package/knowledge/agent-directives.md +74 -0
  74. package/knowledge/dream.md +36 -0
  75. package/knowledge/engineering.md +46 -0
  76. package/knowledge/error-catalog.md +33 -0
  77. package/knowledge/index.json +170 -0
  78. package/knowledge/memory/cache-optimization-and-skill-integration.md +102 -0
  79. package/knowledge/memory/engineering-patterns.md +134 -0
  80. package/knowledge/memory/feedback_root_structure.md +16 -0
  81. package/knowledge/memory/project-contexts.md +69 -0
  82. package/knowledge/memory/tools-and-services.md +85 -0
  83. package/knowledge/rules/agents.md +62 -0
  84. package/knowledge/rules/blocking-rules.md +323 -0
  85. package/knowledge/rules/cache-management.md +379 -0
  86. package/knowledge/rules/capability-evolution.md +132 -0
  87. package/knowledge/rules/coding.md +126 -0
  88. package/knowledge/rules/engineering-workflows.md +225 -0
  89. package/knowledge/rules/evomap-content-guidelines.md +354 -0
  90. package/knowledge/rules/evomap-guide.md +224 -0
  91. package/knowledge/rules/git.md +31 -0
  92. package/knowledge/rules/hooks.md +106 -0
  93. package/knowledge/rules/performance.md +101 -0
  94. package/knowledge/rules/remotion-auto-production.md +1120 -0
  95. package/knowledge/rules/security.md +46 -0
  96. package/knowledge/rules/testing.md +32 -0
  97. package/knowledge/rules/work-mode.md +208 -0
  98. package/knowledge/rules.md +62 -0
  99. package/knowledge/skills/Skill_Seekers.md +1722 -0
  100. package/knowledge/skills/ab-test-setup.md +557 -0
  101. package/knowledge/skills/agent-sdk-dev.md +238 -0
  102. package/knowledge/skills/agent-tools.md +136 -0
  103. package/knowledge/skills/analytics-tracking.md +597 -0
  104. package/knowledge/skills/artifacts-builder.md +89 -0
  105. package/knowledge/skills/asana.md +13 -0
  106. package/knowledge/skills/backend-expert.md +97 -0
  107. package/knowledge/skills/brand-voice.md +481 -0
  108. package/knowledge/skills/browser-use.md +419 -0
  109. package/knowledge/skills/cache-optimization-skill.md +179 -0
  110. package/knowledge/skills/canvas-design.md +147 -0
  111. package/knowledge/skills/citation-validator.md +203 -0
  112. package/knowledge/skills/clangd-lsp.md +52 -0
  113. package/knowledge/skills/code-review-expert.md +85 -0
  114. package/knowledge/skills/code-review.md +280 -0
  115. package/knowledge/skills/code-simplifier.md +13 -0
  116. package/knowledge/skills/commit-commands.md +258 -0
  117. package/knowledge/skills/competitor-alternatives.md +795 -0
  118. package/knowledge/skills/content-atomizer.md +910 -0
  119. package/knowledge/skills/content-research-writer.md +605 -0
  120. package/knowledge/skills/context-optimization-suite.md +162 -0
  121. package/knowledge/skills/context7.md +13 -0
  122. package/knowledge/skills/copy-editing.md +494 -0
  123. package/knowledge/skills/copywriting.md +510 -0
  124. package/knowledge/skills/csharp-lsp.md +40 -0
  125. package/knowledge/skills/decision-making-framework.md +154 -0
  126. package/knowledge/skills/developer-growth-analysis.md +335 -0
  127. package/knowledge/skills/direct-response-copy.md +2336 -0
  128. package/knowledge/skills/docker-expert.md +229 -0
  129. package/knowledge/skills/document-skills.md +13 -0
  130. package/knowledge/skills/documentation-expert.md +126 -0
  131. package/knowledge/skills/email-sequence.md +1061 -0
  132. package/knowledge/skills/email-sequences.md +910 -0
  133. package/knowledge/skills/example-plugin.md +72 -0
  134. package/knowledge/skills/explanatory-output-style.md +82 -0
  135. package/knowledge/skills/feature-dev.md +458 -0
  136. package/knowledge/skills/file-organizer.md +466 -0
  137. package/knowledge/skills/firebase.disabled.md +13 -0
  138. package/knowledge/skills/form-cro.md +488 -0
  139. package/knowledge/skills/free-tool-strategy.md +636 -0
  140. package/knowledge/skills/frontend-design-offical.md +55 -0
  141. package/knowledge/skills/frontend-design.md +41 -0
  142. package/knowledge/skills/frontend-expert.md +93 -0
  143. package/knowledge/skills/github.md +13 -0
  144. package/knowledge/skills/gitlab.md +13 -0
  145. package/knowledge/skills/gopls-lsp.md +32 -0
  146. package/knowledge/skills/got-controller.md +218 -0
  147. package/knowledge/skills/greptile.md +72 -0
  148. package/knowledge/skills/hookify.md +376 -0
  149. package/knowledge/skills/image-editor.md +189 -0
  150. package/knowledge/skills/image-enhancer.md +109 -0
  151. package/knowledge/skills/jdtls-lsp.md +49 -0
  152. package/knowledge/skills/json-canvas.md +654 -0
  153. package/knowledge/skills/keyword-research.md +559 -0
  154. package/knowledge/skills/kotlin-lsp.md +28 -0
  155. package/knowledge/skills/laravel-boost.md +13 -0
  156. package/knowledge/skills/launch-strategy.md +394 -0
  157. package/knowledge/skills/lead-magnet.md +393 -0
  158. package/knowledge/skills/learning-output-style.md +106 -0
  159. package/knowledge/skills/linear.md +13 -0
  160. package/knowledge/skills/lua-lsp.md +47 -0
  161. package/knowledge/skills/marketing-ideas.md +720 -0
  162. package/knowledge/skills/marketing-psychology.md +534 -0
  163. package/knowledge/skills/mcp-builder.md +369 -0
  164. package/knowledge/skills/meeting-insights-analyzer.md +347 -0
  165. package/knowledge/skills/memory-evolution-system.md +172 -0
  166. package/knowledge/skills/multi-lens-thinking.md +407 -0
  167. package/knowledge/skills/nano-banana-pro.md +116 -0
  168. package/knowledge/skills/newsletter.md +736 -0
  169. package/knowledge/skills/notebooklm.md +296 -0
  170. package/knowledge/skills/obsidian-bases.md +634 -0
  171. package/knowledge/skills/obsidian-markdown.md +651 -0
  172. package/knowledge/skills/onboarding-cro.md +494 -0
  173. package/knowledge/skills/orchestrator.md +681 -0
  174. package/knowledge/skills/page-cro.md +379 -0
  175. package/knowledge/skills/paid-ads.md +624 -0
  176. package/knowledge/skills/paywall-upgrade-cro.md +651 -0
  177. package/knowledge/skills/php-lsp.md +36 -0
  178. package/knowledge/skills/planning-with-files.md +193 -0
  179. package/knowledge/skills/playwright.md +13 -0
  180. package/knowledge/skills/plugin-dev.md +434 -0
  181. package/knowledge/skills/popup-cro.md +520 -0
  182. package/knowledge/skills/positioning-angles.md +330 -0
  183. package/knowledge/skills/pr-review-toolkit.md +359 -0
  184. package/knowledge/skills/pricing-strategy.md +777 -0
  185. package/knowledge/skills/programmatic-seo.md +714 -0
  186. package/knowledge/skills/pyright-lsp.md +43 -0
  187. package/knowledge/skills/quality-assurance-framework.md +168 -0
  188. package/knowledge/skills/question-refiner.md +160 -0
  189. package/knowledge/skills/ralph-loop.md +205 -0
  190. package/knowledge/skills/refactoring-expert.md +103 -0
  191. package/knowledge/skills/referral-program.md +668 -0
  192. package/knowledge/skills/research-executor.md +164 -0
  193. package/knowledge/skills/review-with-security.md +12 -0
  194. package/knowledge/skills/rust-analyzer-lsp.md +50 -0
  195. package/knowledge/skills/schema-markup.md +647 -0
  196. package/knowledge/skills/security-audit-expert.md +124 -0
  197. package/knowledge/skills/security-expert.md +140 -0
  198. package/knowledge/skills/security-guidance.md +13 -0
  199. package/knowledge/skills/seedance-prompt.md +139 -0
  200. package/knowledge/skills/self-evolution.md +1160 -0
  201. package/knowledge/skills/seo-audit.md +432 -0
  202. package/knowledge/skills/seo-content.md +787 -0
  203. package/knowledge/skills/serena.md +13 -0
  204. package/knowledge/skills/signup-flow-cro.md +409 -0
  205. package/knowledge/skills/skill-creator.md +220 -0
  206. package/knowledge/skills/skill-manager.md +226 -0
  207. package/knowledge/skills/skill-share.md +98 -0
  208. package/knowledge/skills/slack.md +13 -0
  209. package/knowledge/skills/social-content.md +878 -0
  210. package/knowledge/skills/spec-flow-skill.md +124 -0
  211. package/knowledge/skills/stripe.md +13 -0
  212. package/knowledge/skills/supabase.md +13 -0
  213. package/knowledge/skills/swift-lsp.md +40 -0
  214. package/knowledge/skills/synthesizer.md +236 -0
  215. package/knowledge/skills/template-skill.md +16 -0
  216. package/knowledge/skills/testing-expert.md +99 -0
  217. package/knowledge/skills/theme-factory.md +72 -0
  218. package/knowledge/skills/tiktok-research.md +208 -0
  219. package/knowledge/skills/typescript-lsp.md +36 -0
  220. package/knowledge/skills/ui-ux-pro-max.md +247 -0
  221. package/knowledge/skills/verify.md +15 -0
  222. package/knowledge/skills/visual-prompt-engineer.md +102 -0
  223. package/knowledge/skills/webapp-testing.md +111 -0
  224. package/knowledge/skills/wide-research.md +191 -0
  225. package/knowledge/system.md +93 -0
  226. package/knowledge/task-router.md +37 -0
  227. package/knowledge/verification.md +38 -0
  228. package/knowledge/workflows/3d-viz.md +47 -0
  229. package/knowledge/workflows/data-pipeline.md +47 -0
  230. package/knowledge/workflows/db-migration.md +51 -0
  231. package/knowledge/workflows/feature-dev.md +41 -0
  232. package/knowledge/workflows/tdd-flow.md +52 -0
  233. package/knowledge/workflows/ui-verify.md +51 -0
  234. package/package.json +60 -0
@@ -0,0 +1,394 @@
1
+ ---
2
+ id: "launch-strategy"
3
+ title: "Launch Strategy"
4
+ category: "marketing"
5
+ tags: ["launch strategy", "core philosophy", "the orb framework", "five-phase launch approach", "product hunt launch strategy", "post-launch product marketing", "ongoing launch strategy", "launch checklist", "questions to ask", "related skills"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/launch-strategy"
9
+ ---
10
+
11
+ ---
12
+ name: launch-strategy
13
+ 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,' or 'product update.' This skill covers phased launches, channel strategy, and ongoing launch momentum."
14
+ ---
15
+
16
+ # Launch Strategy
17
+
18
+ You are an expert in SaaS product launches and feature announcements. Your goal is to help users plan launches that build momentum, capture attention, and convert interest into users.
19
+
20
+ ## Core Philosophy
21
+
22
+ The best companies don't just launch once—they launch again and again. Every new feature, improvement, and update is an opportunity to capture attention and engage your audience.
23
+
24
+ A strong launch isn't about a single moment. It's about:
25
+
26
+ - Getting your product into users' hands early
27
+ - Learning from real feedback
28
+ - Making a splash at every stage
29
+ - Building momentum that compounds over time
30
+
31
+ ---
32
+
33
+ ## The ORB Framework
34
+
35
+ Structure your launch marketing across three channel types. Everything should ultimately lead back to owned channels.
36
+
37
+ ### Owned Channels
38
+
39
+ You own the channel (though not the audience). Direct access without algorithms or platform rules.
40
+
41
+ **Examples:**
42
+
43
+ - Email list
44
+ - Blog
45
+ - Podcast
46
+ - Branded community (Slack, Discord)
47
+ - Website/product
48
+
49
+ **Why they matter:**
50
+
51
+ - Get more effective over time
52
+ - No algorithm changes or pay-to-play
53
+ - Direct relationship with audience
54
+ - Compound value from content
55
+
56
+ **Start with 1-2 based on audience:**
57
+
58
+ - Industry lacks quality content → Start a blog
59
+ - People want direct updates → Focus on email
60
+ - Engagement matters → Build a community
61
+
62
+ **Example - Superhuman:**
63
+ Built demand through an invite-only waitlist and one-on-one onboarding sessions. Every new user got a 30-minute live demo. This created exclusivity, FOMO, and word-of-mouth—all through owned relationships. Years later, their original onboarding materials still drive engagement.
64
+
65
+ ### Rented Channels
66
+
67
+ Platforms that provide visibility but you don't control. Algorithms shift, rules change, pay-to-play increases.
68
+
69
+ **Examples:**
70
+
71
+ - Social media (Twitter/X, LinkedIn, Instagram)
72
+ - App stores and marketplaces
73
+ - YouTube
74
+ - Reddit
75
+
76
+ **How to use correctly:**
77
+
78
+ - Pick 1-2 platforms where your audience is active
79
+ - Use them to drive traffic to owned channels
80
+ - Don't rely on them as your only strategy
81
+
82
+ **Example - Notion:**
83
+ Hacked virality through Twitter, YouTube, and Reddit where productivity enthusiasts were active. Encouraged community to share templates and workflows. But they funneled all visibility into owned assets—every viral post led to signups, then targeted email onboarding.
84
+
85
+ **Platform-specific tactics:**
86
+
87
+ - Twitter/X: Threads that spark conversation → link to newsletter
88
+ - LinkedIn: High-value posts → lead to gated content or email signup
89
+ - Marketplaces (Shopify, Slack): Optimize listing → drive to site for more
90
+
91
+ Rented channels give speed, not stability. Capture momentum by bringing users into your owned ecosystem.
92
+
93
+ ### Borrowed Channels
94
+
95
+ Tap into someone else's audience to shortcut the hardest part—getting noticed.
96
+
97
+ **Examples:**
98
+
99
+ - Guest content (blog posts, podcast interviews, newsletter features)
100
+ - Collaborations (webinars, co-marketing, social takeovers)
101
+ - Speaking engagements (conferences, panels, virtual summits)
102
+ - Influencer partnerships
103
+
104
+ **Be proactive, not passive:**
105
+
106
+ 1. List industry leaders your audience follows
107
+ 2. Pitch win-win collaborations
108
+ 3. Use tools like SparkToro or Listen Notes to find audience overlap
109
+ 4. Set up affiliate/referral incentives
110
+
111
+ **Example - TRMNL:**
112
+ Sent a free e-ink display to YouTuber Snazzy Labs—not a paid sponsorship, just hoping he'd like it. He created an in-depth review that racked up 500K+ views and drove $500K+ in sales. They also set up an affiliate program for ongoing promotion.
113
+
114
+ Borrowed channels give instant credibility, but only work if you convert borrowed attention into owned relationships.
115
+
116
+ ---
117
+
118
+ ## Five-Phase Launch Approach
119
+
120
+ Launching isn't a one-day event. It's a phased process that builds momentum.
121
+
122
+ ### Phase 1: Internal Launch
123
+
124
+ Gather initial feedback and iron out major issues before going public.
125
+
126
+ **Actions:**
127
+
128
+ - Recruit early users one-on-one to test for free
129
+ - Collect feedback on usability gaps and missing features
130
+ - Ensure prototype is functional enough to demo (doesn't need to be production-ready)
131
+
132
+ **Goal:** Validate core functionality with friendly users.
133
+
134
+ ### Phase 2: Alpha Launch
135
+
136
+ Put the product in front of external users in a controlled way.
137
+
138
+ **Actions:**
139
+
140
+ - Create landing page with early access signup form
141
+ - Announce the product exists
142
+ - Invite users individually to start testing
143
+ - MVP should be working in production (even if still evolving)
144
+
145
+ **Goal:** First external validation and initial waitlist building.
146
+
147
+ ### Phase 3: Beta Launch
148
+
149
+ Scale up early access while generating external buzz.
150
+
151
+ **Actions:**
152
+
153
+ - Work through early access list (some free, some paid)
154
+ - Start marketing with teasers about problems you solve
155
+ - Recruit friends, investors, and influencers to test and share
156
+
157
+ **Consider adding:**
158
+
159
+ - Coming soon landing page or waitlist
160
+ - "Beta" sticker in dashboard navigation
161
+ - Email invites to early access list
162
+ - Early access toggle in settings for experimental features
163
+
164
+ **Goal:** Build buzz and refine product with broader feedback.
165
+
166
+ ### Phase 4: Early Access Launch
167
+
168
+ Shift from small-scale testing to controlled expansion.
169
+
170
+ **Actions:**
171
+
172
+ - Leak product details: screenshots, feature GIFs, demos
173
+ - Gather quantitative usage data and qualitative feedback
174
+ - Run user research with engaged users (incentivize with credits)
175
+ - Optionally run product/market fit survey to refine messaging
176
+
177
+ **Expansion options:**
178
+
179
+ - Option A: Throttle invites in batches (5-10% at a time)
180
+ - Option B: Invite all users at once under "early access" framing
181
+
182
+ **Goal:** Validate at scale and prepare for full launch.
183
+
184
+ ### Phase 5: Full Launch
185
+
186
+ Open the floodgates.
187
+
188
+ **Actions:**
189
+
190
+ - Open self-serve signups
191
+ - Start charging (if not already)
192
+ - Announce general availability across all channels
193
+
194
+ **Launch touchpoints:**
195
+
196
+ - Customer emails
197
+ - In-app popups and product tours
198
+ - Website banner linking to launch assets
199
+ - "New" sticker in dashboard navigation
200
+ - Blog post announcement
201
+ - Social posts across platforms
202
+ - Product Hunt, BetaList, Hacker News, etc.
203
+
204
+ **Goal:** Maximum visibility and conversion to paying users.
205
+
206
+ ---
207
+
208
+ ## Product Hunt Launch Strategy
209
+
210
+ Product Hunt can be powerful for reaching early adopters, but it's not magic—it requires preparation.
211
+
212
+ ### Pros
213
+
214
+ - Exposure to tech-savvy early adopter audience
215
+ - Credibility bump (especially if Product of the Day)
216
+ - Potential PR coverage and backlinks
217
+
218
+ ### Cons
219
+
220
+ - Very competitive to rank well
221
+ - Short-lived traffic spikes
222
+ - Requires significant pre-launch planning
223
+
224
+ ### How to Launch Successfully
225
+
226
+ **Before launch day:**
227
+
228
+ 1. Build relationships with influential supporters, content hubs, and communities
229
+ 2. Optimize your listing: compelling tagline, polished visuals, short demo video
230
+ 3. Study successful launches to identify what worked
231
+ 4. Engage in relevant communities—provide value before pitching
232
+ 5. Prepare your team for all-day engagement
233
+
234
+ **On launch day:**
235
+
236
+ 1. Treat it as an all-day event
237
+ 2. Respond to every comment in real-time
238
+ 3. Answer questions and spark discussions
239
+ 4. Encourage your existing audience to engage
240
+ 5. Direct traffic back to your site to capture signups
241
+
242
+ **After launch day:**
243
+
244
+ 1. Follow up with everyone who engaged
245
+ 2. Convert Product Hunt traffic into owned relationships (email signups)
246
+ 3. Continue momentum with post-launch content
247
+
248
+ ### Case Studies
249
+
250
+ **SavvyCal** (Scheduling tool):
251
+
252
+ - Optimized landing page and onboarding before launch
253
+ - Built relationships with productivity/SaaS influencers in advance
254
+ - Responded to every comment on launch day
255
+ - Result: #2 Product of the Month
256
+
257
+ **Reform** (Form builder):
258
+
259
+ - Studied successful launches and applied insights
260
+ - Crafted clear tagline, polished visuals, demo video
261
+ - Engaged in communities before launch (provided value first)
262
+ - Treated launch as all-day engagement event
263
+ - Directed traffic to capture signups
264
+ - Result: #1 Product of the Day
265
+
266
+ ---
267
+
268
+ ## Post-Launch Product Marketing
269
+
270
+ Your launch isn't over when the announcement goes live. Now comes adoption and retention work.
271
+
272
+ ### Immediate Post-Launch Actions
273
+
274
+ **Educate new users:**
275
+ Set up automated onboarding email sequence introducing key features and use cases.
276
+
277
+ **Reinforce the launch:**
278
+ Include announcement in your weekly/biweekly/monthly roundup email to catch people who missed it.
279
+
280
+ **Differentiate against competitors:**
281
+ Publish comparison pages highlighting why you're the obvious choice.
282
+
283
+ **Update web pages:**
284
+ Add dedicated sections about the new feature/product across your site.
285
+
286
+ **Offer hands-on preview:**
287
+ Create no-code interactive demo (using tools like Navattic) so visitors can explore before signing up.
288
+
289
+ ### Keep Momentum Going
290
+
291
+ It's easier to build on existing momentum than start from scratch. Every touchpoint reinforces the launch.
292
+
293
+ ---
294
+
295
+ ## Ongoing Launch Strategy
296
+
297
+ Don't rely on a single launch event. Regular updates and feature rollouts sustain engagement.
298
+
299
+ ### How to Prioritize What to Announce
300
+
301
+ Use this matrix to decide how much marketing each update deserves:
302
+
303
+ **Major updates** (new features, product overhauls):
304
+
305
+ - Full campaign across multiple channels
306
+ - Blog post, email campaign, in-app messages, social media
307
+ - Maximize exposure
308
+
309
+ **Medium updates** (new integrations, UI enhancements):
310
+
311
+ - Targeted announcement
312
+ - Email to relevant segments, in-app banner
313
+ - Don't need full fanfare
314
+
315
+ **Minor updates** (bug fixes, small tweaks):
316
+
317
+ - Changelog and release notes
318
+ - Signal that product is improving
319
+ - Don't dominate marketing
320
+
321
+ ### Announcement Tactics
322
+
323
+ **Space out releases:**
324
+ Instead of shipping everything at once, stagger announcements to maintain momentum.
325
+
326
+ **Reuse high-performing tactics:**
327
+ If a previous announcement resonated, apply those insights to future updates.
328
+
329
+ **Keep engaging:**
330
+ Continue using email, social, and in-app messaging to highlight improvements.
331
+
332
+ **Signal active development:**
333
+ Even small changelog updates remind customers your product is evolving. This builds retention and word-of-mouth—customers feel confident you'll be around.
334
+
335
+ ---
336
+
337
+ ## Launch Checklist
338
+
339
+ ### Pre-Launch
340
+
341
+ - [ ] Landing page with clear value proposition
342
+ - [ ] Email capture / waitlist signup
343
+ - [ ] Early access list built
344
+ - [ ] Owned channels established (email, blog, community)
345
+ - [ ] Rented channel presence (social profiles optimized)
346
+ - [ ] Borrowed channel opportunities identified (podcasts, influencers)
347
+ - [ ] Product Hunt listing prepared (if using)
348
+ - [ ] Launch assets created (screenshots, demo video, GIFs)
349
+ - [ ] Onboarding flow ready
350
+ - [ ] Analytics/tracking in place
351
+
352
+ ### Launch Day
353
+
354
+ - [ ] Announcement email to list
355
+ - [ ] Blog post published
356
+ - [ ] Social posts scheduled and posted
357
+ - [ ] Product Hunt listing live (if using)
358
+ - [ ] In-app announcement for existing users
359
+ - [ ] Website banner/notification active
360
+ - [ ] Team ready to engage and respond
361
+ - [ ] Monitor for issues and feedback
362
+
363
+ ### Post-Launch
364
+
365
+ - [ ] Onboarding email sequence active
366
+ - [ ] Follow-up with engaged prospects
367
+ - [ ] Roundup email includes announcement
368
+ - [ ] Comparison pages published
369
+ - [ ] Interactive demo created
370
+ - [ ] Gather and act on feedback
371
+ - [ ] Plan next launch moment
372
+
373
+ ---
374
+
375
+ ## Questions to Ask
376
+
377
+ If you need more context:
378
+
379
+ 1. What are you launching? (New product, major feature, minor update)
380
+ 2. What's your current audience size and engagement?
381
+ 3. What owned channels do you have? (Email list size, blog traffic, community)
382
+ 4. What's your timeline for launch?
383
+ 5. Have you launched before? What worked/didn't work?
384
+ 6. Are you considering Product Hunt? What's your preparation status?
385
+
386
+ ---
387
+
388
+ ## Related Skills
389
+
390
+ - **marketing-ideas**: For additional launch tactics (#22 Product Hunt, #23 Early Access Referrals)
391
+ - **email-sequence**: For launch and onboarding email sequences
392
+ - **page-cro**: For optimizing launch landing pages
393
+ - **marketing-psychology**: For psychology behind waitlists and exclusivity
394
+ - **programmatic-seo**: For comparison pages mentioned in post-launch