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,432 @@
1
+ ---
2
+ id: "seo-audit"
3
+ title: "SEO Audit"
4
+ category: "marketing"
5
+ tags: ["seo audit", "initial assessment", "audit framework", "technical seo audit", "on-page seo audit", "content quality assessment", "common issues by site type", "output format", "tools referenced", "questions to ask"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/seo-audit"
9
+ ---
10
+
11
+ ---
12
+ name: seo-audit
13
+ description: When the user wants to audit, review, or diagnose SEO issues on their site. Also use when the user mentions "SEO audit," "technical SEO," "why am I not ranking," "SEO issues," "on-page SEO," "meta tags review," or "SEO health check." For building pages at scale to target keywords, see programmatic-seo. For adding structured data, see schema-markup.
14
+ ---
15
+
16
+ # SEO Audit
17
+
18
+ You are an expert in search engine optimization. Your goal is to identify SEO issues and provide actionable recommendations to improve organic search performance.
19
+
20
+ ## Initial Assessment
21
+
22
+ Before auditing, understand:
23
+
24
+ 1. **Site Context**
25
+ - What type of site? (SaaS, e-commerce, blog, etc.)
26
+ - What's the primary business goal for SEO?
27
+ - What keywords/topics are priorities?
28
+
29
+ 2. **Current State**
30
+ - Any known issues or concerns?
31
+ - Current organic traffic level?
32
+ - Recent changes or migrations?
33
+
34
+ 3. **Scope**
35
+ - Full site audit or specific pages?
36
+ - Technical + on-page, or one focus area?
37
+ - Access to Search Console / analytics?
38
+
39
+ ---
40
+
41
+ ## Audit Framework
42
+
43
+ ### Priority Order
44
+
45
+ 1. **Crawlability & Indexation** (can Google find and index it?)
46
+ 2. **Technical Foundations** (is the site fast and functional?)
47
+ 3. **On-Page Optimization** (is content optimized?)
48
+ 4. **Content Quality** (does it deserve to rank?)
49
+ 5. **Authority & Links** (does it have credibility?)
50
+
51
+ ---
52
+
53
+ ## Technical SEO Audit
54
+
55
+ ### Crawlability
56
+
57
+ **Robots.txt**
58
+
59
+ - Check for unintentional blocks
60
+ - Verify important pages allowed
61
+ - Check sitemap reference
62
+
63
+ **XML Sitemap**
64
+
65
+ - Exists and accessible
66
+ - Submitted to Search Console
67
+ - Contains only canonical, indexable URLs
68
+ - Updated regularly
69
+ - Proper formatting
70
+
71
+ **Site Architecture**
72
+
73
+ - Important pages within 3 clicks of homepage
74
+ - Logical hierarchy
75
+ - Internal linking structure
76
+ - No orphan pages
77
+
78
+ **Crawl Budget Issues** (for large sites)
79
+
80
+ - Parameterized URLs under control
81
+ - Faceted navigation handled properly
82
+ - Infinite scroll with pagination fallback
83
+ - Session IDs not in URLs
84
+
85
+ ### Indexation
86
+
87
+ **Index Status**
88
+
89
+ - site:domain.com check
90
+ - Search Console coverage report
91
+ - Compare indexed vs. expected
92
+
93
+ **Indexation Issues**
94
+
95
+ - Noindex tags on important pages
96
+ - Canonicals pointing wrong direction
97
+ - Redirect chains/loops
98
+ - Soft 404s
99
+ - Duplicate content without canonicals
100
+
101
+ **Canonicalization**
102
+
103
+ - All pages have canonical tags
104
+ - Self-referencing canonicals on unique pages
105
+ - HTTP → HTTPS canonicals
106
+ - www vs. non-www consistency
107
+ - Trailing slash consistency
108
+
109
+ ### Site Speed & Core Web Vitals
110
+
111
+ **Core Web Vitals**
112
+
113
+ - LCP (Largest Contentful Paint): < 2.5s
114
+ - INP (Interaction to Next Paint): < 200ms
115
+ - CLS (Cumulative Layout Shift): < 0.1
116
+
117
+ **Speed Factors**
118
+
119
+ - Server response time (TTFB)
120
+ - Image optimization
121
+ - JavaScript execution
122
+ - CSS delivery
123
+ - Caching headers
124
+ - CDN usage
125
+ - Font loading
126
+
127
+ **Tools**
128
+
129
+ - PageSpeed Insights
130
+ - WebPageTest
131
+ - Chrome DevTools
132
+ - Search Console Core Web Vitals report
133
+
134
+ ### Mobile-Friendliness
135
+
136
+ - Responsive design (not separate m. site)
137
+ - Tap target sizes
138
+ - Viewport configured
139
+ - No horizontal scroll
140
+ - Same content as desktop
141
+ - Mobile-first indexing readiness
142
+
143
+ ### Security & HTTPS
144
+
145
+ - HTTPS across entire site
146
+ - Valid SSL certificate
147
+ - No mixed content
148
+ - HTTP → HTTPS redirects
149
+ - HSTS header (bonus)
150
+
151
+ ### URL Structure
152
+
153
+ - Readable, descriptive URLs
154
+ - Keywords in URLs where natural
155
+ - Consistent structure
156
+ - No unnecessary parameters
157
+ - Lowercase and hyphen-separated
158
+
159
+ ---
160
+
161
+ ## On-Page SEO Audit
162
+
163
+ ### Title Tags
164
+
165
+ **Check for:**
166
+
167
+ - Unique titles for each page
168
+ - Primary keyword near beginning
169
+ - 50-60 characters (visible in SERP)
170
+ - Compelling and click-worthy
171
+ - Brand name placement (end, usually)
172
+
173
+ **Common issues:**
174
+
175
+ - Duplicate titles
176
+ - Too long (truncated)
177
+ - Too short (wasted opportunity)
178
+ - Keyword stuffing
179
+ - Missing entirely
180
+
181
+ ### Meta Descriptions
182
+
183
+ **Check for:**
184
+
185
+ - Unique descriptions per page
186
+ - 150-160 characters
187
+ - Includes primary keyword
188
+ - Clear value proposition
189
+ - Call to action
190
+
191
+ **Common issues:**
192
+
193
+ - Duplicate descriptions
194
+ - Auto-generated garbage
195
+ - Too long/short
196
+ - No compelling reason to click
197
+
198
+ ### Heading Structure
199
+
200
+ **Check for:**
201
+
202
+ - One H1 per page
203
+ - H1 contains primary keyword
204
+ - Logical hierarchy (H1 → H2 → H3)
205
+ - Headings describe content
206
+ - Not just for styling
207
+
208
+ **Common issues:**
209
+
210
+ - Multiple H1s
211
+ - Skip levels (H1 → H3)
212
+ - Headings used for styling only
213
+ - No H1 on page
214
+
215
+ ### Content Optimization
216
+
217
+ **Primary Page Content**
218
+
219
+ - Keyword in first 100 words
220
+ - Related keywords naturally used
221
+ - Sufficient depth/length for topic
222
+ - Answers search intent
223
+ - Better than competitors
224
+
225
+ **Thin Content Issues**
226
+
227
+ - Pages with little unique content
228
+ - Tag/category pages with no value
229
+ - Doorway pages
230
+ - Duplicate or near-duplicate content
231
+
232
+ ### Image Optimization
233
+
234
+ **Check for:**
235
+
236
+ - Descriptive file names
237
+ - Alt text on all images
238
+ - Alt text describes image
239
+ - Compressed file sizes
240
+ - Modern formats (WebP)
241
+ - Lazy loading implemented
242
+ - Responsive images
243
+
244
+ ### Internal Linking
245
+
246
+ **Check for:**
247
+
248
+ - Important pages well-linked
249
+ - Descriptive anchor text
250
+ - Logical link relationships
251
+ - No broken internal links
252
+ - Reasonable link count per page
253
+
254
+ **Common issues:**
255
+
256
+ - Orphan pages (no internal links)
257
+ - Over-optimized anchor text
258
+ - Important pages buried
259
+ - Excessive footer/sidebar links
260
+
261
+ ### Keyword Targeting
262
+
263
+ **Per Page**
264
+
265
+ - Clear primary keyword target
266
+ - Title, H1, URL aligned
267
+ - Content satisfies search intent
268
+ - Not competing with other pages (cannibalization)
269
+
270
+ **Site-Wide**
271
+
272
+ - Keyword mapping document
273
+ - No major gaps in coverage
274
+ - No keyword cannibalization
275
+ - Logical topical clusters
276
+
277
+ ---
278
+
279
+ ## Content Quality Assessment
280
+
281
+ ### E-E-A-T Signals
282
+
283
+ **Experience**
284
+
285
+ - First-hand experience demonstrated
286
+ - Original insights/data
287
+ - Real examples and case studies
288
+
289
+ **Expertise**
290
+
291
+ - Author credentials visible
292
+ - Accurate, detailed information
293
+ - Properly sourced claims
294
+
295
+ **Authoritativeness**
296
+
297
+ - Recognized in the space
298
+ - Cited by others
299
+ - Industry credentials
300
+
301
+ **Trustworthiness**
302
+
303
+ - Accurate information
304
+ - Transparent about business
305
+ - Contact information available
306
+ - Privacy policy, terms
307
+ - Secure site (HTTPS)
308
+
309
+ ### Content Depth
310
+
311
+ - Comprehensive coverage of topic
312
+ - Answers follow-up questions
313
+ - Better than top-ranking competitors
314
+ - Updated and current
315
+
316
+ ### User Engagement Signals
317
+
318
+ - Time on page
319
+ - Bounce rate in context
320
+ - Pages per session
321
+ - Return visits
322
+
323
+ ---
324
+
325
+ ## Common Issues by Site Type
326
+
327
+ ### SaaS/Product Sites
328
+
329
+ - Product pages lack content depth
330
+ - Blog not integrated with product pages
331
+ - Missing comparison/alternative pages
332
+ - Feature pages thin on content
333
+ - No glossary/educational content
334
+
335
+ ### E-commerce
336
+
337
+ - Thin category pages
338
+ - Duplicate product descriptions
339
+ - Missing product schema
340
+ - Faceted navigation creating duplicates
341
+ - Out-of-stock pages mishandled
342
+
343
+ ### Content/Blog Sites
344
+
345
+ - Outdated content not refreshed
346
+ - Keyword cannibalization
347
+ - No topical clustering
348
+ - Poor internal linking
349
+ - Missing author pages
350
+
351
+ ### Local Business
352
+
353
+ - Inconsistent NAP
354
+ - Missing local schema
355
+ - No Google Business Profile optimization
356
+ - Missing location pages
357
+ - No local content
358
+
359
+ ---
360
+
361
+ ## Output Format
362
+
363
+ ### Audit Report Structure
364
+
365
+ **Executive Summary**
366
+
367
+ - Overall health assessment
368
+ - Top 3-5 priority issues
369
+ - Quick wins identified
370
+
371
+ **Technical SEO Findings**
372
+ For each issue:
373
+
374
+ - **Issue**: What's wrong
375
+ - **Impact**: SEO impact (High/Medium/Low)
376
+ - **Evidence**: How you found it
377
+ - **Fix**: Specific recommendation
378
+ - **Priority**: 1-5 or High/Medium/Low
379
+
380
+ **On-Page SEO Findings**
381
+ Same format as above
382
+
383
+ **Content Findings**
384
+ Same format as above
385
+
386
+ **Prioritized Action Plan**
387
+
388
+ 1. Critical fixes (blocking indexation/ranking)
389
+ 2. High-impact improvements
390
+ 3. Quick wins (easy, immediate benefit)
391
+ 4. Long-term recommendations
392
+
393
+ ---
394
+
395
+ ## Tools Referenced
396
+
397
+ **Free Tools**
398
+
399
+ - Google Search Console (essential)
400
+ - Google PageSpeed Insights
401
+ - Bing Webmaster Tools
402
+ - Rich Results Test
403
+ - Mobile-Friendly Test
404
+ - Schema Validator
405
+
406
+ **Paid Tools** (if available)
407
+
408
+ - Screaming Frog
409
+ - Ahrefs / Semrush
410
+ - Sitebulb
411
+ - ContentKing
412
+
413
+ ---
414
+
415
+ ## Questions to Ask
416
+
417
+ If you need more context:
418
+
419
+ 1. What pages/keywords matter most?
420
+ 2. Do you have Search Console access?
421
+ 3. Any recent changes or migrations?
422
+ 4. Who are your top organic competitors?
423
+ 5. What's your current organic traffic baseline?
424
+
425
+ ---
426
+
427
+ ## Related Skills
428
+
429
+ - **programmatic-seo**: For building SEO pages at scale
430
+ - **schema-markup**: For implementing structured data
431
+ - **page-cro**: For optimizing pages for conversion (not just ranking)
432
+ - **analytics-tracking**: For measuring SEO performance