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,787 @@
1
+ ---
2
+ id: "seo-content"
3
+ title: "SEO Content Workflow"
4
+ category: "marketing"
5
+ tags: ["seo content workflow", "the core job", "required inputs", "the workflow", "target keyword", "search intent", "content type"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/seo-content"
9
+ ---
10
+
11
+ ---
12
+ name: seo-content
13
+ description: 'Create high-quality, SEO-optimized content that ranks AND reads like a human wrote it. Use when turning keyword research into actual content pieces. Takes a target keyword/cluster and produces a complete article optimized for search while avoiding AI-sounding output. Triggers on: write SEO content for X, create article for keyword, write blog post about X, SEO article, content for keyword cluster. Outputs publication-ready content with proper structure, optimization, and human voice.'
14
+ ---
15
+
16
+ # SEO Content Workflow
17
+
18
+ SEO content has a reputation problem. Most of it is garbage — keyword-stuffed, AI-sounding, says nothing new. It ranks for a month, then dies.
19
+
20
+ This skill creates content that ranks AND builds trust. Content that sounds like an expert sharing what they know, not a content mill churning out filler.
21
+
22
+ The goal: Would someone bookmark this? Would they share it? Would they come back?
23
+
24
+ If yes, Google will reward it. If no, no amount of optimization saves it.
25
+
26
+ ---
27
+
28
+ ## The core job
29
+
30
+ Transform a keyword target into **publication-ready content** that:
31
+
32
+ - Answers the search intent completely
33
+ - Sounds like a knowledgeable human wrote it
34
+ - Is structured for both readers and search engines
35
+ - Includes proper on-page optimization
36
+ - Passes the "would I actually read this?" test
37
+
38
+ ---
39
+
40
+ ## Required inputs
41
+
42
+ Before writing, gather:
43
+
44
+ 1. **Target keyword** — Primary keyword to rank for
45
+ 2. **Keyword cluster** — Related keywords to include naturally
46
+ 3. **Search intent** — Informational / Commercial / Transactional
47
+ 4. **Content type** — Pillar guide / How-to / Comparison / Listicle / etc.
48
+ 5. **Brand voice profile** — (from brand-voice skill, if available)
49
+ 6. **Unique angle** — What perspective makes this different?
50
+
51
+ If coming from keyword-research skill, most of this is already defined.
52
+
53
+ ---
54
+
55
+ ## The workflow
56
+
57
+ ```
58
+ RESEARCH → BRIEF → OUTLINE → DRAFT → HUMANIZE → OPTIMIZE → REVIEW
59
+ ```
60
+
61
+ ---
62
+
63
+ ## Phase 1: Research
64
+
65
+ Before writing a word, understand what you're competing against.
66
+
67
+ ### SERP Analysis
68
+
69
+ Search the target keyword (incognito) and analyze top 5 results:
70
+
71
+ **For each result, note:**
72
+
73
+ - Content type (guide, listicle, tool page, etc.)
74
+ - Approximate word count
75
+ - Structure (headers, sections)
76
+ - Unique angles or data
77
+ - What they do well
78
+ - What they miss or get wrong
79
+ - How recent (publish/update date)
80
+
81
+ **Extract from SERP features:**
82
+
83
+ - People Also Ask questions (answer ALL of these)
84
+ - Featured Snippet format (match it to win it)
85
+ - AI Overview presence (what it includes/excludes)
86
+
87
+ ### Gap Analysis
88
+
89
+ After reviewing competitors, identify:
90
+
91
+ 1. **What's missing?** — Questions unanswered, angles unexplored
92
+ 2. **What's outdated?** — Old information, deprecated methods
93
+ 3. **What's generic?** — Surface-level advice anyone could give
94
+ 4. **What's your edge?** — Unique data, experience, perspective
95
+
96
+ Your content should fill these gaps.
97
+
98
+ ---
99
+
100
+ ## Phase 2: Content Brief
101
+
102
+ Before drafting, create a brief:
103
+
104
+ ```
105
+ # Content Brief: [Title]
106
+
107
+ ## Target Keyword
108
+ Primary: [keyword]
109
+ Secondary: [keyword], [keyword], [keyword]
110
+
111
+ ## Search Intent
112
+ [Informational / Commercial / Transactional]
113
+
114
+ ## Content Type
115
+ [Pillar Guide / How-To / Comparison / Listicle / etc.]
116
+
117
+ ## Target Word Count
118
+ [Based on competitor analysis]
119
+
120
+ ## Audience
121
+ Who is searching this? What do they need?
122
+
123
+ ## Unique Angle
124
+ What makes our take different?
125
+
126
+ ## Key Points to Cover
127
+ - [Point 1]
128
+ - [Point 2]
129
+ - [Point 3]
130
+
131
+ ## Questions to Answer (from PAA)
132
+ - [Question 1]
133
+ - [Question 2]
134
+ - [Question 3]
135
+
136
+ ## Competitor Gaps to Fill
137
+ - [Gap 1]
138
+ - [Gap 2]
139
+
140
+ ## Internal Links
141
+ - Link to: [related content on site]
142
+ - Link from: [existing content that should link here]
143
+
144
+ ## CTA
145
+ What action should readers take?
146
+ ```
147
+
148
+ ---
149
+
150
+ ## Phase 3: Outline
151
+
152
+ Structure the content based on type:
153
+
154
+ ### Pillar Guide Structure (5,000-8,000 words)
155
+
156
+ ```
157
+ 1. Hook Intro (150-250 words)
158
+ - Answer the title question immediately
159
+ - Why this matters NOW
160
+ - Who this is for (and who it's not for)
161
+
162
+ 2. Quick Answer Section (200-300 words)
163
+ - Direct answer for Featured Snippet
164
+ - TL;DR for skimmers
165
+
166
+ 3. Core Sections (3-5 major sections)
167
+ - Each 800-1,500 words
168
+ - Each answers a major sub-question
169
+ - H2 headers with keyword variations
170
+
171
+ 4. Implementation / How to Apply (300-500 words)
172
+ - Specific actionable steps
173
+ - Decision framework if applicable
174
+
175
+ 5. FAQ Section (5-10 questions)
176
+ - From PAA research
177
+ - Schema-ready format
178
+
179
+ 6. Conclusion with CTA (150-200 words)
180
+ - Summarize key takeaway
181
+ - Clear next action
182
+ ```
183
+
184
+ ### How-To Tutorial Structure (2,000-3,000 words)
185
+
186
+ ```
187
+ 1. What You'll Achieve (150-200 words)
188
+ - End result shown first
189
+ - Time estimate
190
+ - Prerequisites
191
+
192
+ 2. Why This Method (200-300 words)
193
+ - Context and alternatives
194
+ - Why this approach works
195
+
196
+ 3. Step-by-Step Instructions (1,200-2,000 words)
197
+ - Numbered steps
198
+ - One action per step
199
+ - Troubleshooting inline
200
+
201
+ 4. Variations / Advanced Tips (300-400 words)
202
+
203
+ 5. Common Mistakes (200-300 words)
204
+
205
+ 6. Next Steps with CTA (100-150 words)
206
+ ```
207
+
208
+ ### Comparison Structure (2,500-4,000 words)
209
+
210
+ ```
211
+ 1. Quick Verdict (200-300 words)
212
+ - Bottom line recommendation
213
+ - "Choose X if... Choose Y if..."
214
+
215
+ 2. Comparison Table
216
+ - 8-12 key differentiators
217
+ - Pricing, best for, key features
218
+
219
+ 3. Deep Dive: Option A (800-1,000 words)
220
+ - What it is
221
+ - Key features
222
+ - Pros/cons
223
+ - Best for
224
+ - Real example
225
+
226
+ 4. Deep Dive: Option B (800-1,000 words)
227
+ - Same structure
228
+
229
+ 5. Head-to-Head Comparison (300-500 words)
230
+ - Specific scenarios
231
+ - When to pick each
232
+
233
+ 6. FAQ (3-5 questions)
234
+
235
+ 7. Final Recommendation with CTA
236
+ ```
237
+
238
+ ### Listicle Structure (2,000-3,000 words)
239
+
240
+ ```
241
+ 1. Intro with Context (150-200 words)
242
+ - Why this list matters
243
+ - How items were selected
244
+
245
+ 2. Quick Summary Table/List
246
+ - All items at a glance
247
+ - For skimmers
248
+
249
+ 3. Individual Items (150-300 words each)
250
+ - What it is
251
+ - Why it's included
252
+ - Best for / Use case
253
+ - Limitations (honesty builds trust)
254
+
255
+ 4. How to Choose (200-300 words)
256
+ - Decision framework
257
+
258
+ 5. FAQ (3-5 questions)
259
+
260
+ 6. Conclusion with CTA
261
+ ```
262
+
263
+ ---
264
+
265
+ ## Phase 4: Draft
266
+
267
+ Write the first draft following these principles:
268
+
269
+ ### The First Paragraph Rule
270
+
271
+ Answer the search query in the first 2-3 sentences. Don't make them scroll.
272
+
273
+ **Bad:**
274
+
275
+ > "In today's rapidly evolving digital landscape, marketers are increasingly turning to artificial intelligence to streamline their workflows and enhance productivity..."
276
+
277
+ **Good:**
278
+
279
+ > "AI marketing tools can automate 60-80% of repetitive marketing tasks. Here are the 10 that actually work, based on testing them across 50+ client accounts."
280
+
281
+ ### The "So What?" Chain
282
+
283
+ For every point you make, ask "so what?" until you hit something the reader actually cares about:
284
+
285
+ > Feature: "Automated email sequences"
286
+ > So what? "Sends follow-ups without you remembering"
287
+ > So what? "You wake up to replies instead of a blank inbox"
288
+ > So what? "Close deals while you sleep"
289
+
290
+ Write from the bottom of the chain, not the top.
291
+
292
+ ### Specificity Over Generality
293
+
294
+ **Weak:** "This tool saves time."
295
+ **Strong:** "This tool cut our email outreach from 4 hours to 15 minutes per day."
296
+
297
+ **Weak:** "Many marketers struggle with content."
298
+ **Strong:** "73% of marketers publish less than once per week. Here's why."
299
+
300
+ Numbers, examples, specifics. Always.
301
+
302
+ ### Show Your Work
303
+
304
+ Don't just make claims. Show how you know:
305
+
306
+ > "After testing 23 AI writing tools over 6 months, three stood out..."
307
+
308
+ > "We analyzed 147 high-ranking articles in this space. The pattern was clear..."
309
+
310
+ > "When I implemented this for [client], the results were..."
311
+
312
+ Experience signals beat assertions.
313
+
314
+ ---
315
+
316
+ ## Phase 5: Humanize
317
+
318
+ AI-generated content has tells. Remove them ruthlessly.
319
+
320
+ The goal isn't "sounds okay." It's "sounds like a specific person wrote this based on real experience."
321
+
322
+ ### The AI Detection Patterns
323
+
324
+ AI content fails in predictable ways. Learn to spot them:
325
+
326
+ **1. Word-Level Tells**
327
+
328
+ Kill these immediately:
329
+
330
+ - delve, dive into, dig into
331
+ - comprehensive, robust, cutting-edge
332
+ - utilize (just say "use")
333
+ - leverage (as a verb)
334
+ - crucial, vital, essential
335
+ - unlock, unleash, supercharge
336
+ - game-changer, revolutionary
337
+ - landscape, navigate, streamline
338
+ - tapestry, multifaceted, myriad
339
+ - foster, facilitate, enhance
340
+ - realm, paradigm, synergy
341
+ - embark, journey (for processes)
342
+ - plethora, myriad, bevy
343
+ - nuanced, intricate, seamless
344
+
345
+ **2. Phrase-Level Tells**
346
+
347
+ These scream "AI wrote this":
348
+
349
+ - "In today's fast-paced world..."
350
+ - "In today's digital age..."
351
+ - "It's important to note that..."
352
+ - "When it comes to..."
353
+ - "In order to..." (just say "to")
354
+ - "Whether you're a... or a..."
355
+ - "Let's dive in" / "Let's explore"
356
+ - "Without further ado"
357
+ - "At the end of the day"
358
+ - "It goes without saying"
359
+ - "In conclusion" (especially at the end)
360
+ - "This comprehensive guide will..."
361
+ - "Are you looking for..." (fake questions)
362
+ - "Look no further"
363
+
364
+ **3. Structure-Level Tells**
365
+
366
+ AI has recognizable structural patterns:
367
+
368
+ - **The Triple Pattern**: Everything in threes. Three benefits. Three examples. Three subpoints. Humans are messier.
369
+ - **Perfect Parallelism**: Every bullet point same length, same structure. Too clean.
370
+ - **The Hedge Stack**: "While X, it's important to consider Y, but also Z." Never commits.
371
+ - **Fake Objectivity**: "Some experts say... others believe..." without taking a position.
372
+ - **Summary Sandwich**: Intro summarizes, body covers, conclusion summarizes again. Boring.
373
+ - **Empty Transitions**: "Now that we've covered X, let's move on to Y." Adds nothing.
374
+
375
+ **4. Voice-Level Tells**
376
+
377
+ The hardest to fix:
378
+
379
+ - **No Opinions**: Everything balanced, nothing claimed. Real experts have takes.
380
+ - **No Mistakes Mentioned**: Never wrong about anything, ever. Suspicious.
381
+ - **Generic Examples**: "For example, a business might..." instead of a real story.
382
+ - **Distance from Subject**: Writing about, not from experience of.
383
+ - **Uniform Certainty**: Every statement equally confident. Humans hedge where uncertain, commit where sure.
384
+
385
+ ### Before/After Examples
386
+
387
+ **AI Version:**
388
+
389
+ > "Email marketing remains a crucial component of any comprehensive digital marketing strategy. When it comes to improving open rates, it's important to consider several key factors. First, crafting compelling subject lines is essential. Second, segmenting your audience allows for more targeted messaging. Third, timing plays a vital role in engagement."
390
+
391
+ **Human Version:**
392
+
393
+ > "I ignored email for two years. Social media was sexier. Then I looked at the numbers: email drove 3x the revenue of all social combined. Here's what actually moves open rates—the stuff that worked when we tested it across 12 client accounts."
394
+
395
+ ---
396
+
397
+ **AI Version:**
398
+
399
+ > "In today's fast-paced business landscape, professionals are increasingly turning to automation tools to streamline their workflows and enhance productivity. These comprehensive solutions offer a myriad of benefits for organizations of all sizes."
400
+
401
+ **Human Version:**
402
+
403
+ > "Most automation tools are shelfware. You buy them, set them up, use them twice, forget they exist. Here are the three that actually stuck after a year of testing—and the 14 I wasted money on."
404
+
405
+ ---
406
+
407
+ **AI Version:**
408
+
409
+ > "Whether you're a seasoned marketer or just starting your journey, understanding SEO fundamentals is crucial for success. Let's dive into the essential strategies that can help you navigate the complex landscape of search engine optimization."
410
+
411
+ **Human Version:**
412
+
413
+ > "SEO advice is 90% outdated garbage. The tactics that worked in 2019 will get you penalized now. I'm going to show you what's actually ranking in December 2024—pulled from 300+ sites we analyzed last month."
414
+
415
+ ### Voice Injection Points
416
+
417
+ Human content has these. AI content doesn't. Add them:
418
+
419
+ **Personal experience with specifics:**
420
+
421
+ > "I made this mistake for two years. Cost me roughly $40K in lost revenue before someone on Twitter pointed out what I was doing wrong."
422
+
423
+ **Opinion with reasoning:**
424
+
425
+ > "Honestly, most SEO advice is written by people who've never ranked anything. They're regurgitating what they read somewhere else. Here's what I've actually seen work..."
426
+
427
+ **Admission of limitations:**
428
+
429
+ > "This won't work for everyone. If you're in YMYL niches, ignore this entirely—different rules apply. If you're B2B enterprise, probably not either."
430
+
431
+ **Specific examples from real work:**
432
+
433
+ > "When we implemented this for [specific client—an e-commerce brand selling outdoor gear], their organic traffic went from 12K to 89K monthly in four months. Not because of any trick—because we fixed the structural issues killing their crawlability."
434
+
435
+ **Uncertainty where honest:**
436
+
437
+ > "I'm not 100% sure why this works. Best guess: the semantic density signals topical authority. But I've seen it work across 40+ sites, so I stopped questioning it."
438
+
439
+ **Tangents and asides:**
440
+
441
+ > "This is the part where most guides tell you to 'create quality content.' (Useless advice.) What does that actually mean? Here's the specific bar to clear..."
442
+
443
+ ### Rhythm Variation
444
+
445
+ AI writes in monotonous rhythm—similar sentence lengths, parallel structures, predictable patterns. Fix it:
446
+
447
+ - Vary sentence length. Short punch. Then longer explanatory sentences that build out the context and add nuance that couldn't fit in a shorter form.
448
+ - Use fragments. For emphasis. Or drama.
449
+ - Start sentences with "And" or "But" when natural. Grammar rules exist to serve clarity, not the other way around.
450
+ - Include parenthetical asides (the kind of thing you'd say out loud if explaining to a friend).
451
+ - Ask questions. Then answer them. Or don't—leave some things hanging.
452
+ - One-word paragraphs.
453
+
454
+ Really.
455
+
456
+ ### The Detection Checklist
457
+
458
+ Before publishing, run through:
459
+
460
+ ```
461
+ [ ] No AI words (delve, comprehensive, crucial, leverage, landscape)
462
+ [ ] No AI phrases (in today's world, it's important to note, let's dive in)
463
+ [ ] Not everything in threes
464
+ [ ] At least one personal opinion stated directly
465
+ [ ] At least one specific number from real experience
466
+ [ ] At least one admission of limitation or uncertainty
467
+ [ ] Sentence lengths vary (some under 5 words, some over 20)
468
+ [ ] Would I say this out loud to a smart friend?
469
+ [ ] Does it sound like a specific person, or a committee?
470
+ [ ] Can I identify whose voice this is?
471
+ ```
472
+
473
+ ### The Read-Aloud Test
474
+
475
+ Read your draft out loud. If you stumble, readers will too. If it sounds like a textbook, rewrite it. If you'd be embarrassed to read it to a colleague, it's not ready.
476
+
477
+ ---
478
+
479
+ ## Phase 6: Optimize
480
+
481
+ ### On-Page SEO Checklist
482
+
483
+ ```
484
+ [ ] Primary keyword in title (front-loaded if possible)
485
+ [ ] Primary keyword in H1 (can match title)
486
+ [ ] Primary keyword in first 100 words
487
+ [ ] Primary keyword in at least one H2
488
+ [ ] Secondary keywords in H2s naturally
489
+ [ ] Primary keyword in meta description
490
+ [ ] Primary keyword in URL slug
491
+ [ ] Image alt text includes relevant keywords
492
+ [ ] Internal links to related content (4-8 per piece)
493
+ [ ] External links to authoritative sources (2-4 per piece)
494
+ ```
495
+
496
+ ### Title Optimization
497
+
498
+ **Format:** [Primary Keyword]: [Benefit or Hook] ([Year] if relevant)
499
+
500
+ **Examples:**
501
+
502
+ - "AI Marketing Tools: 10 That Actually Work (2025)"
503
+ - "What is Agentic AI Marketing? The Complete Guide"
504
+ - "n8n vs Zapier: Which Automation Tool is Right for You?"
505
+
506
+ **Title rules:**
507
+
508
+ - Under 60 characters (or it gets cut off)
509
+ - Front-load the keyword
510
+ - Include a hook or differentiator
511
+ - Match search intent
512
+
513
+ ### Meta Description
514
+
515
+ **Format:** [Direct answer to query]. [Proof/credibility]. [CTA or hook].
516
+
517
+ **Example:**
518
+
519
+ > "AI marketing tools can automate 60-80% of repetitive tasks. We tested 23 tools over 6 months to find the 10 that actually deliver. See the results."
520
+
521
+ **Meta rules:**
522
+
523
+ - 150-160 characters
524
+ - Include primary keyword
525
+ - Compelling enough to click
526
+ - Match what the content delivers
527
+
528
+ ### Header Structure
529
+
530
+ ```
531
+ H1: Main title (one per page)
532
+ H2: Major section (keyword variation)
533
+ H3: Subsection
534
+ H3: Subsection
535
+ H2: Major section (keyword variation)
536
+ H3: Subsection
537
+ H2: FAQ (if included)
538
+ H3: Question 1
539
+ H3: Question 2
540
+ ```
541
+
542
+ Use headers for structure, not decoration. Each H2 should be a scannable summary of what follows.
543
+
544
+ ### Featured Snippet Optimization
545
+
546
+ **For definition snippets:**
547
+
548
+ - Put definition in first paragraph
549
+ - Format: "[Keyword] is [definition in 40-50 words]"
550
+
551
+ **For list snippets:**
552
+
553
+ - Use H2 for the question
554
+ - Immediately follow with numbered or bulleted list
555
+ - Keep list items concise (one line each)
556
+
557
+ **For table snippets:**
558
+
559
+ - Use actual HTML tables
560
+ - Include clear headers
561
+ - Keep data concise
562
+
563
+ ### Internal Linking Strategy
564
+
565
+ **Link TO this content from:**
566
+
567
+ - Related pillar content
568
+ - Blog posts on similar topics
569
+ - Resource pages
570
+
571
+ **Link FROM this content to:**
572
+
573
+ - Deeper dives on subtopics mentioned
574
+ - Related tools or resources
575
+ - Conversion pages (where appropriate)
576
+
577
+ **Anchor text:**
578
+
579
+ - Use descriptive text, not "click here"
580
+ - Vary anchor text naturally
581
+ - Include keywords where natural
582
+
583
+ ---
584
+
585
+ ## Phase 7: Quality Review
586
+
587
+ ### Content Quality Checklist
588
+
589
+ ```
590
+ [ ] Answers title question in first 300 words
591
+ [ ] At least 3 specific examples or numbers
592
+ [ ] At least 1 personal experience or unique insight
593
+ [ ] Unique angle present (not just aggregation)
594
+ [ ] All claims supported by evidence or experience
595
+ [ ] No generic advice (could apply to anyone)
596
+ [ ] Would I bookmark this? Would I share it?
597
+ ```
598
+
599
+ ### Voice Quality Checklist
600
+
601
+ ```
602
+ [ ] Reads naturally out loud
603
+ [ ] No AI-isms (delve, landscape, comprehensive)
604
+ [ ] No corporate speak (leverage, synergy)
605
+ [ ] Sentence length varies
606
+ [ ] Personality present
607
+ [ ] Would I actually say this to someone?
608
+ ```
609
+
610
+ ### SEO Quality Checklist
611
+
612
+ ```
613
+ [ ] Primary keyword in title, H1, first paragraph
614
+ [ ] Secondary keywords in H2s naturally
615
+ [ ] Meta description compelling and <160 chars
616
+ [ ] Internal links included (4-8)
617
+ [ ] External citations for claims (2-4)
618
+ [ ] Alt text on all images
619
+ [ ] Headers create logical structure
620
+ [ ] FAQ section with schema-ready format
621
+ ```
622
+
623
+ ### E-E-A-T Signals Checklist
624
+
625
+ ```
626
+ [ ] Experience shown (real examples, specific results)
627
+ [ ] Expertise demonstrated (depth, accuracy, nuance)
628
+ [ ] Author credentials visible
629
+ [ ] Sources cited for factual claims
630
+ [ ] Updated date visible
631
+ [ ] No misleading claims
632
+ ```
633
+
634
+ ---
635
+
636
+ ## Output format
637
+
638
+ The final deliverable is publication-ready content:
639
+
640
+ ```
641
+ # [SEO-Optimized Title]
642
+
643
+ Meta description: [150-160 characters]
644
+
645
+ ---
646
+
647
+ [Full article content with proper H2/H3 structure]
648
+
649
+ ---
650
+
651
+ ## FAQ
652
+
653
+ ### [Question 1]
654
+ [Answer]
655
+
656
+ ### [Question 2]
657
+ [Answer]
658
+
659
+ ---
660
+
661
+ **Internal links included:**
662
+ - [Link 1 to related content]
663
+ - [Link 2 to related content]
664
+
665
+ **Schema markup:** [Article + FAQ schema ready]
666
+ ```
667
+
668
+ ---
669
+
670
+ ## Example: Creating SEO content from keyword research
671
+
672
+ ### Input from keyword-research skill:
673
+
674
+ ```
675
+ Target: "what is agentic AI marketing"
676
+ Cluster: agentic AI, AI marketing agents, autonomous marketing
677
+ Intent: Informational
678
+ Content type: Pillar guide
679
+ Priority: Critical (category definition opportunity)
680
+ ```
681
+
682
+ ### SERP analysis findings:
683
+
684
+ - Top results are thin (500-1,000 words)
685
+ - No comprehensive guide exists
686
+ - PAA questions unanswered well
687
+ - Opportunity to define the category
688
+
689
+ ### Content brief created:
690
+
691
+ - 5,000+ word pillar guide
692
+ - Unique angle: Practitioner perspective with real implementations
693
+ - Include: Definition, examples, tools, how to implement, future outlook
694
+ - Answer all PAA questions
695
+ - Target Featured Snippet with clear definition
696
+
697
+ ### Draft following pillar guide structure:
698
+
699
+ - Hook: "AI agents can now run marketing campaigns without you. Here's what that actually means."
700
+ - Quick answer section for snippet
701
+ - Deep sections on: What it is, How it works, Real examples, Tools, Implementation
702
+ - FAQ from PAA research
703
+ - CTA to community/resources
704
+
705
+ ### Humanized with:
706
+
707
+ - Personal experience running AI marketing campaigns
708
+ - Specific metrics from real implementations
709
+ - Honest limitations acknowledged
710
+ - Conversational tone throughout
711
+
712
+ ### Optimized with:
713
+
714
+ - Keyword in title, H1, first paragraph
715
+ - Secondary keywords in H2s
716
+ - Internal links to related content
717
+ - FAQ schema ready
718
+
719
+ ---
720
+
721
+ ## How this connects to other skills
722
+
723
+ **Input from:**
724
+
725
+ - **keyword-research** → Provides target keyword, cluster, intent, content type
726
+ - **positioning-angles** → Provides unique angle for differentiation
727
+ - **brand-voice** → Provides voice profile for consistent tone
728
+
729
+ **Uses:**
730
+
731
+ - **direct-response-copy** → For CTAs and conversion elements within content
732
+
733
+ **The flow:**
734
+
735
+ 1. keyword-research identifies the opportunity
736
+ 2. positioning-angles finds the unique angle
737
+ 3. brand-voice defines how it should sound
738
+ 4. **seo-content creates the actual piece**
739
+ 5. direct-response-copy punches up CTAs
740
+
741
+ ---
742
+
743
+ ## Reference: E-E-A-T Examples
744
+
745
+ See `references/eeat-examples.md` for 20 best-in-class examples of human-written content across verticals:
746
+
747
+ **Marketing/Business:**
748
+
749
+ - Paul Graham, Wait But Why, Stratechery, James Clear, Backlinko, Lenny's Newsletter, Derek Sivers
750
+
751
+ **Finance/Economics:**
752
+
753
+ - Matt Levine (Money Stuff), Morgan Housel (Psychology of Money)
754
+
755
+ **Technical/Engineering:**
756
+
757
+ - Julia Evans, Dan Luu, Shopify Engineering Blog
758
+
759
+ **Healthcare/Science:**
760
+
761
+ - Dr. Peter Attia, Dr. Siddhartha Mukherjee
762
+
763
+ **Enterprise/B2B:**
764
+
765
+ - First Round Review, Rosalyn Santa Elena (RevOps)
766
+
767
+ **Specialized Verticals:**
768
+
769
+ - Brian Krebs (Cybersecurity), Ken White (Legal), Katrina Kibben (HR/Recruiting), J. Kenji López-Alt (Food Science)
770
+
771
+ Study these patterns. The goal is content that reads like these writers—not like AI trained on generic web content.
772
+
773
+ ---
774
+
775
+ ## The test
776
+
777
+ Before publishing, ask:
778
+
779
+ 1. **Does it answer the query better than what's ranking?**
780
+ 2. **Would an expert in this field approve of the accuracy?**
781
+ 3. **Would a reader bookmark or share this?**
782
+ 4. **Does it sound like a person, not a content mill?**
783
+ 5. **Is there at least one thing here they can't find elsewhere?**
784
+ 6. **Does it pass the AI detection checklist?** (Phase 5)
785
+ 7. **Does it match the quality bar of the E-E-A-T examples?**
786
+
787
+ If any answer is no, revise before publishing.