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,681 @@
1
+ ---
2
+ id: "orchestrator"
3
+ title: "Marketing Orchestrator"
4
+ category: "marketing"
5
+ tags: ["marketing orchestrator", "when to use this skill", "the skill registry", "routing logic", "pre-built workflows", "state tracking", "marketing assets status", "handoff protocol", "orchestrator handoff", "quick routing reference"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/orchestrator"
9
+ ---
10
+
11
+ ---
12
+ name: orchestrator
13
+ description: "The marketing strategist that routes you to the right skill(s). Use this when someone doesn't know where to start, has a vague marketing request, or needs a multi-step workflow. Asks qualifying questions, diagnoses the situation, and recommends a skill sequence. Triggers on: help me with marketing, where do I start, I need to, what should I do first, vague marketing requests. Outputs a recommended skill sequence with context for each step."
14
+ ---
15
+
16
+ # Marketing Orchestrator
17
+
18
+ Most people don't fail at marketing because they can't execute. They fail because they don't know what to execute, in what order, with what inputs.
19
+
20
+ This skill is the strategist layer. It asks the right questions, diagnoses your situation, and routes you to the right skill(s) in the right sequence.
21
+
22
+ **Think of it as:** A fractional CMO in a box. Figures out what you actually need before diving into tactics.
23
+
24
+ ---
25
+
26
+ ## When to Use This Skill
27
+
28
+ Use the orchestrator when:
29
+
30
+ - You don't know where to start
31
+ - You have a vague goal ("I need more leads")
32
+ - You're not sure which skill applies
33
+ - You need a multi-step marketing workflow
34
+ - You want to audit what's missing
35
+
36
+ Skip the orchestrator when:
37
+
38
+ - You have a specific task ("write a landing page")
39
+ - You know exactly what skill you need
40
+ - You're continuing work from a previous skill
41
+
42
+ ---
43
+
44
+ ## The Skill Registry
45
+
46
+ ### Available Skills
47
+
48
+ | Skill | What It Does | Inputs Needed | Outputs |
49
+ | ------------------------ | ------------------------------- | -------------------------------------- | ------------------------------------ |
50
+ | **brand-voice** | Defines how you sound | Content samples OR strategic answers | Voice profile document |
51
+ | **keyword-research** | Finds what to write about | Business context, audience, goals | Prioritized keyword clusters |
52
+ | **positioning-angles** | Finds your differentiated angle | Product/service, audience, competitors | Positioning options with hooks |
53
+ | **lead-magnet** | Creates opt-in offer concepts | Audience, pain points, your expertise | Lead magnet concepts with hooks |
54
+ | **seo-content** | Writes content that ranks | Target keyword, cluster, intent | Publication-ready article |
55
+ | **direct-response-copy** | Writes conversion copy | Offer, audience, voice profile | Landing page / email / ad copy |
56
+ | **newsletter** | Creates newsletter editions | Content, format type, voice | Publication-ready newsletter |
57
+ | **email-sequences** | Builds sequences that convert | Lead magnet, offer, voice profile | Welcome/nurture/conversion sequences |
58
+ | **content-atomizer** | Turns 1 piece into many | Blog post, newsletter, or video | Platform-native social assets |
59
+
60
+ ### Skill Dependencies
61
+
62
+ ```
63
+ FOUNDATION LAYER (do these first if missing)
64
+ ├── brand-voice (how you sound)
65
+ └── positioning-angles (how you're different)
66
+
67
+ STRATEGY LAYER (builds on foundation)
68
+ ├── keyword-research (what to write about)
69
+ └── lead-magnet (what to give away)
70
+
71
+ EXECUTION LAYER (requires strategy inputs)
72
+ ├── seo-content (needs keywords)
73
+ ├── direct-response-copy (needs positioning, voice)
74
+ ├── newsletter (needs voice, content)
75
+ └── email-sequences (needs lead-magnet, positioning, voice)
76
+
77
+ DISTRIBUTION LAYER (transforms execution outputs)
78
+ └── content-atomizer (needs content to atomize)
79
+ ```
80
+
81
+ ---
82
+
83
+ ## Intake: The Qualifying Questions
84
+
85
+ Ask these to diagnose the situation:
86
+
87
+ ### Question 1: What's your goal?
88
+
89
+ ```
90
+ A) Get more traffic / be found online
91
+ B) Generate leads / build email list
92
+ C) Convert leads to customers
93
+ D) Build authority / thought leadership
94
+ E) Launch something new
95
+ F) Not sure / all of the above
96
+ ```
97
+
98
+ **Routing:**
99
+
100
+ - A → keyword-research → seo-content → content-atomizer
101
+ - B → lead-magnet → direct-response-copy → email-sequences
102
+ - C → positioning-angles → direct-response-copy → email-sequences
103
+ - D → brand-voice → newsletter OR seo-content
104
+ - E → Full launch sequence
105
+ - F → Continue to Question 2
106
+
107
+ ### Question 2: What do you already have?
108
+
109
+ ```
110
+ [ ] Defined brand voice / how I sound
111
+ [ ] Clear positioning / what makes me different
112
+ [ ] Keyword strategy / know what to write about
113
+ [ ] Lead magnet / opt-in offer
114
+ [ ] Landing page(s)
115
+ [ ] Email list
116
+ [ ] Email sequences (welcome, nurture, conversion)
117
+ [ ] Content / blog
118
+ [ ] Newsletter
119
+ ```
120
+
121
+ **Routing:** Fill gaps in order of dependencies
122
+
123
+ ### Question 3: What's the immediate need?
124
+
125
+ ```
126
+ A) I need to write something specific
127
+ B) I need to plan / strategize
128
+ C) I need to figure out my messaging
129
+ D) I need to understand my audience better
130
+ E) I need a complete marketing system
131
+ ```
132
+
133
+ **Routing:**
134
+
135
+ - A → Identify what type, route to execution skill
136
+ - B → keyword-research OR positioning-angles
137
+ - C → brand-voice → positioning-angles
138
+ - D → positioning-angles (uncovers audience through differentiation)
139
+ - E → Full sequence starting from gaps
140
+
141
+ ### Question 4: What's your timeline?
142
+
143
+ ```
144
+ A) I need something today
145
+ B) This week
146
+ C) Building for the long term
147
+ ```
148
+
149
+ **Routing:**
150
+
151
+ - A → Single highest-impact skill
152
+ - B → 2-3 skill sequence
153
+ - C → Full system build
154
+
155
+ ---
156
+
157
+ ## Routing Logic
158
+
159
+ ### Decision Tree
160
+
161
+ ```
162
+ START
163
+
164
+
165
+ ┌─────────────────────────────┐
166
+ │ Do you have a brand voice │
167
+ │ defined? │
168
+ └─────────────┬───────────────┘
169
+
170
+ ┌───────┴───────┐
171
+ ▼ ▼
172
+ YES NO
173
+ │ │
174
+ │ ▼
175
+ │ ┌─────────────┐
176
+ │ │ START WITH │
177
+ │ │ brand-voice │
178
+ │ └─────────────┘
179
+
180
+
181
+ ┌─────────────────────────────┐
182
+ │ Do you know what makes you │
183
+ │ different from competitors? │
184
+ └─────────────┬───────────────┘
185
+
186
+ ┌───────┴───────┐
187
+ ▼ ▼
188
+ YES NO
189
+ │ │
190
+ │ ▼
191
+ │ ┌──────────────────┐
192
+ │ │ RUN positioning- │
193
+ │ │ angles │
194
+ │ └──────────────────┘
195
+
196
+
197
+ ┌─────────────────────────────┐
198
+ │ What's your primary goal? │
199
+ └─────────────┬───────────────┘
200
+
201
+ ┌─────────┼─────────┐
202
+ ▼ ▼ ▼
203
+ TRAFFIC LEADS CONVERT
204
+ │ │ │
205
+ ▼ ▼ ▼
206
+ keyword- lead- direct-
207
+ research magnet response
208
+ │ │ │
209
+ ▼ ▼ ▼
210
+ seo- direct- [optimize
211
+ content response existing]
212
+ ```
213
+
214
+ ---
215
+
216
+ ## Pre-Built Workflows
217
+
218
+ ### Workflow 1: "I'm Starting From Zero"
219
+
220
+ **Situation:** New business, no marketing assets, need everything.
221
+
222
+ **Sequence:**
223
+
224
+ ```
225
+ 1. brand-voice
226
+ └── Output: Voice profile
227
+
228
+ 2. positioning-angles
229
+ └── Output: Differentiated positioning
230
+ └── Input: Uses voice profile
231
+
232
+ 3. keyword-research
233
+ └── Output: Prioritized content plan
234
+ └── Input: Business context from positioning
235
+
236
+ 4. lead-magnet
237
+ └── Output: Lead magnet concept
238
+ └── Input: Uses positioning angles
239
+
240
+ 5. direct-response-copy
241
+ └── Output: Landing page copy
242
+ └── Input: Voice profile + positioning + lead magnet
243
+
244
+ 6. newsletter (format setup)
245
+ └── Output: Newsletter template + first edition
246
+ └── Input: Voice profile + content from above
247
+ ```
248
+
249
+ **Timeline:** 2-4 weeks if doing properly
250
+
251
+ ---
252
+
253
+ ### Workflow 2: "I Need Leads"
254
+
255
+ **Situation:** Have a product/service, need to build email list and convert subscribers.
256
+
257
+ **Sequence:**
258
+
259
+ ```
260
+ 1. positioning-angles (if not clear)
261
+ └── Find differentiated hook
262
+
263
+ 2. lead-magnet
264
+ └── Create compelling opt-in offer
265
+
266
+ 3. direct-response-copy
267
+ └── Write landing page for lead magnet
268
+
269
+ 4. email-sequences
270
+ └── Build welcome sequence that converts to paid
271
+ └── Input: Lead magnet, positioning, voice
272
+ ```
273
+
274
+ **Timeline:** 1-2 weeks
275
+
276
+ ---
277
+
278
+ ### Workflow 3: "I Need Content Strategy"
279
+
280
+ **Situation:** Want to build organic traffic, don't know what to write.
281
+
282
+ **Sequence:**
283
+
284
+ ```
285
+ 1. brand-voice (if not defined)
286
+ └── Define how content should sound
287
+
288
+ 2. keyword-research
289
+ └── Identify priority topics and clusters
290
+
291
+ 3. seo-content (repeat for each priority)
292
+ └── Create optimized content pieces
293
+ ```
294
+
295
+ **Timeline:** Ongoing (keyword research = 1 week, then continuous content)
296
+
297
+ ---
298
+
299
+ ### Workflow 4: "I'm Launching Something"
300
+
301
+ **Situation:** New product/offer, need launch materials.
302
+
303
+ **Sequence:**
304
+
305
+ ```
306
+ 1. positioning-angles
307
+ └── Find the launch angle
308
+
309
+ 2. lead-magnet (if building waitlist)
310
+ └── Create early access incentive
311
+
312
+ 3. direct-response-copy
313
+ └── Landing page
314
+ └── Ad copy
315
+
316
+ 4. email-sequences
317
+ └── Launch sequence (6-10 emails)
318
+ └── Cart open → urgency → close
319
+
320
+ 5. newsletter
321
+ └── Launch announcement edition
322
+ ```
323
+
324
+ **Timeline:** 2-3 weeks
325
+
326
+ ---
327
+
328
+ ### Workflow 5: "I Want to Start a Newsletter"
329
+
330
+ **Situation:** Want to build audience through email.
331
+
332
+ **Sequence:**
333
+
334
+ ```
335
+ 1. brand-voice
336
+ └── Define newsletter voice
337
+
338
+ 2. positioning-angles
339
+ └── Find unique angle for newsletter
340
+
341
+ 3. newsletter
342
+ └── Choose format
343
+ └── Create template
344
+ └── Write first 3 editions
345
+ ```
346
+
347
+ **Timeline:** 1-2 weeks
348
+
349
+ ---
350
+
351
+ ### Workflow 6: "My Marketing Isn't Working"
352
+
353
+ **Situation:** Have marketing, but it's not converting.
354
+
355
+ **Diagnostic Sequence:**
356
+
357
+ ```
358
+ 1. Audit current positioning
359
+ └── Run positioning-angles to find gaps
360
+
361
+ 2. Audit current copy
362
+ └── Compare to direct-response-copy principles
363
+
364
+ 3. Audit current content
365
+ └── Compare to seo-content quality checklist
366
+
367
+ 4. Identify weakest link
368
+ └── Re-run relevant skill with fresh approach
369
+ ```
370
+
371
+ ---
372
+
373
+ ## State Tracking
374
+
375
+ After each skill runs, record:
376
+
377
+ ```
378
+ ## Marketing Assets Status
379
+
380
+ ### Foundation
381
+ - [ ] Brand voice profile: [exists/missing]
382
+ - [ ] Positioning/differentiation: [exists/missing]
383
+
384
+ ### Strategy
385
+ - [ ] Keyword clusters: [exists/missing]
386
+ - [ ] Lead magnet concept: [exists/missing]
387
+
388
+ ### Execution
389
+ - [ ] Landing page(s): [exists/missing]
390
+ - [ ] Content pieces: [count]
391
+ - [ ] Newsletter setup: [exists/missing]
392
+
393
+ ### What to Build Next
394
+ Based on gaps: [recommendation]
395
+ ```
396
+
397
+ ---
398
+
399
+ ## Handoff Protocol
400
+
401
+ When routing to a skill, provide:
402
+
403
+ ### Context Block
404
+
405
+ ```
406
+ ## Orchestrator Handoff
407
+
408
+ **Goal:** [User's stated goal]
409
+ **Current state:** [What exists]
410
+ **This skill's job:** [Specific outcome needed]
411
+
412
+ **Inputs available:**
413
+ - Brand voice: [yes/no, link if yes]
414
+ - Positioning: [yes/no, summary if yes]
415
+ - Keywords: [yes/no, priority cluster if yes]
416
+
417
+ **After this skill:** [What comes next in sequence]
418
+ ```
419
+
420
+ ### Example Handoff to lead-magnet
421
+
422
+ ```
423
+ ## Orchestrator Handoff
424
+
425
+ **Goal:** Generate leads for AI marketing consulting
426
+ **Current state:** Has brand voice, has positioning ("boring" systems-focused approach)
427
+ **This skill's job:** Create 3-5 lead magnet concepts that align with positioning
428
+
429
+ **Inputs available:**
430
+ - Brand voice: Yes (contrarian, systems-focused, anti-hype)
431
+ - Positioning: Yes ("While everyone chases hacks, build systems that compound")
432
+ - Keywords: No (not yet researched)
433
+
434
+ **After this skill:** Route to direct-response-copy for landing page
435
+ ```
436
+
437
+ ---
438
+
439
+ ## Quick Routing Reference
440
+
441
+ ### By Goal
442
+
443
+ | Goal | First Skill | Then | Then | Then |
444
+ | --------------------- | ------------------ | ------------------------- | ---------------- | ---------- |
445
+ | Get traffic | keyword-research | seo-content | content-atomizer | — |
446
+ | Get leads | lead-magnet | direct-response-copy | email-sequences | — |
447
+ | Launch product | positioning-angles | direct-response-copy | email-sequences | newsletter |
448
+ | Build authority | brand-voice | seo-content OR newsletter | content-atomizer | — |
449
+ | Start newsletter | brand-voice | newsletter | — | — |
450
+ | Fix messaging | positioning-angles | direct-response-copy | — | — |
451
+ | Convert subscribers | email-sequences | — | — | — |
452
+ | Maximize distribution | content-atomizer | — | — | — |
453
+
454
+ ### By What's Missing
455
+
456
+ | Missing | Run This |
457
+ | ---------------------------------- | -------------------- |
458
+ | Don't know how to sound | brand-voice |
459
+ | Don't know what makes me different | positioning-angles |
460
+ | Don't know what to write about | keyword-research |
461
+ | Don't have an opt-in offer | lead-magnet |
462
+ | Don't have landing pages | direct-response-copy |
463
+ | Don't have content | seo-content |
464
+ | Don't have email editions | newsletter |
465
+ | Don't have email sequences | email-sequences |
466
+ | Don't have social distribution | content-atomizer |
467
+
468
+ ---
469
+
470
+ ## The Orchestrator Conversation
471
+
472
+ ### Opening
473
+
474
+ "Before we dive into tactics, let me understand your situation.
475
+
476
+ **What's your primary goal right now?**
477
+
478
+ 1. Get found online (SEO, content)
479
+ 2. Build my email list (leads)
480
+ 3. Convert more visitors to customers
481
+ 4. Build authority in my space
482
+ 5. Launch something new
483
+ 6. I'm not sure / need help figuring it out"
484
+
485
+ ### Follow-Up Based on Answer
486
+
487
+ **If unclear:** "What do you already have in place? (brand voice, positioning, content, landing pages, email list)"
488
+
489
+ **If goal is clear:** "Do you have [prerequisite for that goal] defined? If not, we should start there."
490
+
491
+ ### Recommendation Format
492
+
493
+ "Based on what you've told me, here's what I recommend:
494
+
495
+ **Immediate:** [Skill 1] — [Why this first]
496
+
497
+ **Then:** [Skill 2] — [What this builds on]
498
+
499
+ **After that:** [Skill 3] — [End result]
500
+
501
+ Want to start with [Skill 1]? I'll need [inputs required]."
502
+
503
+ ---
504
+
505
+ ## The Context Paradox (Critical)
506
+
507
+ **More input doesn't always mean better output.**
508
+
509
+ This is counterintuitive but essential: sometimes running a skill with LESS context produces better results than running it with everything from previous skills.
510
+
511
+ ### Why This Happens
512
+
513
+ **1. Information Overload**
514
+ When Claude has too much context, it tries to incorporate everything. The output becomes:
515
+
516
+ - Hedged and committee-sounding
517
+ - Overly comprehensive (loses punch)
518
+ - Trying to please all inputs (pleases none)
519
+
520
+ **2. Conflicting Signals**
521
+ Different skills optimize for different things:
522
+
523
+ - Audience intel is broad and inclusive
524
+ - Direct response copy needs narrow focus and conviction
525
+ - Feeding broad intel into narrow copy = diluted output
526
+
527
+ **3. Loss of Boldness**
528
+ Great copy has conviction. Too much research creates:
529
+
530
+ - "On one hand... on the other hand..."
531
+ - Qualifiers and hedges
532
+ - Safe, forgettable messaging
533
+
534
+ ### The Rule: Selective Context Passing
535
+
536
+ Not all information should flow between skills. Use this framework:
537
+
538
+ ```
539
+ FULL CONTEXT (pass everything)
540
+ ├── brand-voice → ALL other skills (voice should be consistent)
541
+ ├── positioning-angles → direct-response-copy (need the angle)
542
+ └── keyword-research → seo-content (need the targets)
543
+
544
+ LIGHT CONTEXT (pass summary only)
545
+ ├── positioning-angles → lead-magnet (angle + pain points only)
546
+ ├── keyword-research → direct-response-copy (main keyword only)
547
+ └── lead-magnet → newsletter (concept only, not full breakdown)
548
+
549
+ FRESH START (don't pass, run clean)
550
+ ├── When previous output feels off
551
+ ├── When you want a different angle
552
+ ├── When output is getting worse, not better
553
+ └── When you need bold, not comprehensive
554
+ ```
555
+
556
+ ### Context Tiers
557
+
558
+ **Tier 1: Essential (always pass)**
559
+
560
+ - Brand voice profile
561
+ - Core positioning angle (1-2 sentences)
562
+ - Primary keyword/topic
563
+
564
+ **Tier 2: Helpful (pass if relevant)**
565
+
566
+ - Audience pain points (bullet list, not essay)
567
+ - Competitor gaps (summary)
568
+ - Specific constraints
569
+
570
+ **Tier 3: Optional (often skip)**
571
+
572
+ - Full research documents
573
+ - Complete audience profiles
574
+ - Exhaustive competitor analysis
575
+
576
+ ### When to Run Fresh
577
+
578
+ Run execution skills (direct-response-copy, seo-content) **without** full context when:
579
+
580
+ - Output from chained skills feels generic or hedged
581
+ - You want bold, opinionated copy
582
+ - Previous skill output was mediocre (don't compound the problem)
583
+ - You're testing a different angle
584
+ - The copy needs to feel human, not researched-to-death
585
+
586
+ **Fresh start prompt:**
587
+
588
+ > "Write landing page copy for [offer]. Target audience: [one sentence]. Angle: [one sentence]. Ignore everything else. Be bold."
589
+
590
+ ### The Quality Gate
591
+
592
+ Before passing output to next skill, ask:
593
+
594
+ 1. **Is this output actually good?** If mediocre, don't pass it—garbage in, garbage out
595
+ 2. **Does the next skill need ALL of this?** Usually no—extract the essence
596
+ 3. **Will more context help or hurt?** For strategy skills: help. For execution skills: often hurt
597
+ 4. **Would a human strategist share all this?** A good CMO filters, doesn't dump
598
+
599
+ ### Practical Application
600
+
601
+ **Bad workflow:**
602
+
603
+ ```
604
+ positioning-angles (full document)
605
+ → feed all 5 angles into lead-magnet
606
+ → feed everything into direct-response-copy
607
+ → output is bloated, unfocused, tries to address everything
608
+ ```
609
+
610
+ **Good workflow:**
611
+
612
+ ```
613
+ positioning-angles (full document)
614
+ → extract: winning angle + top 3 pain points
615
+ → lead-magnet uses only: one angle + pain points
616
+ → direct-response-copy uses only: one positioning angle + one pain point
617
+ → output is focused, punchy, has conviction
618
+ ```
619
+
620
+ ### The Compression Principle
621
+
622
+ When passing between skills, compress:
623
+
624
+ | From | Pass This | Not This |
625
+ | ------------------ | ----------------------------- | ---------------- |
626
+ | brand-voice | Voice summary (3 sentences) | Full profile |
627
+ | positioning-angles | Winning angle (1-2 sentences) | All 5 options |
628
+ | keyword-research | Priority cluster + 5 keywords | Full spreadsheet |
629
+ | lead-magnet | Hook + format | Full concept doc |
630
+ | seo-content | Key insights (bullets) | Full article |
631
+
632
+ ### Knowing When You've Over-Contexted
633
+
634
+ Signs the output is suffering from too much context:
635
+
636
+ - Sentences have multiple qualifiers
637
+ - Copy tries to address multiple audiences
638
+ - Headlines are long and compound
639
+ - CTAs have multiple value propositions
640
+ - Reads like a committee wrote it
641
+ - Lost the "one person talking to one person" feel
642
+
643
+ **Fix:** Strip context back to essentials, run again.
644
+
645
+ ---
646
+
647
+ ## Anti-Patterns to Avoid
648
+
649
+ ### Don't:
650
+
651
+ - Jump to tactics without diagnosis
652
+ - Run execution skills without foundation (voice, positioning)
653
+ - Try to do everything at once
654
+ - Skip the "boring" strategy work
655
+ - Assume one skill solves everything
656
+ - **Feed everything from every skill into the next** (context overload)
657
+ - **Chain skills when output is getting worse** (stop and simplify)
658
+
659
+ ### Do:
660
+
661
+ - Start with qualifying questions
662
+ - Build foundation before execution
663
+ - Sequence skills logically
664
+ - Track what's been created
665
+ - Recommend next steps after each skill
666
+ - **Compress context between skills** (essentials only)
667
+ - **Run fresh when output feels off** (sometimes less is more)
668
+
669
+ ---
670
+
671
+ ## The Test
672
+
673
+ Good orchestration means:
674
+
675
+ 1. **User knows where to start** (not overwhelmed)
676
+ 2. **Skills run in logical order** (dependencies respected)
677
+ 3. **Outputs feed into next skill** (no wasted work)
678
+ 4. **Progress is trackable** (what's done, what's next)
679
+ 5. **End result is coherent** (pieces work together)
680
+
681
+ If the user still feels lost after orchestration, the diagnosis failed.