opencode-skills-collection 4.0.63 → 4.0.65
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/bundled-skills/.antigravity-install-manifest.json +4 -1
- package/bundled-skills/antigravity-maintainer-batch-release/SKILL.md +1 -1
- package/bundled-skills/cv-generator/references/detailed-guide.md +0 -25
- package/bundled-skills/de-ai-writer/SKILL.md +144 -0
- package/bundled-skills/de-ai-writer/references/ai-patterns-zh.md +368 -0
- package/bundled-skills/seo-aeo-blog-writer/SKILL.md +140 -59
- package/bundled-skills/seo-aeo-content-cluster/SKILL.md +180 -61
- package/bundled-skills/seo-aeo-content-quality-auditor/SKILL.md +221 -64
- package/bundled-skills/seo-aeo-content-quality-auditor/references/seo-audit-checklist.md +63 -0
- package/bundled-skills/seo-aeo-internal-linking/SKILL.md +220 -59
- package/bundled-skills/seo-aeo-keyword-research/SKILL.md +297 -76
- package/bundled-skills/seo-aeo-landing-page-writer/SKILL.md +116 -83
- package/bundled-skills/seo-aeo-meta-description-generator/SKILL.md +316 -62
- package/bundled-skills/seo-aeo-orchestrator/SKILL.md +281 -0
- package/bundled-skills/seo-aeo-schema-generator/SKILL.md +302 -68
- package/bundled-skills/seo-aeo-schema-generator/references/aggregate-rating-schema.json +8 -0
- package/bundled-skills/seo-aeo-schema-generator/references/article-schema.json +10 -0
- package/bundled-skills/seo-aeo-schema-generator/references/breadcrumb-schema.json +5 -0
- package/bundled-skills/seo-aeo-schema-generator/references/faq-schema.json +5 -0
- package/bundled-skills/seo-aeo-schema-generator/references/howto-schema.json +7 -0
- package/bundled-skills/seo-aeo-schema-generator/references/organization-schema.json +7 -0
- package/bundled-skills/seo-aeo-schema-generator/references/product-schema.json +8 -0
- package/bundled-skills/seo-aeo-schema-generator/references/review-schema.json +8 -0
- package/bundled-skills/seo-aeo-schema-generator/references/webpage-schema.json +7 -0
- package/bundled-skills/seo-aeo-schema-generator/references/website-schema.json +7 -0
- package/bundled-skills/youtube-transcript-skills/SKILL.md +110 -0
- package/package.json +1 -1
- package/skills_index.json +101 -8
|
@@ -1,93 +1,174 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: seo-aeo-blog-writer
|
|
3
|
-
description: "Writes long-form
|
|
3
|
+
description: "Writes search-intent-led long-form articles with answer-first structure, FAQ coverage, internal links, and conversion paths for SEO and AEO."
|
|
4
4
|
risk: safe
|
|
5
5
|
source: community
|
|
6
6
|
date_added: "2026-04-01"
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
#
|
|
9
|
+
# Blog Writer Skill
|
|
10
|
+
|
|
11
|
+
## Description
|
|
12
|
+
Activate this skill when the user wants to write a blog post, article, or
|
|
13
|
+
long-form content piece for SEO and AEO purposes. Trigger phrases include:
|
|
14
|
+
"write a blog post", "create an article", "generate blog content",
|
|
15
|
+
"write a long-form post about", "blog writer".
|
|
16
|
+
|
|
17
|
+
## Input Format
|
|
18
|
+
```json
|
|
19
|
+
{
|
|
20
|
+
"topic": "string — the main subject of the article",
|
|
21
|
+
"primary_keyword": "string — exact keyword to rank for",
|
|
22
|
+
"secondary_keywords": ["string", "string"],
|
|
23
|
+
"target_audience": "string — who is reading this",
|
|
24
|
+
"tone": "informational | conversational | authoritative | persuasive",
|
|
25
|
+
"word_count": "integer — minimum 800, maximum 3000, default 1500",
|
|
26
|
+
"cluster_context": "string — optional, paste content cluster output here",
|
|
27
|
+
"internal_link_targets": ["string — page/post titles to link to"],
|
|
28
|
+
"product_cta": "string — optional CTA and destination",
|
|
29
|
+
"search_intent_evidence": "string — optional observed SERP/API evidence",
|
|
30
|
+
"distribution_platforms": ["string — optional external platforms"]
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Write to the dominant search intent, not merely the keyword. The article should solve a recognizable problem and make the next product action clear without turning an informational article into an unsupported sales pitch.
|
|
35
|
+
|
|
36
|
+
## Output Structure
|
|
37
|
+
|
|
38
|
+
The skill must always produce a blog post in this exact section order:
|
|
39
|
+
```markdown
|
|
40
|
+
# [H1: Primary Keyword-Optimised Title]
|
|
41
|
+
|
|
42
|
+
> **TL;DR:** [2–3 sentence direct answer to the article's core question.
|
|
43
|
+
> This is the AEO extraction block — write it to be lifted by AI engines.]
|
|
44
|
+
|
|
45
|
+
## Introduction
|
|
46
|
+
[Hook sentence. State the problem or question clearly in the first 2 lines.
|
|
47
|
+
Mention the primary keyword naturally within the first 100 words.]
|
|
10
48
|
|
|
11
|
-
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## [H2: What Is {Topic}]
|
|
52
|
+
[Definition block — write a single, clean, extractable definition sentence
|
|
53
|
+
as the very first line of this section. Follow with 2–3 paragraphs of context.]
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## [H2: Why {Topic} Matters / The Core Problem]
|
|
58
|
+
[Establish relevance. Use bullet points or a numbered list in this section.]
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## [H2: How {Topic} Works / Main Body Section]
|
|
63
|
+
[Deepest section. Use H3 subheadings for sub-concepts. Include at least
|
|
64
|
+
one comparison block formatted as a table if comparing two or more things.]
|
|
65
|
+
|
|
66
|
+
### [H3: Sub-concept 1]
|
|
67
|
+
### [H3: Sub-concept 2]
|
|
68
|
+
### [H3: Sub-concept 3]
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## [H2: Practical Steps / How To Section — if applicable]
|
|
73
|
+
[Numbered list of steps. Each step max 2 sentences. Scannable.]
|
|
74
|
+
|
|
75
|
+
---
|
|
12
76
|
|
|
13
|
-
|
|
77
|
+
## [H2: Common Mistakes / What To Avoid — if applicable]
|
|
78
|
+
[Bullet list format. Short, punchy, extractable by AI.]
|
|
14
79
|
|
|
15
|
-
|
|
80
|
+
---
|
|
16
81
|
|
|
17
|
-
##
|
|
82
|
+
## Frequently Asked Questions
|
|
18
83
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
- Use when you need content that can be cited by AI engines like Perplexity or ChatGPT
|
|
22
|
-
- Use when you need a blog post that follows a consistent, auditable structure
|
|
84
|
+
**Q: [Question using a long-tail keyword]**
|
|
85
|
+
A: [Direct answer, 2–3 sentences max. No fluff.]
|
|
23
86
|
|
|
24
|
-
|
|
87
|
+
**Q: [Question using a secondary keyword]**
|
|
88
|
+
A: [Direct answer.]
|
|
25
89
|
|
|
26
|
-
|
|
27
|
-
|
|
90
|
+
**Q: [Question the target audience commonly asks]**
|
|
91
|
+
A: [Direct answer.]
|
|
28
92
|
|
|
29
|
-
|
|
30
|
-
|
|
93
|
+
**Q: [Question about cost, time, or comparison]**
|
|
94
|
+
A: [Direct answer.]
|
|
31
95
|
|
|
32
|
-
|
|
33
|
-
|
|
96
|
+
**Q: [Question about a common misconception]**
|
|
97
|
+
A: [Direct answer.]
|
|
34
98
|
|
|
35
|
-
|
|
36
|
-
Use long-tail and secondary keywords as questions. Each answer must be under 50 words and self-contained — readable without any surrounding context.
|
|
99
|
+
---
|
|
37
100
|
|
|
38
|
-
|
|
39
|
-
|
|
101
|
+
## Conclusion
|
|
102
|
+
[Restate the core answer from the TL;DR in new words.
|
|
103
|
+
One call to action sentence at the end.]
|
|
40
104
|
|
|
41
|
-
|
|
105
|
+
---
|
|
42
106
|
|
|
43
|
-
|
|
44
|
-
|
|
107
|
+
## Internal Links
|
|
108
|
+
[INTERNAL LINK: {internal_link_target_1}]
|
|
109
|
+
[INTERNAL LINK: {internal_link_target_2}]
|
|
45
110
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
timezone-aware sprint planning. Teams that nail these three
|
|
49
|
-
areas ship consistently regardless of where members are located.
|
|
111
|
+
## External Links
|
|
112
|
+
[EXTERNAL LINK: authoritative source relevant to primary keyword]
|
|
50
113
|
|
|
114
|
+
## Product CTA
|
|
115
|
+
[CTA: relevant product action and destination]
|
|
51
116
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
and context gets lost. Teams that document decisions in writing
|
|
56
|
-
and use structured standup tools close this gap fastest.
|
|
57
|
-
Q: How do you run a daily standup with a remote team?
|
|
58
|
-
A: Use async video or text standups posted at the start of each
|
|
59
|
-
member's day. Tools like Loom or Slack threads work well.
|
|
60
|
-
Avoid live calls across more than 2 timezones.
|
|
117
|
+
## External Distribution Notes
|
|
118
|
+
- [Platform]: [adaptation angle, canonical-link decision, and backlink target]
|
|
119
|
+
```
|
|
61
120
|
|
|
62
|
-
|
|
121
|
+
---
|
|
63
122
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
- ✅ **Do:** Use secondary keywords as FAQ questions to capture long-tail traffic
|
|
67
|
-
- ❌ **Don't:** Write FAQ answers longer than 50 words — AI engines skip long answers
|
|
68
|
-
- ❌ **Don't:** Use duplicate H2 headings anywhere in the article
|
|
69
|
-
- ❌ **Don't:** Skip the comparison table if the topic involves comparing options
|
|
123
|
+
## AEO Requirements
|
|
124
|
+
Every blog post produced by this skill MUST contain:
|
|
70
125
|
|
|
71
|
-
|
|
126
|
+
- [ ] A TL;DR block immediately after the H1
|
|
127
|
+
- [ ] A clean definition sentence as the first line of the "What Is" section
|
|
128
|
+
- [ ] At least one comparison table (if topic involves comparing options)
|
|
129
|
+
- [ ] Exactly 5 FAQ entries with direct, concise answers
|
|
130
|
+
- [ ] Bullet or numbered lists in at least 2 sections
|
|
131
|
+
- [ ] Primary keyword in: H1, first 100 words, at least one H2, meta description
|
|
132
|
+
- [ ] A relevant product CTA or next step is present when the article supports conversion
|
|
133
|
+
- [ ] Internal links connect the article to a foundational page and, where relevant, the product
|
|
72
134
|
|
|
73
|
-
|
|
74
|
-
**Solution:** The TL;DR must answer the article's core question in 2–3 sentences. If it doesn't answer a specific question, rewrite it.
|
|
135
|
+
---
|
|
75
136
|
|
|
76
|
-
|
|
77
|
-
**Solution:** Every FAQ answer must stand completely alone — no references to other parts of the article.
|
|
137
|
+
## SEO Requirements
|
|
78
138
|
|
|
79
|
-
|
|
139
|
+
- H1: appears exactly once, contains primary keyword
|
|
140
|
+
- H2s: 4–6 per article, no keyword stuffing
|
|
141
|
+
- H3s: used only inside H2 sections, not standalone
|
|
142
|
+
- Word count: stay within the range specified in input; default 1500 words
|
|
143
|
+
- Keyword use: natural and intent-aligned; do not force a density percentage
|
|
144
|
+
- No duplicate headings
|
|
80
145
|
|
|
81
|
-
|
|
82
|
-
- `@seo-aeo-content-quality-auditor` — audits the completed post for SEO and AEO signals
|
|
83
|
-
- `@seo-aeo-internal-linking` — maps links between this post and related pages
|
|
146
|
+
---
|
|
84
147
|
|
|
85
|
-
##
|
|
148
|
+
## Execution Steps
|
|
86
149
|
|
|
87
|
-
|
|
88
|
-
|
|
150
|
+
1. Read `cluster_context` if provided — use it to decide which sub-topics
|
|
151
|
+
to cover and which to leave for linked cluster articles
|
|
152
|
+
2. Review `search_intent_evidence` if provided and state the problem the article solves
|
|
153
|
+
3. Write the TL;DR block first — this anchors the whole article's direction
|
|
154
|
+
4. Build the heading skeleton before writing body content
|
|
155
|
+
5. Write the definition block in the "What Is" section as a single sentence
|
|
156
|
+
6. Write the FAQ section using long-tail and secondary keywords as questions
|
|
157
|
+
7. Insert internal links at natural transition points, including a foundational page and product CTA where appropriate
|
|
158
|
+
8. Add external-source suggestions only when they are authoritative and relevant
|
|
159
|
+
9. Do a final keyword placement check against the SEO Requirements checklist
|
|
160
|
+
10. Do a final AEO, conversion, and claim-verification pass before outputting
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
|
|
164
|
+
## Connected Skills
|
|
165
|
+
- Receives output from: `seo-aeo-content-cluster`
|
|
166
|
+
- Feeds output to: `seo-aeo-content-quality-auditor`, `seo-aeo-internal-linking`
|
|
167
|
+
|
|
168
|
+
## When to Use
|
|
169
|
+
|
|
170
|
+
Use when creating or revising a long-form article intended to capture a specific search intent and guide readers toward a relevant next step.
|
|
89
171
|
|
|
90
172
|
## Limitations
|
|
91
|
-
|
|
92
|
-
-
|
|
93
|
-
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
|
|
173
|
+
|
|
174
|
+
- Search performance depends on the actual site, competition, content quality, and indexing; this skill cannot guarantee rankings or traffic.
|
|
@@ -1,94 +1,213 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: seo-aeo-content-cluster
|
|
3
|
-
description: "Builds a topical authority map
|
|
3
|
+
description: "Builds a topical authority map from business goals, search intent, existing content, and gaps, then prioritises foundational and supporting pages."
|
|
4
4
|
risk: safe
|
|
5
5
|
source: community
|
|
6
6
|
date_added: "2026-04-01"
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
#
|
|
9
|
+
# Content Cluster Skill
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Description
|
|
12
|
+
Activate this skill when the user wants to build topical authority around
|
|
13
|
+
a subject by mapping out a pillar page and its supporting cluster articles.
|
|
14
|
+
Trigger phrases include: "build a content cluster", "create a topic map",
|
|
15
|
+
"content pillar strategy", "what should I write about for [topic]",
|
|
16
|
+
"cluster: [topic]", "generate a content strategy for [niche]".
|
|
12
17
|
|
|
13
|
-
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## Input Format
|
|
21
|
+
```json
|
|
22
|
+
{
|
|
23
|
+
"pillar_topic": "string — the main subject to build authority around",
|
|
24
|
+
"primary_keyword": "string — the keyword the pillar page targets",
|
|
25
|
+
"target_audience": "string — who this content is for",
|
|
26
|
+
"existing_content": ["string — titles of pages/posts already published"],
|
|
27
|
+
"target_keywords": ["string — additional keywords to work into the cluster"],
|
|
28
|
+
"cluster_size": "integer — foundational pages to generate, 5–10, default 10",
|
|
29
|
+
"search_intent_evidence": "string — optional browser/API research",
|
|
30
|
+
"conversion_goal": "string — what the content should move readers to do"
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
For a new website, produce 5–10 foundational pages, defaulting to 10 only when there are at least 10 distinct, defensible search intents. Do not create near-duplicate pages to hit the default. Every page must solve a problem, own a query, and lead to a relevant product or next step.
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Output Structure
|
|
39
|
+
|
|
40
|
+
The skill must always produce output in this exact format:
|
|
41
|
+
```markdown
|
|
42
|
+
## Pillar Page
|
|
43
|
+
|
|
44
|
+
| Field | Value |
|
|
45
|
+
|--------------------|--------------------------------------------|
|
|
46
|
+
| Title | [Pillar page title with primary keyword] |
|
|
47
|
+
| Primary Keyword | [keyword] |
|
|
48
|
+
| Search Intent | informational / transactional / commercial |
|
|
49
|
+
| Target Audience | [audience] |
|
|
50
|
+
| Page Type | Pillar — comprehensive, high-level guide |
|
|
51
|
+
| Word Count Target | 2500–4000 words |
|
|
52
|
+
| AEO Priority | High — this page anchors the whole cluster |
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## Cluster Articles
|
|
57
|
+
|
|
58
|
+
### Priority 1 — Write These First
|
|
59
|
+
These articles build the foundation. High search volume, clear intent.
|
|
60
|
+
|
|
61
|
+
| # | Title | Target Keyword | Intent | Content Type | Links To |
|
|
62
|
+
|---|------------------------------|----------------------|-----------------|------------------|------------------|
|
|
63
|
+
| 1 | [Article title] | [keyword] | informational | how-to guide | Pillar Page |
|
|
64
|
+
| 2 | [Article title] | [keyword] | informational | explainer | Pillar Page |
|
|
65
|
+
| 3 | [Article title] | [keyword] | commercial | comparison | Pillar Page |
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
### Priority 2 — Write These Second
|
|
70
|
+
These deepen authority. Medium volume, long-tail focus.
|
|
71
|
+
|
|
72
|
+
| # | Title | Target Keyword | Intent | Content Type | Links To |
|
|
73
|
+
|---|------------------------------|----------------------|-----------------|------------------|------------------|
|
|
74
|
+
| 4 | [Article title] | [keyword] | informational | listicle | Art. 1, Pillar |
|
|
75
|
+
| 5 | [Article title] | [keyword] | transactional | case study | Art. 3, Pillar |
|
|
76
|
+
| 6 | [Article title] | [keyword] | informational | FAQ page | Art. 1, Art. 2 |
|
|
77
|
+
|
|
78
|
+
---
|
|
14
79
|
|
|
15
|
-
|
|
80
|
+
### Priority 3 — Write These Last
|
|
81
|
+
Long-tail reinforcement. Lower volume, high conversion intent.
|
|
16
82
|
|
|
17
|
-
|
|
83
|
+
| # | Title | Target Keyword | Intent | Content Type | Links To |
|
|
84
|
+
|---|------------------------------|----------------------|-----------------|------------------|------------------|
|
|
85
|
+
| 7 | [Article title] | [keyword] | transactional | review | Pillar Page |
|
|
86
|
+
| 8 | [Article title] | [keyword] | informational | glossary | Art. 2, Art. 4 |
|
|
18
87
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## Internal Link Map
|
|
91
|
+
|
|
92
|
+
Pillar Page
|
|
93
|
+
├── Article 1 → links back to Pillar
|
|
94
|
+
├── Article 2 → links back to Pillar
|
|
95
|
+
├── Article 3 → links back to Pillar, links to Article 1
|
|
96
|
+
├── Article 4 → links to Article 1, Pillar
|
|
97
|
+
├── Article 5 → links to Article 3, Pillar
|
|
98
|
+
├── Article 6 → links to Article 1, Article 2
|
|
99
|
+
├── Article 7 → links to Pillar
|
|
100
|
+
└── Article 8 → links to Article 2, Article 4
|
|
101
|
+
|
|
102
|
+
Rule: Every cluster article must link back to the Pillar Page.
|
|
103
|
+
Rule: No orphan articles — every article links to at least one other article.
|
|
104
|
+
|
|
105
|
+
## Foundational Page Plan
|
|
106
|
+
|
|
107
|
+
| # | Page / Article | Problem Solved | Primary Query | Intent | Product CTA | Supporting Links |
|
|
108
|
+
|---|----------------|----------------|---------------|--------|-------------|------------------|
|
|
109
|
+
| 1 | [title] | [problem] | [query] | [intent] | [CTA] | [targets] |
|
|
110
|
+
|
|
111
|
+
Use this section for the first publishing wave. The landing page, foundational pages, and later cluster articles must not compete for the same intent.
|
|
112
|
+
|
|
113
|
+
## 20-Day Editorial Calendar
|
|
114
|
+
|
|
115
|
+
| Day | Topic / Title | Target Query | Search Intent | Article Format | Internal Link Target | External Distribution Candidate |
|
|
116
|
+
|-----|---------------|--------------|---------------|----------------|----------------------|--------------------------------|
|
|
117
|
+
| 1 | [title] | [query] | [intent] | [format] | [page] | [Medium/Hashnode/dev.to/other] |
|
|
23
118
|
|
|
24
|
-
|
|
119
|
+
Create 20 distinct topics after the foundation is mapped. Prefer topics that answer real questions, solve problems, support the product, and can be linked back to a foundational page.
|
|
25
120
|
|
|
26
|
-
|
|
27
|
-
Set the primary keyword, target audience, and word count target (2500–4000 words) for the pillar page that anchors the cluster.
|
|
121
|
+
---
|
|
28
122
|
|
|
29
|
-
|
|
30
|
-
Produce 8–15 subtopics sorted into three priority tiers:
|
|
31
|
-
- **Priority 1** — High volume, clear intent. Write these first.
|
|
32
|
-
- **Priority 2** — Medium volume, long-tail focus. Write second.
|
|
33
|
-
- **Priority 3** — Low volume, high conversion intent. Write last.
|
|
123
|
+
## Content Gap Analysis
|
|
34
124
|
|
|
35
|
-
|
|
125
|
+
Topics the cluster covers that competitors likely miss:
|
|
126
|
+
- [Gap 1 — underserved angle on the pillar topic]
|
|
127
|
+
- [Gap 2 — long-tail question with no strong existing answer]
|
|
128
|
+
- [Gap 3 — AEO opportunity: question AI engines commonly surface]
|
|
36
129
|
|
|
37
|
-
|
|
38
|
-
|
|
130
|
+
Topics to deliberately exclude from this cluster
|
|
131
|
+
(belong to a different cluster):
|
|
132
|
+
- [Out-of-scope topic 1]
|
|
133
|
+
- [Out-of-scope topic 2]
|
|
39
134
|
|
|
40
|
-
|
|
41
|
-
Identify angles that competitors likely miss — especially question-based AEO opportunities that AI engines commonly surface.
|
|
135
|
+
---
|
|
42
136
|
|
|
43
|
-
##
|
|
137
|
+
## AEO Cluster Signals
|
|
44
138
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
139
|
+
At least 2 cluster articles must be structured as direct-answer pages:
|
|
140
|
+
- One FAQ page targeting 8–10 questions around the pillar topic
|
|
141
|
+
- One "What Is" explainer with a clean definition as the opening sentence
|
|
48
142
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
What Is Zero-Based Budgeting? | explainer ← AEO priority
|
|
143
|
+
These two articles have the highest probability of being
|
|
144
|
+
extracted by AI engines.
|
|
52
145
|
|
|
53
|
-
|
|
54
|
-
4. How to Automate Your Savings in 3 Steps | how-to guide
|
|
55
|
-
5. Budgeting for Millennials: What Nobody Tells You | opinion
|
|
56
|
-
Link Map:
|
|
57
|
-
Pillar ← Article 1, 2, 3, 4, 5
|
|
58
|
-
Article 1 ↔ Article 4
|
|
59
|
-
Article 2 → Article 3
|
|
60
|
-
AEO Priority:
|
|
61
|
-
★ Article 3 — "What Is" format has highest AI extraction probability
|
|
62
|
-
★ Article 2 — comparison table will be lifted for product queries
|
|
146
|
+
---
|
|
63
147
|
|
|
64
|
-
##
|
|
148
|
+
## Cluster Health Checklist
|
|
149
|
+
|
|
150
|
+
- [ ] Pillar page defined with clear keyword and intent
|
|
151
|
+
- [ ] 5–10 foundational pages generated, default 10 when justified
|
|
152
|
+
- [ ] Every article has a unique target keyword (no overlap)
|
|
153
|
+
- [ ] Every article assigned a content type
|
|
154
|
+
- [ ] Every article linked back to the Pillar Page
|
|
155
|
+
- [ ] No orphan articles in the link map
|
|
156
|
+
- [ ] At least one FAQ page in the cluster
|
|
157
|
+
- [ ] At least one comparison or case study article
|
|
158
|
+
- [ ] Content gap section completed
|
|
159
|
+
- [ ] Every foundational page has a distinct search intent and conversion path
|
|
160
|
+
- [ ] 20-day editorial calendar completed without cannibalizing existing pages
|
|
161
|
+
```
|
|
65
162
|
|
|
66
|
-
|
|
67
|
-
- ✅ **Do:** Include at least one FAQ page and one comparison article in every cluster
|
|
68
|
-
- ✅ **Do:** Flag the 2 highest AEO-opportunity articles for priority writing
|
|
69
|
-
- ❌ **Don't:** Let any article become an orphan — every article links to at least one other
|
|
70
|
-
- ❌ **Don't:** Target the same keyword on both the pillar and a cluster article
|
|
163
|
+
---
|
|
71
164
|
|
|
72
|
-
##
|
|
165
|
+
## Content Types Available
|
|
73
166
|
|
|
74
|
-
|
|
75
|
-
**Solution:** Run a uniqueness check — every article needs a distinct keyword with no semantic overlap.
|
|
167
|
+
When assigning content types, use only from this list:
|
|
76
168
|
|
|
77
|
-
|
|
78
|
-
|
|
169
|
+
| Type | Best For |
|
|
170
|
+
|----------------|-------------------------------------------------|
|
|
171
|
+
| how-to guide | step-by-step processes |
|
|
172
|
+
| explainer | concept definitions and overviews |
|
|
173
|
+
| listicle | roundups, tools, resources |
|
|
174
|
+
| comparison | X vs Y, best options |
|
|
175
|
+
| case study | real-world application, results |
|
|
176
|
+
| FAQ page | question clusters, AEO targeting |
|
|
177
|
+
| review | product or service evaluation |
|
|
178
|
+
| glossary | terminology, definitions, long-tail keywords |
|
|
179
|
+
| opinion/take | thought leadership, contrarian angles |
|
|
79
180
|
|
|
80
|
-
|
|
181
|
+
---
|
|
81
182
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
183
|
+
## Execution Steps
|
|
184
|
+
|
|
185
|
+
1. Read `existing_content` — mark any titles that already exist
|
|
186
|
+
so the cluster doesn't duplicate them
|
|
187
|
+
2. Identify the pillar topic's full semantic territory —
|
|
188
|
+
what questions, angles, and sub-topics surround it
|
|
189
|
+
3. Run a content gap pass — what angles are underserved
|
|
190
|
+
or missing entirely in this space
|
|
191
|
+
4. Assign each subtopic a unique keyword with no overlap
|
|
192
|
+
between articles or with the pillar keyword
|
|
193
|
+
5. Classify each subtopic's search intent before assigning content type
|
|
194
|
+
6. Sort all subtopics into Priority 1, 2, and 3 tiers
|
|
195
|
+
based on search volume and foundational relevance
|
|
196
|
+
7. Build the 5–10-page foundational plan before expanding to the 20-day calendar
|
|
197
|
+
8. Build the internal link map — verify no orphan articles exist
|
|
198
|
+
9. Flag the 2 highest AEO-opportunity articles in the cluster
|
|
199
|
+
10. Complete the content gap section and editorial calendar before outputting
|
|
85
200
|
|
|
86
|
-
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
## Connected Skills
|
|
204
|
+
- Receives output from: `seo-aeo-keyword-research`
|
|
205
|
+
- Feeds output to: `seo-aeo-blog-writer`, `seo-aeo-internal-linking`
|
|
87
206
|
|
|
88
|
-
|
|
89
|
-
|
|
207
|
+
## When to Use
|
|
208
|
+
|
|
209
|
+
Use when planning a pillar page, foundational pages, and supporting articles around a product, service, or topic.
|
|
90
210
|
|
|
91
211
|
## Limitations
|
|
92
|
-
|
|
93
|
-
-
|
|
94
|
-
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
|
|
212
|
+
|
|
213
|
+
- A content map is a prioritisation aid, not measured demand or a guarantee that every proposed topic will rank.
|