@hanzlaa/rcode 4.4.2 → 4.4.4
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.
- package/AGENTS.md +1 -1
- package/CONTRIBUTING.md +6 -0
- package/README.md +3 -3
- package/cli/install.js +13 -1
- package/cli/postinstall.js +12 -0
- package/dist/rcode.js +24 -24
- package/package.json +1 -1
- package/rcode/bin/rcode-tools.cjs +113 -15
- package/rcode/brain/sources.yaml +10 -0
- package/rcode/command-aliases.yaml +16 -0
- package/rcode/commands/lazy.md +1 -6
- package/rcode/internal-workflows.yaml +26 -0
- package/rcode/skills/seo/on-page-seo-auditor/SKILL.md +8 -155
- package/rcode/skills/seo/on-page-seo-auditor/references.md +108 -0
- package/rcode/skills/seo/rank-and-rent-local-seo/SKILL.md +1 -1
- package/rcode/skills/seo/seo-audit/SKILL.md +6 -255
- package/rcode/skills/seo/seo-audit/references.md +257 -0
- package/rcode/skills/seo/seo-content-factory/SKILL.md +1 -1
- package/rcode/skills/seo/seo-content-writer/SKILL.md +7 -94
- package/rcode/skills/seo/seo-content-writer/references.md +48 -0
- package/rcode/skills/seo/seo-growth-orchestrator/SKILL.md +1 -1
- package/rcode/skills/seo/seo-site-builder/SKILL.md +1 -1
- package/rcode/skills/seo/technical-seo-checker/SKILL.md +8 -157
- package/rcode/skills/seo/technical-seo-checker/references.md +100 -0
- package/rcode/workflows/execute.md +10 -1
- package/rcode/workflows/help.md +1 -0
- package/rcode/workflows/insert-phase.md +8 -0
- package/rcode/workflows/lazy.md +30 -0
- package/rcode/workflows/plan.md +17 -0
- package/server/dashboard.js +39 -38
- package/server/lib/html/client/components/App.js +2 -0
- package/server/lib/html/client/components/CommandPalette.js +5 -0
- package/server/lib/html/client/components/RunConfirmDialog.js +60 -0
- package/server/lib/html/client/orchestrator.js +51 -3
- package/server/lib/html/client/store.js +4 -0
- package/server/lib/html/css.js +21 -0
- package/server/orchestrator.js +43 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: seo-audit
|
|
2
|
+
name: rcode-seo-audit
|
|
3
3
|
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," "SEO health check," "my traffic dropped," "lost rankings," "not showing up in Google," "site isn't ranking," "Google update hit me," "page speed," "core web vitals," "crawl errors," or "indexing issues." Use this even if the user just says something vague like "my SEO is bad" or "help with SEO" — start with an audit. For building pages at scale to target keywords, see programmatic-seo. For adding structured data, see schema-markup. For AI search optimization, see ai-seo.
|
|
4
4
|
metadata:
|
|
5
5
|
version: 1.1.0
|
|
@@ -155,258 +155,9 @@ Reporting "no schema found" based solely on `web_fetch` or `curl` leads to false
|
|
|
155
155
|
|
|
156
156
|
---
|
|
157
157
|
|
|
158
|
-
##
|
|
159
|
-
|
|
160
|
-
### Title Tags
|
|
161
|
-
|
|
162
|
-
**Check for:**
|
|
163
|
-
- Unique titles for each page
|
|
164
|
-
- Primary keyword near beginning
|
|
165
|
-
- 50-60 characters (visible in SERP)
|
|
166
|
-
- Compelling and click-worthy
|
|
167
|
-
- No brand name placement (SERPs include brand name above title already)
|
|
168
|
-
|
|
169
|
-
**Common issues:**
|
|
170
|
-
- Duplicate titles
|
|
171
|
-
- Too long (truncated)
|
|
172
|
-
- Too short (wasted opportunity)
|
|
173
|
-
- Keyword stuffing
|
|
174
|
-
- Missing entirely
|
|
175
|
-
|
|
176
|
-
### Meta Descriptions
|
|
177
|
-
|
|
178
|
-
**Check for:**
|
|
179
|
-
- Unique descriptions per page
|
|
180
|
-
- 150-160 characters
|
|
181
|
-
- Includes primary keyword
|
|
182
|
-
- Clear value proposition
|
|
183
|
-
- Call to action
|
|
184
|
-
|
|
185
|
-
**Common issues:**
|
|
186
|
-
- Duplicate descriptions
|
|
187
|
-
- Auto-generated garbage
|
|
188
|
-
- Too long/short
|
|
189
|
-
- No compelling reason to click
|
|
190
|
-
|
|
191
|
-
### Heading Structure
|
|
192
|
-
|
|
193
|
-
**Check for:**
|
|
194
|
-
- One H1 per page
|
|
195
|
-
- H1 contains primary keyword
|
|
196
|
-
- Logical hierarchy (H1 → H2 → H3)
|
|
197
|
-
- Headings describe content
|
|
198
|
-
- Not just for styling
|
|
199
|
-
|
|
200
|
-
**Common issues:**
|
|
201
|
-
- Multiple H1s
|
|
202
|
-
- Skip levels (H1 → H3)
|
|
203
|
-
- Headings used for styling only
|
|
204
|
-
- No H1 on page
|
|
205
|
-
|
|
206
|
-
### Content Optimization
|
|
207
|
-
|
|
208
|
-
**Primary Page Content**
|
|
209
|
-
- Keyword in first 100 words
|
|
210
|
-
- Related keywords naturally used
|
|
211
|
-
- Sufficient depth/length for topic
|
|
212
|
-
- Answers search intent
|
|
213
|
-
- Better than competitors
|
|
214
|
-
|
|
215
|
-
**Thin Content Issues**
|
|
216
|
-
- Pages with little unique content
|
|
217
|
-
- Tag/category pages with no value
|
|
218
|
-
- Doorway pages
|
|
219
|
-
- Duplicate or near-duplicate content
|
|
220
|
-
|
|
221
|
-
### Image Optimization
|
|
222
|
-
|
|
223
|
-
**Check for:**
|
|
224
|
-
- Descriptive file names
|
|
225
|
-
- Alt text on all images
|
|
226
|
-
- Alt text describes image
|
|
227
|
-
- Compressed file sizes
|
|
228
|
-
- Modern formats (WebP)
|
|
229
|
-
- Lazy loading implemented
|
|
230
|
-
- Responsive images
|
|
231
|
-
|
|
232
|
-
### Internal Linking
|
|
233
|
-
|
|
234
|
-
**Check for:**
|
|
235
|
-
- Important pages well-linked
|
|
236
|
-
- Descriptive anchor text
|
|
237
|
-
- Logical link relationships
|
|
238
|
-
- No broken internal links
|
|
239
|
-
- Reasonable link count per page
|
|
240
|
-
|
|
241
|
-
**Common issues:**
|
|
242
|
-
- Orphan pages (no internal links)
|
|
243
|
-
- Over-optimized anchor text
|
|
244
|
-
- Important pages buried
|
|
245
|
-
- Excessive footer/sidebar links
|
|
246
|
-
|
|
247
|
-
### Keyword Targeting
|
|
248
|
-
|
|
249
|
-
**Per Page**
|
|
250
|
-
- Clear primary keyword target
|
|
251
|
-
- Title, H1, URL aligned
|
|
252
|
-
- Content satisfies search intent
|
|
253
|
-
- Not competing with other pages (cannibalization)
|
|
254
|
-
|
|
255
|
-
**Site-Wide**
|
|
256
|
-
- Keyword mapping document
|
|
257
|
-
- No major gaps in coverage
|
|
258
|
-
- No keyword cannibalization
|
|
259
|
-
- Logical topical clusters
|
|
158
|
+
## Detailed audit reference
|
|
260
159
|
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
### E-E-A-T Signals
|
|
266
|
-
|
|
267
|
-
**Experience**
|
|
268
|
-
- First-hand experience demonstrated
|
|
269
|
-
- Original insights/data
|
|
270
|
-
- Real examples and case studies
|
|
271
|
-
|
|
272
|
-
**Expertise**
|
|
273
|
-
- Author credentials visible
|
|
274
|
-
- Accurate, detailed information
|
|
275
|
-
- Properly sourced claims
|
|
276
|
-
|
|
277
|
-
**Authoritativeness**
|
|
278
|
-
- Recognized in the space
|
|
279
|
-
- Cited by others
|
|
280
|
-
- Industry credentials
|
|
281
|
-
|
|
282
|
-
**Trustworthiness**
|
|
283
|
-
- Accurate information
|
|
284
|
-
- Transparent about business
|
|
285
|
-
- Contact information available
|
|
286
|
-
- Privacy policy, terms
|
|
287
|
-
- Secure site (HTTPS)
|
|
288
|
-
|
|
289
|
-
### Content Depth
|
|
290
|
-
|
|
291
|
-
- Comprehensive coverage of topic
|
|
292
|
-
- Answers follow-up questions
|
|
293
|
-
- Better than top-ranking competitors
|
|
294
|
-
- Updated and current
|
|
295
|
-
|
|
296
|
-
### User Engagement Signals
|
|
297
|
-
|
|
298
|
-
- Time on page
|
|
299
|
-
- Bounce rate in context
|
|
300
|
-
- Pages per session
|
|
301
|
-
- Return visits
|
|
302
|
-
|
|
303
|
-
---
|
|
304
|
-
|
|
305
|
-
## Common Issues by Site Type
|
|
306
|
-
|
|
307
|
-
### SaaS/Product Sites
|
|
308
|
-
- Product pages lack content depth
|
|
309
|
-
- Blog not integrated with product pages
|
|
310
|
-
- Missing comparison/alternative pages
|
|
311
|
-
- Feature pages thin on content
|
|
312
|
-
- No glossary/educational content
|
|
313
|
-
|
|
314
|
-
### E-commerce
|
|
315
|
-
- Thin category pages
|
|
316
|
-
- Duplicate product descriptions
|
|
317
|
-
- Missing product schema
|
|
318
|
-
- Faceted navigation creating duplicates
|
|
319
|
-
- Out-of-stock pages mishandled
|
|
320
|
-
|
|
321
|
-
### Content/Blog Sites
|
|
322
|
-
- Outdated content not refreshed
|
|
323
|
-
- Keyword cannibalization
|
|
324
|
-
- No topical clustering
|
|
325
|
-
- Poor internal linking
|
|
326
|
-
- Missing author pages
|
|
327
|
-
|
|
328
|
-
### Local Business
|
|
329
|
-
- Inconsistent NAP
|
|
330
|
-
- Missing local schema
|
|
331
|
-
- No Google Business Profile optimization
|
|
332
|
-
- Missing location pages
|
|
333
|
-
- No local content
|
|
334
|
-
|
|
335
|
-
---
|
|
336
|
-
|
|
337
|
-
## Output Format
|
|
338
|
-
|
|
339
|
-
### Audit Report Structure
|
|
340
|
-
|
|
341
|
-
**Executive Summary**
|
|
342
|
-
- Overall health assessment
|
|
343
|
-
- Top 3-5 priority issues
|
|
344
|
-
- Quick wins identified
|
|
345
|
-
|
|
346
|
-
**Technical SEO Findings**
|
|
347
|
-
For each issue:
|
|
348
|
-
- **Issue**: What's wrong
|
|
349
|
-
- **Impact**: SEO impact (High/Medium/Low)
|
|
350
|
-
- **Evidence**: How you found it
|
|
351
|
-
- **Fix**: Specific recommendation
|
|
352
|
-
- **Priority**: 1-5 or High/Medium/Low
|
|
353
|
-
|
|
354
|
-
**On-Page SEO Findings**
|
|
355
|
-
Same format as above
|
|
356
|
-
|
|
357
|
-
**Content Findings**
|
|
358
|
-
Same format as above
|
|
359
|
-
|
|
360
|
-
**Prioritized Action Plan**
|
|
361
|
-
1. Critical fixes (blocking indexation/ranking)
|
|
362
|
-
2. High-impact improvements
|
|
363
|
-
3. Quick wins (easy, immediate benefit)
|
|
364
|
-
4. Long-term recommendations
|
|
365
|
-
|
|
366
|
-
---
|
|
367
|
-
|
|
368
|
-
## References
|
|
369
|
-
|
|
370
|
-
- [AI Writing Detection](references/ai-writing-detection.md): Common AI writing patterns to avoid (em dashes, overused phrases, filler words)
|
|
371
|
-
- For AI search optimization (AEO, GEO, LLMO, AI Overviews), see the **ai-seo** skill
|
|
372
|
-
|
|
373
|
-
---
|
|
374
|
-
|
|
375
|
-
## Tools Referenced
|
|
376
|
-
|
|
377
|
-
**Free Tools**
|
|
378
|
-
- Google Search Console (essential)
|
|
379
|
-
- Google PageSpeed Insights
|
|
380
|
-
- Bing Webmaster Tools
|
|
381
|
-
- Rich Results Test (**use this for schema validation — it renders JavaScript**)
|
|
382
|
-
- Mobile-Friendly Test
|
|
383
|
-
- Schema Validator
|
|
384
|
-
|
|
385
|
-
> **Note on schema detection:** `web_fetch` strips `<script>` tags (including JSON-LD) and cannot detect JS-injected schema. Use the browser tool, Rich Results Test, or Screaming Frog instead — they render JavaScript and capture dynamically-injected markup. See the Schema Markup Detection Limitation section above.
|
|
386
|
-
|
|
387
|
-
**Paid Tools** (if available)
|
|
388
|
-
- Screaming Frog
|
|
389
|
-
- Ahrefs / Semrush
|
|
390
|
-
- Sitebulb
|
|
391
|
-
- ContentKing
|
|
392
|
-
|
|
393
|
-
---
|
|
394
|
-
|
|
395
|
-
## Task-Specific Questions
|
|
396
|
-
|
|
397
|
-
1. What pages/keywords matter most?
|
|
398
|
-
2. Do you have Search Console access?
|
|
399
|
-
3. Any recent changes or migrations?
|
|
400
|
-
4. Who are your top organic competitors?
|
|
401
|
-
5. What's your current organic traffic baseline?
|
|
402
|
-
|
|
403
|
-
---
|
|
404
|
-
|
|
405
|
-
## Related Skills
|
|
406
|
-
|
|
407
|
-
- **ai-seo**: For optimizing content for AI search engines (AEO, GEO, LLMO)
|
|
408
|
-
- **programmatic-seo**: For building SEO pages at scale
|
|
409
|
-
- **site-architecture**: For page hierarchy, navigation design, and URL structure
|
|
410
|
-
- **schema-markup**: For implementing structured data
|
|
411
|
-
- **page-cro**: For optimizing pages for conversion (not just ranking)
|
|
412
|
-
- **analytics-tracking**: For measuring SEO performance
|
|
160
|
+
The full on-page audit checklist, content-quality assessment, site-type issue
|
|
161
|
+
matrix, output format, tools, and related-skill pointers live in
|
|
162
|
+
[`references.md`](references.md). Follow it when running the audit beyond the
|
|
163
|
+
technical pass above.
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
# SEO Audit — reference material
|
|
2
|
+
|
|
3
|
+
## On-Page SEO Audit
|
|
4
|
+
|
|
5
|
+
### Title Tags
|
|
6
|
+
|
|
7
|
+
**Check for:**
|
|
8
|
+
- Unique titles for each page
|
|
9
|
+
- Primary keyword near beginning
|
|
10
|
+
- 50-60 characters (visible in SERP)
|
|
11
|
+
- Compelling and click-worthy
|
|
12
|
+
- No brand name placement (SERPs include brand name above title already)
|
|
13
|
+
|
|
14
|
+
**Common issues:**
|
|
15
|
+
- Duplicate titles
|
|
16
|
+
- Too long (truncated)
|
|
17
|
+
- Too short (wasted opportunity)
|
|
18
|
+
- Keyword stuffing
|
|
19
|
+
- Missing entirely
|
|
20
|
+
|
|
21
|
+
### Meta Descriptions
|
|
22
|
+
|
|
23
|
+
**Check for:**
|
|
24
|
+
- Unique descriptions per page
|
|
25
|
+
- 150-160 characters
|
|
26
|
+
- Includes primary keyword
|
|
27
|
+
- Clear value proposition
|
|
28
|
+
- Call to action
|
|
29
|
+
|
|
30
|
+
**Common issues:**
|
|
31
|
+
- Duplicate descriptions
|
|
32
|
+
- Auto-generated garbage
|
|
33
|
+
- Too long/short
|
|
34
|
+
- No compelling reason to click
|
|
35
|
+
|
|
36
|
+
### Heading Structure
|
|
37
|
+
|
|
38
|
+
**Check for:**
|
|
39
|
+
- One H1 per page
|
|
40
|
+
- H1 contains primary keyword
|
|
41
|
+
- Logical hierarchy (H1 → H2 → H3)
|
|
42
|
+
- Headings describe content
|
|
43
|
+
- Not just for styling
|
|
44
|
+
|
|
45
|
+
**Common issues:**
|
|
46
|
+
- Multiple H1s
|
|
47
|
+
- Skip levels (H1 → H3)
|
|
48
|
+
- Headings used for styling only
|
|
49
|
+
- No H1 on page
|
|
50
|
+
|
|
51
|
+
### Content Optimization
|
|
52
|
+
|
|
53
|
+
**Primary Page Content**
|
|
54
|
+
- Keyword in first 100 words
|
|
55
|
+
- Related keywords naturally used
|
|
56
|
+
- Sufficient depth/length for topic
|
|
57
|
+
- Answers search intent
|
|
58
|
+
- Better than competitors
|
|
59
|
+
|
|
60
|
+
**Thin Content Issues**
|
|
61
|
+
- Pages with little unique content
|
|
62
|
+
- Tag/category pages with no value
|
|
63
|
+
- Doorway pages
|
|
64
|
+
- Duplicate or near-duplicate content
|
|
65
|
+
|
|
66
|
+
### Image Optimization
|
|
67
|
+
|
|
68
|
+
**Check for:**
|
|
69
|
+
- Descriptive file names
|
|
70
|
+
- Alt text on all images
|
|
71
|
+
- Alt text describes image
|
|
72
|
+
- Compressed file sizes
|
|
73
|
+
- Modern formats (WebP)
|
|
74
|
+
- Lazy loading implemented
|
|
75
|
+
- Responsive images
|
|
76
|
+
|
|
77
|
+
### Internal Linking
|
|
78
|
+
|
|
79
|
+
**Check for:**
|
|
80
|
+
- Important pages well-linked
|
|
81
|
+
- Descriptive anchor text
|
|
82
|
+
- Logical link relationships
|
|
83
|
+
- No broken internal links
|
|
84
|
+
- Reasonable link count per page
|
|
85
|
+
|
|
86
|
+
**Common issues:**
|
|
87
|
+
- Orphan pages (no internal links)
|
|
88
|
+
- Over-optimized anchor text
|
|
89
|
+
- Important pages buried
|
|
90
|
+
- Excessive footer/sidebar links
|
|
91
|
+
|
|
92
|
+
### Keyword Targeting
|
|
93
|
+
|
|
94
|
+
**Per Page**
|
|
95
|
+
- Clear primary keyword target
|
|
96
|
+
- Title, H1, URL aligned
|
|
97
|
+
- Content satisfies search intent
|
|
98
|
+
- Not competing with other pages (cannibalization)
|
|
99
|
+
|
|
100
|
+
**Site-Wide**
|
|
101
|
+
- Keyword mapping document
|
|
102
|
+
- No major gaps in coverage
|
|
103
|
+
- No keyword cannibalization
|
|
104
|
+
- Logical topical clusters
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Content Quality Assessment
|
|
109
|
+
|
|
110
|
+
### E-E-A-T Signals
|
|
111
|
+
|
|
112
|
+
**Experience**
|
|
113
|
+
- First-hand experience demonstrated
|
|
114
|
+
- Original insights/data
|
|
115
|
+
- Real examples and case studies
|
|
116
|
+
|
|
117
|
+
**Expertise**
|
|
118
|
+
- Author credentials visible
|
|
119
|
+
- Accurate, detailed information
|
|
120
|
+
- Properly sourced claims
|
|
121
|
+
|
|
122
|
+
**Authoritativeness**
|
|
123
|
+
- Recognized in the space
|
|
124
|
+
- Cited by others
|
|
125
|
+
- Industry credentials
|
|
126
|
+
|
|
127
|
+
**Trustworthiness**
|
|
128
|
+
- Accurate information
|
|
129
|
+
- Transparent about business
|
|
130
|
+
- Contact information available
|
|
131
|
+
- Privacy policy, terms
|
|
132
|
+
- Secure site (HTTPS)
|
|
133
|
+
|
|
134
|
+
### Content Depth
|
|
135
|
+
|
|
136
|
+
- Comprehensive coverage of topic
|
|
137
|
+
- Answers follow-up questions
|
|
138
|
+
- Better than top-ranking competitors
|
|
139
|
+
- Updated and current
|
|
140
|
+
|
|
141
|
+
### User Engagement Signals
|
|
142
|
+
|
|
143
|
+
- Time on page
|
|
144
|
+
- Bounce rate in context
|
|
145
|
+
- Pages per session
|
|
146
|
+
- Return visits
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
|
|
150
|
+
## Common Issues by Site Type
|
|
151
|
+
|
|
152
|
+
### SaaS/Product Sites
|
|
153
|
+
- Product pages lack content depth
|
|
154
|
+
- Blog not integrated with product pages
|
|
155
|
+
- Missing comparison/alternative pages
|
|
156
|
+
- Feature pages thin on content
|
|
157
|
+
- No glossary/educational content
|
|
158
|
+
|
|
159
|
+
### E-commerce
|
|
160
|
+
- Thin category pages
|
|
161
|
+
- Duplicate product descriptions
|
|
162
|
+
- Missing product schema
|
|
163
|
+
- Faceted navigation creating duplicates
|
|
164
|
+
- Out-of-stock pages mishandled
|
|
165
|
+
|
|
166
|
+
### Content/Blog Sites
|
|
167
|
+
- Outdated content not refreshed
|
|
168
|
+
- Keyword cannibalization
|
|
169
|
+
- No topical clustering
|
|
170
|
+
- Poor internal linking
|
|
171
|
+
- Missing author pages
|
|
172
|
+
|
|
173
|
+
### Local Business
|
|
174
|
+
- Inconsistent NAP
|
|
175
|
+
- Missing local schema
|
|
176
|
+
- No Google Business Profile optimization
|
|
177
|
+
- Missing location pages
|
|
178
|
+
- No local content
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
## Output Format
|
|
183
|
+
|
|
184
|
+
### Audit Report Structure
|
|
185
|
+
|
|
186
|
+
**Executive Summary**
|
|
187
|
+
- Overall health assessment
|
|
188
|
+
- Top 3-5 priority issues
|
|
189
|
+
- Quick wins identified
|
|
190
|
+
|
|
191
|
+
**Technical SEO Findings**
|
|
192
|
+
For each issue:
|
|
193
|
+
- **Issue**: What's wrong
|
|
194
|
+
- **Impact**: SEO impact (High/Medium/Low)
|
|
195
|
+
- **Evidence**: How you found it
|
|
196
|
+
- **Fix**: Specific recommendation
|
|
197
|
+
- **Priority**: 1-5 or High/Medium/Low
|
|
198
|
+
|
|
199
|
+
**On-Page SEO Findings**
|
|
200
|
+
Same format as above
|
|
201
|
+
|
|
202
|
+
**Content Findings**
|
|
203
|
+
Same format as above
|
|
204
|
+
|
|
205
|
+
**Prioritized Action Plan**
|
|
206
|
+
1. Critical fixes (blocking indexation/ranking)
|
|
207
|
+
2. High-impact improvements
|
|
208
|
+
3. Quick wins (easy, immediate benefit)
|
|
209
|
+
4. Long-term recommendations
|
|
210
|
+
|
|
211
|
+
---
|
|
212
|
+
|
|
213
|
+
## References
|
|
214
|
+
|
|
215
|
+
- [AI Writing Detection](references/ai-writing-detection.md): Common AI writing patterns to avoid (em dashes, overused phrases, filler words)
|
|
216
|
+
- For AI search optimization (AEO, GEO, LLMO, AI Overviews), see the **ai-seo** skill
|
|
217
|
+
|
|
218
|
+
---
|
|
219
|
+
|
|
220
|
+
## Tools Referenced
|
|
221
|
+
|
|
222
|
+
**Free Tools**
|
|
223
|
+
- Google Search Console (essential)
|
|
224
|
+
- Google PageSpeed Insights
|
|
225
|
+
- Bing Webmaster Tools
|
|
226
|
+
- Rich Results Test (**use this for schema validation — it renders JavaScript**)
|
|
227
|
+
- Mobile-Friendly Test
|
|
228
|
+
- Schema Validator
|
|
229
|
+
|
|
230
|
+
> **Note on schema detection:** `web_fetch` strips `<script>` tags (including JSON-LD) and cannot detect JS-injected schema. Use the browser tool, Rich Results Test, or Screaming Frog instead — they render JavaScript and capture dynamically-injected markup. See the Schema Markup Detection Limitation section above.
|
|
231
|
+
|
|
232
|
+
**Paid Tools** (if available)
|
|
233
|
+
- Screaming Frog
|
|
234
|
+
- Ahrefs / Semrush
|
|
235
|
+
- Sitebulb
|
|
236
|
+
- ContentKing
|
|
237
|
+
|
|
238
|
+
---
|
|
239
|
+
|
|
240
|
+
## Task-Specific Questions
|
|
241
|
+
|
|
242
|
+
1. What pages/keywords matter most?
|
|
243
|
+
2. Do you have Search Console access?
|
|
244
|
+
3. Any recent changes or migrations?
|
|
245
|
+
4. Who are your top organic competitors?
|
|
246
|
+
5. What's your current organic traffic baseline?
|
|
247
|
+
|
|
248
|
+
---
|
|
249
|
+
|
|
250
|
+
## Related Skills
|
|
251
|
+
|
|
252
|
+
- **ai-seo**: For optimizing content for AI search engines (AEO, GEO, LLMO)
|
|
253
|
+
- **programmatic-seo**: For building SEO pages at scale
|
|
254
|
+
- **site-architecture**: For page hierarchy, navigation design, and URL structure
|
|
255
|
+
- **schema-markup**: For implementing structured data
|
|
256
|
+
- **page-cro**: For optimizing pages for conversion (not just ranking)
|
|
257
|
+
- **analytics-tracking**: For measuring SEO performance
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: seo-content-factory
|
|
2
|
+
name: rcode-seo-content-factory
|
|
3
3
|
description: Autonomous SEO content-factory for LeadLyze — a 10-agent pipeline (competitor research → keyword expansion → clustering → briefs → writing → interlinking → programmatic page gen → schema → refresh → opportunity finding) that researches, clusters, writes, interlinks, and ships 2,000+ SEO pages into the Next.js marketing site. Runs in AUTO mode via herdr orchestration. Trigger when the user says "run the content factory", "build SEO pages", "content factory", "auto SEO", "generate 2000 pages", "programmatic SEO", "SEO auto mode", or invokes /seo-factory.
|
|
4
4
|
metadata:
|
|
5
5
|
version: 1.0.0
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: seo-content-writer
|
|
2
|
+
name: rcode-seo-content-writer
|
|
3
3
|
description: 'Write SEO blog posts, articles, landing pages with keyword integration, header optimization, and snippet targeting. SEO文章写作/内容优化'
|
|
4
4
|
version: "9.0.0"
|
|
5
5
|
license: Apache-2.0
|
|
@@ -28,63 +28,19 @@ metadata:
|
|
|
28
28
|
- SEO글쓰기
|
|
29
29
|
- redaccion-seo
|
|
30
30
|
triggers:
|
|
31
|
-
# EN-formal
|
|
32
31
|
- "write SEO content"
|
|
33
32
|
- "create blog post"
|
|
34
33
|
- "write an article"
|
|
35
|
-
- "content writing"
|
|
36
34
|
- "draft optimized content"
|
|
37
|
-
- "write for SEO"
|
|
38
35
|
- "SEO copywriting"
|
|
39
|
-
- "blog writing"
|
|
40
|
-
# EN-casual
|
|
41
36
|
- "write me a blog post"
|
|
42
|
-
- "write me an article"
|
|
43
37
|
- "help me write about"
|
|
44
|
-
- "draft an article about"
|
|
45
|
-
- "I need a blog post"
|
|
46
|
-
- "create content for my site"
|
|
47
|
-
# EN-question
|
|
48
38
|
- "how do I write content that ranks"
|
|
49
39
|
- "how to write SEO friendly content"
|
|
50
|
-
- "
|
|
51
|
-
#
|
|
52
|
-
|
|
53
|
-
-
|
|
54
|
-
- "Jasper AI alternative for SEO"
|
|
55
|
-
# ZH-pro
|
|
56
|
-
- "SEO文章写作"
|
|
57
|
-
- "SEO内容创作"
|
|
58
|
-
- "博客写作"
|
|
59
|
-
- "内容优化"
|
|
60
|
-
- "内容创作"
|
|
61
|
-
# ZH-casual
|
|
62
|
-
- "帮我写文章"
|
|
63
|
-
- "写一篇博客"
|
|
64
|
-
- "排名上不去"
|
|
65
|
-
- "帮我写SEO文章"
|
|
66
|
-
- "写一篇SEO文章"
|
|
67
|
-
# JA
|
|
68
|
-
- "SEOライティング"
|
|
69
|
-
- "SEO記事作成"
|
|
70
|
-
- "ブログ記事作成"
|
|
71
|
-
- "SEOコンテンツ"
|
|
72
|
-
# KO
|
|
73
|
-
- "SEO 글쓰기"
|
|
74
|
-
- "블로그 작성"
|
|
75
|
-
- "SEO 콘텐츠 작성"
|
|
76
|
-
- "블로그 글 작성해줘"
|
|
77
|
-
- "이 주제로 글 써봐"
|
|
78
|
-
# ES
|
|
79
|
-
- "redacción SEO"
|
|
80
|
-
- "escribir artículo SEO"
|
|
81
|
-
- "contenido optimizado"
|
|
82
|
-
# PT
|
|
83
|
-
- "redação SEO"
|
|
84
|
-
- "escrever artigo SEO"
|
|
85
|
-
# Misspellings
|
|
86
|
-
- "SEO copywritting"
|
|
87
|
-
- "writting SEO content"
|
|
40
|
+
- "SEO文章写作" # ZH
|
|
41
|
+
- "SEOライティング" # JA
|
|
42
|
+
# NOTE: for auditing existing pages use rcode-on-page-seo-auditor;
|
|
43
|
+
# for site-wide content programs use rcode-seo-content-factory.
|
|
88
44
|
---
|
|
89
45
|
|
|
90
46
|
# SEO Content Writer
|
|
@@ -215,49 +171,6 @@ When a user requests SEO content, run these nine steps in order:
|
|
|
215
171
|
- [ ] Readability score appropriate for target audience
|
|
216
172
|
- [ ] Source of each data point clearly stated (~~SEO tool data, user-provided, or estimated)
|
|
217
173
|
|
|
218
|
-
##
|
|
174
|
+
## More
|
|
219
175
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
**Output** (abbreviated):
|
|
223
|
-
- H1: `Email Marketing Best Practices: A 2026 Guide for Small Businesses` (keyword front-loaded; audience + year qualifier)
|
|
224
|
-
- Meta description: `Get 12 proven email marketing tactics that lift open rates 34% for small businesses. DMA-backed data, real subject-line examples, and a 30-day playbook.` (~156 chars, CTA implied, stat hook)
|
|
225
|
-
- Structure: H2 for each of 12 tactics, bullet lists, comparison table (Mailchimp vs Brevo vs ConvertKit), 6-question FAQ (40-60 word answers for featured snippets), CTA conclusion.
|
|
226
|
-
|
|
227
|
-
> **Reference**: See [references/seo-writing-checklist.md](https://github.com/aaron-he-zhu/seo-geo-claude-skills/blob/main/build/seo-content-writer/references/seo-writing-checklist.md) for the full article with statistics citations, H1/H2/H3 hierarchy, and FAQ section.
|
|
228
|
-
|
|
229
|
-
## Content Type Templates
|
|
230
|
-
|
|
231
|
-
Quick-start prompts: How-to guide, Comparison article, Listicle, Ultimate guide. See [references/instructions-detail.md](https://github.com/aaron-he-zhu/seo-geo-claude-skills/blob/main/build/seo-content-writer/references/instructions-detail.md#content-type-templates) for all 4 templates.
|
|
232
|
-
|
|
233
|
-
## Tips for Success
|
|
234
|
-
|
|
235
|
-
Match intent, front-load value, use data, write for humans first, include visuals, update regularly. Full list in [references/instructions-detail.md](https://github.com/aaron-he-zhu/seo-geo-claude-skills/blob/main/build/seo-content-writer/references/instructions-detail.md#tips-for-success).
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
### Save Results
|
|
239
|
-
|
|
240
|
-
After delivering content or optimization output to the user, ask:
|
|
241
|
-
|
|
242
|
-
> "Save these results for future sessions?"
|
|
243
|
-
|
|
244
|
-
If yes, write a dated summary to `memory/content/YYYY-MM-DD-<topic>.md` containing:
|
|
245
|
-
- One-line description of what was created
|
|
246
|
-
- Target keyword and content type
|
|
247
|
-
- Open loops or items needing review
|
|
248
|
-
- Source data references
|
|
249
|
-
|
|
250
|
-
**Gate check recommended**: Run content-quality-auditor before publishing (PostToolUse hook will remind automatically).
|
|
251
|
-
|
|
252
|
-
If any findings should influence ongoing strategy, recommend promoting key conclusions to `memory/hot-cache.md`.
|
|
253
|
-
|
|
254
|
-
## Reference Materials
|
|
255
|
-
|
|
256
|
-
- [Instructions Detail](https://github.com/aaron-he-zhu/seo-geo-claude-skills/blob/main/build/seo-content-writer/references/instructions-detail.md) - Full step-by-step workflow, CORE-EEAT constraints, issue classification, content type templates, tips
|
|
257
|
-
- [SEO Writing Checklist](https://github.com/aaron-he-zhu/seo-geo-claude-skills/blob/main/build/seo-content-writer/references/seo-writing-checklist.md) - On-page SEO checklist, writing template, featured snippet patterns, full example
|
|
258
|
-
- [Title Formulas](https://github.com/aaron-he-zhu/seo-geo-claude-skills/blob/main/build/seo-content-writer/references/title-formulas.md) - Proven headline formulas, power words, CTR patterns
|
|
259
|
-
- [Content Structure Templates](https://github.com/aaron-he-zhu/seo-geo-claude-skills/blob/main/build/seo-content-writer/references/content-structure-templates.md) - Templates for blog posts, comparisons, listicles, how-tos, pillar pages
|
|
260
|
-
|
|
261
|
-
## Next Best Skill
|
|
262
|
-
|
|
263
|
-
- **Primary**: [content-quality-auditor](https://github.com/aaron-he-zhu/seo-geo-claude-skills/blob/main/cross-cutting/content-quality-auditor/SKILL.md) — gate the draft before publishing or handing it off.
|
|
176
|
+
Worked example, content-type templates, tips, and reference materials live in [`references.md`](references.md).
|