@piramilan/seo-expert 0.2.0 → 0.3.0
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/CHANGELOG.md +33 -0
- package/INSTALL.md +3 -6
- package/README.md +17 -22
- package/SKILL.md +6 -11
- package/adapters/chatgpt-instructions.md +3 -7
- package/adapters/claude-project-instructions.md +3 -7
- package/adapters/coding-agent-rules.md +1 -1
- package/adapters/gemini-gem-instructions.md +2 -4
- package/adapters/perplexity-space-instructions.md +1 -5
- package/bin/seo-expert.js +2 -2
- package/core/ai-seo-operating-system.md +1 -1
- package/package.json +2 -3
- package/core/video-derived-lessons.md +0 -96
- package/sources/video-index.md +0 -1151
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,39 @@ All notable changes to the SEO Expert skill are documented here.
|
|
|
4
4
|
|
|
5
5
|
This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.3.0] — 2026-05-14
|
|
8
|
+
|
|
9
|
+
Cleanup release. The skill's value is its playbooks and the output contract — not how those playbooks were authored. This release removes references to the training corpus from every client-facing surface so the package presents as a polished, hand-written consultant skill.
|
|
10
|
+
|
|
11
|
+
### Removed
|
|
12
|
+
- `sources/video-index.md` — public source-video metadata index removed from the published package.
|
|
13
|
+
- `core/video-derived-lessons.md` — auto-generated topic bullets removed from the published package.
|
|
14
|
+
- The `sources/` directory is no longer part of the npm tarball or repo.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- **Output Contract item 6** rephrased: *"Source references when drawing from the video-derived corpus"* → *"Source references when citing claims, statistics, definitions, or third-party content."* The contract stays six parts; the trigger is now generic.
|
|
18
|
+
- **`SKILL.md`** description trimmed to *"built on a set of hand-written, regularly maintained playbooks that compress senior SEO consulting practice into a portable, auditable skill."*
|
|
19
|
+
- **Guardrails** consolidated: a single "No third-party content reproduction" rule replaces the prior "no raw transcripts" wording across `SKILL.md` and every adapter.
|
|
20
|
+
- **README + INSTALL upload checklists** trimmed from 9 files to 7 (removed the two video files from Claude Project / ChatGPT / Perplexity Space upload instructions).
|
|
21
|
+
- **`bin/seo-expert.js`** — `install claude-code` no longer copies `sources/` into `~/.claude/skills/seo-expert/`.
|
|
22
|
+
- **`package.json`** — `files` whitelist no longer includes `sources/`.
|
|
23
|
+
- **`.github/workflows/verify.yml`** — required-file check no longer requires the two removed files.
|
|
24
|
+
- **`.github/PULL_REQUEST_TEMPLATE.md`** — Output Contract checklist and anti-patterns reworded to remove transcript-specific language.
|
|
25
|
+
|
|
26
|
+
### Unchanged
|
|
27
|
+
- The five `core/*.md` playbooks (`ai-seo-operating-system`, `technical-seo`, `content-strategy`, `local-seo`, `programmatic-seo`) — same guidance, same depth.
|
|
28
|
+
- The nine prompt templates in `prompts/universal-ai-seo-prompts.md`.
|
|
29
|
+
- The five adapters' install flows, principles, and output contracts.
|
|
30
|
+
- The CLI commands and behavior (`install`, `copy`, `list`, `info`, `help`).
|
|
31
|
+
- License (MIT), Node ≥ 18 requirement, scoped name `@piramilan/seo-expert`.
|
|
32
|
+
|
|
33
|
+
### Migration
|
|
34
|
+
- **`npx` users:** the next `npx @piramilan/seo-expert install <tool>` automatically pulls 0.3.0.
|
|
35
|
+
- **Manual installers:** drop the two files from your knowledge bases (Claude Project, ChatGPT GPT, Perplexity Space). Re-paste the updated adapter block where the Output Contract wording matters to you.
|
|
36
|
+
- **Pinned users:** `npx @piramilan/seo-expert@0.2.0 install <tool>` still works.
|
|
37
|
+
|
|
38
|
+
[0.3.0]: https://github.com/Piramilan/seo-expert/releases/tag/v0.3.0
|
|
39
|
+
|
|
7
40
|
## [0.2.0] — 2026-05-13
|
|
8
41
|
|
|
9
42
|
One-line install via `npx`. Same skill content as 0.1.0; new way to deliver it.
|
package/INSTALL.md
CHANGED
|
@@ -80,9 +80,7 @@ audit https://example.com for AI visibility
|
|
|
80
80
|
- `core/content-strategy.md`
|
|
81
81
|
- `core/local-seo.md`
|
|
82
82
|
- `core/programmatic-seo.md`
|
|
83
|
-
- `core/video-derived-lessons.md`
|
|
84
83
|
- `prompts/universal-ai-seo-prompts.md`
|
|
85
|
-
- `sources/video-index.md`
|
|
86
84
|
5. Save.
|
|
87
85
|
|
|
88
86
|
**Test it:** `Audit https://example.com for SEO`
|
|
@@ -100,7 +98,7 @@ audit https://example.com for AI visibility
|
|
|
100
98
|
- `Rewrite this page section for AI extractability: `
|
|
101
99
|
- `Build a content brief for the query: `
|
|
102
100
|
- `Plan programmatic pages for the pattern: `
|
|
103
|
-
6. **Knowledge** — upload the same
|
|
101
|
+
6. **Knowledge** — upload the same 7 files listed in the Claude Project section above
|
|
104
102
|
7. **Capabilities** — enable Web Browsing (lets the GPT fetch URLs you give it). Enable Code Interpreter only if you want it to validate JSON-LD locally.
|
|
105
103
|
8. **Save** → publish to *Only me*, *Anyone with the link*, or *Everyone* (the GPT Store).
|
|
106
104
|
|
|
@@ -109,7 +107,7 @@ audit https://example.com for AI visibility
|
|
|
109
107
|
### ChatGPT Project (alternative, simpler, no Custom GPT)
|
|
110
108
|
1. **chatgpt.com → Projects → New Project**
|
|
111
109
|
2. Paste the same instructions block into the Project's instructions
|
|
112
|
-
3. Drop the same
|
|
110
|
+
3. Drop the same 7 files into Project files
|
|
113
111
|
4. Same conversation starters work.
|
|
114
112
|
|
|
115
113
|
---
|
|
@@ -133,9 +131,8 @@ audit https://example.com for AI visibility
|
|
|
133
131
|
2. Open [adapters/perplexity-space-instructions.md](adapters/perplexity-space-instructions.md), copy the block under `## Instructions (paste this)` → paste into the Space's instructions
|
|
134
132
|
3. Add to the Space library (Perplexity supports `.md`):
|
|
135
133
|
- `SKILL.md`
|
|
136
|
-
- All
|
|
134
|
+
- All 5 `core/*.md` files
|
|
137
135
|
- `prompts/universal-ai-seo-prompts.md`
|
|
138
|
-
- `sources/video-index.md`
|
|
139
136
|
4. Save.
|
|
140
137
|
|
|
141
138
|
**Why Perplexity is special:** it does live web search and cites every claim. Use it for *current-state* audits where you want fresh evidence (rank tracking, AI-answer surface, competitor backlinks).
|
package/README.md
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
> One portable SEO + AI-SEO/GEO skill that works the same way in **Claude**, **ChatGPT**, **Gemini**, **Perplexity**, and coding agents (**Cursor**, **Cline**, **Windsurf**, **Aider**).
|
|
4
4
|
|
|
5
5
|
[](LICENSE)
|
|
6
|
-
[](CHANGELOG.md)
|
|
7
7
|
[](https://www.npmjs.com/package/@piramilan/seo-expert)
|
|
8
8
|
[](SKILL.md)
|
|
9
9
|
|
|
10
|
-
A senior SEO + AI-search consultant in skill form. Diagnose before prescribing, return prioritized recommendations against a six-part output contract, and refuse fake-signal tactics. Built on
|
|
10
|
+
A senior SEO + AI-search consultant in skill form. Diagnose before prescribing, return prioritized recommendations against a six-part output contract, and refuse fake-signal tactics. Built on a set of hand-written, regularly maintained playbooks.
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
@@ -57,7 +57,7 @@ Every deliverable from the skill contains, in order:
|
|
|
57
57
|
3. **Concrete examples** — rewritten section, schema snippet, internal-link plan, or page template
|
|
58
58
|
4. **Verification steps** — tool, expected timeframe, signal to watch
|
|
59
59
|
5. **Risks, assumptions, dependencies**
|
|
60
|
-
6. **Source references** when
|
|
60
|
+
6. **Source references** when citing claims, stats, or third-party content
|
|
61
61
|
|
|
62
62
|
If a critical input is missing, the skill asks one specific question rather than guessing.
|
|
63
63
|
|
|
@@ -105,7 +105,7 @@ npx @piramilan/seo-expert help # full CLI usage
|
|
|
105
105
|
|
|
106
106
|
- If a target file (`.cursorrules`, `CONVENTIONS.md`, etc.) already exists, the CLI backs it up to `<file>.bak.<timestamp>` before writing.
|
|
107
107
|
- Clipboard copy works on macOS (`pbcopy`), Linux (`wl-copy` / `xclip` / `xsel`), and Windows (`clip`). If none are available, the CLI writes `seo-expert-adapter.md` to the current directory so you can copy it manually.
|
|
108
|
-
- Pin a specific version for reproducible setups: `npx @piramilan/seo-expert@0.
|
|
108
|
+
- Pin a specific version for reproducible setups: `npx @piramilan/seo-expert@0.3.0 install cursor`.
|
|
109
109
|
|
|
110
110
|
---
|
|
111
111
|
|
|
@@ -138,9 +138,7 @@ Restart Claude Code (or open a new conversation). Ask any SEO question — the s
|
|
|
138
138
|
- [core/content-strategy.md](core/content-strategy.md)
|
|
139
139
|
- [core/local-seo.md](core/local-seo.md)
|
|
140
140
|
- [core/programmatic-seo.md](core/programmatic-seo.md)
|
|
141
|
-
- [core/video-derived-lessons.md](core/video-derived-lessons.md)
|
|
142
141
|
- [prompts/universal-ai-seo-prompts.md](prompts/universal-ai-seo-prompts.md)
|
|
143
|
-
- [sources/video-index.md](sources/video-index.md)
|
|
144
142
|
4. Save.
|
|
145
143
|
|
|
146
144
|
**Test it:** `Audit https://example.com for SEO`
|
|
@@ -157,7 +155,7 @@ Restart Claude Code (or open a new conversation). Ask any SEO question — the s
|
|
|
157
155
|
- `Rewrite this page section for AI extractability: `
|
|
158
156
|
- `Build a content brief for the query: `
|
|
159
157
|
- `Plan programmatic pages for the pattern: `
|
|
160
|
-
5. **Knowledge** — upload the same
|
|
158
|
+
5. **Knowledge** — upload the same 7 files listed in the Claude Project section above.
|
|
161
159
|
6. **Capabilities** — enable Web Browsing (so the GPT can fetch URLs you give it). Code Interpreter is optional.
|
|
162
160
|
7. **Save** → publish to *Only me*, *Anyone with the link*, or *Everyone* (GPT Store).
|
|
163
161
|
|
|
@@ -182,7 +180,7 @@ Restart Claude Code (or open a new conversation). Ask any SEO question — the s
|
|
|
182
180
|
|
|
183
181
|
1. **[perplexity.ai](https://perplexity.ai) → Spaces → Create a Space**.
|
|
184
182
|
2. Open [adapters/perplexity-space-instructions.md](adapters/perplexity-space-instructions.md). Copy the block under **`## Instructions (paste this)`** → paste into the Space's instructions.
|
|
185
|
-
3. Add the
|
|
183
|
+
3. Add the 7 files (same list as the Claude Project section) to the Space library.
|
|
186
184
|
4. Save.
|
|
187
185
|
|
|
188
186
|
**Why Perplexity is special:** it does live web search and cites every claim. Use it for *current-state* audits where you want fresh evidence.
|
|
@@ -223,7 +221,7 @@ Run this prompt in any installed tool:
|
|
|
223
221
|
|
|
224
222
|
> Diagnose, then return the six-part output contract for `https://example.com`. Skip detailed recommendations — I just want to confirm the skill is wired up.
|
|
225
223
|
|
|
226
|
-
The response must contain six labeled sections: Diagnosis · Prioritized recommendations · Concrete examples · Verification steps · Risks/assumptions/dependencies · Source references. If any section is missing, the adapter wasn't fully pasted or the knowledge files weren't uploaded.
|
|
224
|
+
The response must contain six labeled sections: Diagnosis · Prioritized recommendations · Concrete examples · Verification steps · Risks/assumptions/dependencies · Source references (when applicable). If any section is missing, the adapter wasn't fully pasted or the knowledge files weren't uploaded.
|
|
227
225
|
|
|
228
226
|
---
|
|
229
227
|
|
|
@@ -240,7 +238,7 @@ When a new release cuts (see [CHANGELOG.md](CHANGELOG.md)):
|
|
|
240
238
|
Pin to a specific version for reproducible installs:
|
|
241
239
|
|
|
242
240
|
```bash
|
|
243
|
-
npx @piramilan/seo-expert@0.
|
|
241
|
+
npx @piramilan/seo-expert@0.3.0 install cursor
|
|
244
242
|
```
|
|
245
243
|
|
|
246
244
|
---
|
|
@@ -262,18 +260,15 @@ seo-expert/
|
|
|
262
260
|
│ ├── technical-seo.md ← crawl, index, schema, performance, Search Console
|
|
263
261
|
│ ├── content-strategy.md ← briefs, clusters, refresh, internal linking
|
|
264
262
|
│ ├── local-seo.md ← GBP, map pack, reviews, location pages
|
|
265
|
-
│
|
|
266
|
-
│ └── video-derived-lessons.md ← generated lessons by topic (with source links)
|
|
263
|
+
│ └── programmatic-seo.md ← templated page sets, validation, kill switches
|
|
267
264
|
├── prompts/
|
|
268
265
|
│ └── universal-ai-seo-prompts.md ← 9 ready-to-paste prompt templates
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
└── sources/
|
|
276
|
-
└── video-index.md ← public source-video metadata index
|
|
266
|
+
└── adapters/
|
|
267
|
+
├── claude-project-instructions.md
|
|
268
|
+
├── chatgpt-instructions.md
|
|
269
|
+
├── gemini-gem-instructions.md
|
|
270
|
+
├── perplexity-space-instructions.md
|
|
271
|
+
└── coding-agent-rules.md
|
|
277
272
|
```
|
|
278
273
|
|
|
279
274
|
---
|
|
@@ -307,13 +302,13 @@ No bought reviews · no faked map-pack engagement · no link farms · no hidden
|
|
|
307
302
|
> 3. Concrete HTML rewrites + JSON-LD blocks ready to ship
|
|
308
303
|
> 4. Verification steps (Rich Results Test, Search Console, GA4 filters)
|
|
309
304
|
> 5. Risks (schema-mismatch, thin pages, competitor positioning)
|
|
310
|
-
> 6. Source links
|
|
305
|
+
> 6. Source links for any cited stats or third-party content
|
|
311
306
|
|
|
312
307
|
---
|
|
313
308
|
|
|
314
309
|
## Versioning, contributing, license
|
|
315
310
|
|
|
316
|
-
**Semver.** See [CHANGELOG.md](CHANGELOG.md). Pin to a tag (`v0.
|
|
311
|
+
**Semver.** See [CHANGELOG.md](CHANGELOG.md). Pin to a tag (`v0.3.0`) or to an npm version (`@piramilan/seo-expert@0.3.0`) if you want a stable surface.
|
|
317
312
|
|
|
318
313
|
**Contributing.** Issues and PRs welcome. Useful contributions: new playbooks (`core/*.md`), new adapters (a new AI tool), new prompt templates (`prompts/*.md`), and edits that tighten existing guidance. Keep the six-part Output Contract intact — that's the skill's identity. See `.github/PULL_REQUEST_TEMPLATE.md` for the checklist.
|
|
319
314
|
|
package/SKILL.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: seo-expert
|
|
3
3
|
description: SEO and AI-SEO/GEO consultant for any AI tool or coding agent. Use when the user wants an SEO audit, content brief, page rewrite, technical-SEO fix, schema plan, local SEO plan, programmatic SEO plan, or AI-visibility strategy across ChatGPT, Perplexity, Gemini, Claude, Copilot, and Google AI Overviews. Returns prioritized, source-backed, implementation-ready recommendations.
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
license: see LICENSE if present; treat content as reference material
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -9,7 +9,7 @@ license: see LICENSE if present; treat content as reference material
|
|
|
9
9
|
|
|
10
10
|
One portable SEO + AI-SEO/GEO skill that works the same way in Claude (Code, Projects, Desktop), ChatGPT (GPTs, Projects), Gemini Gems, Perplexity Spaces, and coding agents (Cursor, Cline, Windsurf, Aider).
|
|
11
11
|
|
|
12
|
-
The skill produces concrete, source-aware, implementation-ready work — not generic advice. It is built on hand-written
|
|
12
|
+
The skill produces concrete, source-aware, implementation-ready work — not generic advice. It is built on a set of hand-written, regularly maintained playbooks that compress senior SEO consulting practice into a portable, auditable skill.
|
|
13
13
|
|
|
14
14
|
---
|
|
15
15
|
|
|
@@ -37,7 +37,7 @@ Phrases that should trigger it: "audit my site", "why am I not ranking", "fix my
|
|
|
37
37
|
For every request, follow these six steps in order. Do not skip diagnosis.
|
|
38
38
|
|
|
39
39
|
1. **Classify the task.** Map the request to one of: `audit`, `content-brief`, `page-rewrite`, `technical-fix`, `schema-plan`, `local-plan`, `programmatic-plan`, `ai-visibility`, `measurement`, `authority`.
|
|
40
|
-
2. **Read the relevant playbook(s)** from `core/` (see routing table below).
|
|
40
|
+
2. **Read the relevant playbook(s)** from `core/` (see routing table below). Open more than one when the task crosses concerns (e.g., a page rewrite touches both `ai-seo-operating-system.md` and `content-strategy.md`).
|
|
41
41
|
3. **Diagnose the current state.** Target queries, existing pages, competitors, SERP features, AI answers, citations, crawl/index status. State assumptions explicitly when data is missing.
|
|
42
42
|
4. **Map intent and entities.** Audience problem, primary entity, related entities, decision criteria, proof needed for trust.
|
|
43
43
|
5. **Produce the deliverable** using the Output Contract below.
|
|
@@ -95,7 +95,7 @@ Every deliverable this skill produces includes, in this order:
|
|
|
95
95
|
3. **Concrete examples**: at least one rewritten section, schema snippet, internal-link plan, or page template — not just guidance.
|
|
96
96
|
4. **Verification steps**: how the user (or an agent) can confirm the change worked. Tools (Search Console, Rich Results Test, Schema Validator, GA4 filters, manual LLM prompts), expected timeframe, and the signal to watch.
|
|
97
97
|
5. **Risks, assumptions, and dependencies**: what could break, what you assumed, what the user must provide for the work to proceed.
|
|
98
|
-
6. **Source references** when
|
|
98
|
+
6. **Source references** when citing statistics, definitions, or third-party content — link the source and summarize the claim in one line.
|
|
99
99
|
|
|
100
100
|
Do not return generic SEO checklists. Do not pad with definitions the user did not ask for. If you cannot complete a section because a critical input is missing, say so and ask one specific question.
|
|
101
101
|
|
|
@@ -103,8 +103,8 @@ Do not return generic SEO checklists. Do not pad with definitions the user did n
|
|
|
103
103
|
|
|
104
104
|
## Guardrails
|
|
105
105
|
|
|
106
|
-
- **No
|
|
107
|
-
- **No
|
|
106
|
+
- **No legal, medical, or financial advice.** The playbooks are operational SEO guidance, not regulated-domain advice.
|
|
107
|
+
- **No third-party content reproduction.** Summarize and link sources; do not paste long passages from copyrighted material.
|
|
108
108
|
- **No fake signals.** Do not recommend buying reviews, faking map-pack engagement at scale, link farms, hidden text, doorway pages, or generated-content spam. The penalty risk is higher than the upside, and modern AI systems detect these patterns.
|
|
109
109
|
- **No keyword stuffing.** Recommend extractable, useful content. Density-style advice is obsolete.
|
|
110
110
|
- **Respect the entity, not the channel.** If the user runs a brand, the recommendations should strengthen the brand entity across the open web (site, Wikipedia/Wikidata where applicable, reputable directories, communities) — not just one channel.
|
|
@@ -133,11 +133,6 @@ For environments without a file system (ChatGPT GPT, Gemini Gem, Perplexity Spac
|
|
|
133
133
|
- `SKILL.md` — this file (canonical entry point).
|
|
134
134
|
- `core/*.md` — the depth playbooks. Stable, hand-written.
|
|
135
135
|
- `prompts/universal-ai-seo-prompts.md` — ready-to-use prompt templates.
|
|
136
|
-
- `sources/video-index.md` — public metadata index of source videos.
|
|
137
|
-
- `core/video-derived-lessons.md` — generated lessons keyed by topic, with source links.
|
|
138
136
|
- `adapters/*.md` — environment-specific instruction blobs.
|
|
139
|
-
- `scripts/` — generators (YouTube backfill + skill-pack regeneration).
|
|
140
|
-
- `data/*.jsonl` — public derived data (titles, statuses, derived notes). No raw transcripts.
|
|
141
|
-
- `private/` — local-only raw transcript cache. Excluded from git. Never read or publish from here.
|
|
142
137
|
|
|
143
138
|
Keep `SKILL.md` and the adapters in sync when you update guidance. The `core/*.md` files are the source of truth for depth; everything else is routing and packaging.
|
|
@@ -13,7 +13,7 @@ Engage on any of: SEO audit, content brief, page rewrite, technical-SEO fix, sch
|
|
|
13
13
|
|
|
14
14
|
### Universal flow (every task)
|
|
15
15
|
1. **Classify the task** into one of the categories above.
|
|
16
|
-
2. **Read the relevant knowledge file(s).** Use `SKILL.md` as the routing table. For depth, open the matching `core/*.md` playbook.
|
|
16
|
+
2. **Read the relevant knowledge file(s).** Use `SKILL.md` as the routing table. For depth, open the matching `core/*.md` playbook. Open more than one when the task crosses concerns.
|
|
17
17
|
3. **Diagnose before prescribing.** If you don't have a URL, query, or business detail you need, ask one targeted question or state your assumption explicitly.
|
|
18
18
|
4. **Map intent and entities.** Name the primary entity, related entities, decision criteria, and proof needed for trust.
|
|
19
19
|
5. **Produce the deliverable** in the Output Contract format below.
|
|
@@ -27,7 +27,7 @@ Engage on any of: SEO audit, content brief, page rewrite, technical-SEO fix, sch
|
|
|
27
27
|
- **Separate AI visibility from traditional ranking** when both are in scope — the failure modes differ.
|
|
28
28
|
- **Conversion, not vanity.** Tie every recommendation to a business outcome (calls, leads, signups, revenue), not just rankings or traffic.
|
|
29
29
|
- **No fake signals.** Reject requests for bought reviews, faked map-pack engagement, link farms, hidden text, doorway pages, or generated-content spam. Recommend the durable equivalent instead.
|
|
30
|
-
- **No
|
|
30
|
+
- **No third-party content reproduction.** Summarize and link sources; do not paste long passages from copyrighted material.
|
|
31
31
|
|
|
32
32
|
### Output Contract (every deliverable)
|
|
33
33
|
1. **Diagnosis** — what you observed, what's missing, what's assumed.
|
|
@@ -35,7 +35,7 @@ Engage on any of: SEO audit, content brief, page rewrite, technical-SEO fix, sch
|
|
|
35
35
|
3. **Concrete examples** — at least one rewritten section, schema snippet, internal-link plan, or page template.
|
|
36
36
|
4. **Verification steps** — tools, expected timeframe, signal to watch.
|
|
37
37
|
5. **Risks, assumptions, dependencies** — what could break, what you assumed, what the user must provide.
|
|
38
|
-
6. **Source references** — when
|
|
38
|
+
6. **Source references** — when citing statistics, definitions, or third-party content, link the source and summarize in one line.
|
|
39
39
|
|
|
40
40
|
If a critical input is missing, ask one specific question rather than guessing.
|
|
41
41
|
|
|
@@ -51,11 +51,7 @@ Required:
|
|
|
51
51
|
- `core/content-strategy.md`
|
|
52
52
|
- `core/local-seo.md`
|
|
53
53
|
- `core/programmatic-seo.md`
|
|
54
|
-
- `core/video-derived-lessons.md`
|
|
55
54
|
- `prompts/universal-ai-seo-prompts.md`
|
|
56
|
-
- `sources/video-index.md`
|
|
57
|
-
|
|
58
|
-
Do not upload anything from `private/`.
|
|
59
55
|
|
|
60
56
|
## Conversation starters (suggested)
|
|
61
57
|
|
|
@@ -15,7 +15,7 @@ Engage on any of: SEO audit, content brief, page rewrite, technical-SEO fix, sch
|
|
|
15
15
|
|
|
16
16
|
### Universal flow (every task)
|
|
17
17
|
1. **Classify the task.**
|
|
18
|
-
2. **Read the relevant knowledge file(s).** `SKILL.md` is the routing table. For depth, open the matching `core/*.md` playbook.
|
|
18
|
+
2. **Read the relevant knowledge file(s).** `SKILL.md` is the routing table. For depth, open the matching `core/*.md` playbook. Open more than one when the task crosses concerns.
|
|
19
19
|
3. **Diagnose before prescribing.** If a needed input (URL, query, business detail) is missing, ask one targeted question or state your assumption explicitly.
|
|
20
20
|
4. **Map intent and entities.**
|
|
21
21
|
5. **Produce the deliverable** in the Output Contract format below.
|
|
@@ -29,7 +29,7 @@ Engage on any of: SEO audit, content brief, page rewrite, technical-SEO fix, sch
|
|
|
29
29
|
- **Separate AI visibility from traditional ranking** when both are in scope.
|
|
30
30
|
- **Conversion, not vanity** — every recommendation maps to a business outcome.
|
|
31
31
|
- **No fake signals** — refuse bought reviews, faked map-pack engagement, link farms, hidden text, doorway pages, generated-content spam.
|
|
32
|
-
- **No
|
|
32
|
+
- **No third-party content reproduction** — summarize and link sources; do not paste long passages from copyrighted material.
|
|
33
33
|
|
|
34
34
|
### Output Contract (every deliverable)
|
|
35
35
|
1. **Diagnosis** — what you observed, what's missing, what's assumed.
|
|
@@ -37,7 +37,7 @@ Engage on any of: SEO audit, content brief, page rewrite, technical-SEO fix, sch
|
|
|
37
37
|
3. **Concrete examples** — at least one rewritten section, schema snippet, internal-link plan, or page template.
|
|
38
38
|
4. **Verification steps** — tools, expected timeframe, signal to watch.
|
|
39
39
|
5. **Risks, assumptions, dependencies.**
|
|
40
|
-
6. **Source references** when
|
|
40
|
+
6. **Source references** when citing statistics, definitions, or third-party content.
|
|
41
41
|
|
|
42
42
|
If a critical input is missing, ask one specific question rather than guessing.
|
|
43
43
|
|
|
@@ -53,8 +53,4 @@ Required:
|
|
|
53
53
|
- `core/content-strategy.md`
|
|
54
54
|
- `core/local-seo.md`
|
|
55
55
|
- `core/programmatic-seo.md`
|
|
56
|
-
- `core/video-derived-lessons.md`
|
|
57
56
|
- `prompts/universal-ai-seo-prompts.md`
|
|
58
|
-
- `sources/video-index.md`
|
|
59
|
-
|
|
60
|
-
Do not add anything from `private/`.
|
|
@@ -30,7 +30,7 @@ You are operating as an **SEO Expert** when the user's task touches SEO surfaces
|
|
|
30
30
|
- **Canonical and `noindex` discipline.** Filtered, sorted, paginated, and empty-state variants must be canonical/noindex'd. Programmatic generators must ship with this logic.
|
|
31
31
|
- **Internal links carry intent.** Anchor text describes the destination's intent. Boilerplate "click here" wastes the signal.
|
|
32
32
|
- **No fake signals.** Do not add hidden text, doorway pages, cloaking, or scripted engagement. If asked to, refuse and recommend the durable equivalent.
|
|
33
|
-
- **No
|
|
33
|
+
- **No third-party content reproduction.** Summarize and link sources; do not paste long passages from copyrighted material into commits or generated pages.
|
|
34
34
|
|
|
35
35
|
### Output Contract (when explaining a change)
|
|
36
36
|
1. What you changed and why (1–3 bullets).
|
|
@@ -29,7 +29,7 @@ Engage on any of: SEO audit, content brief, page rewrite, technical-SEO fix, sch
|
|
|
29
29
|
- Separate AI visibility from traditional ranking when both are in scope.
|
|
30
30
|
- Tie every recommendation to a business outcome.
|
|
31
31
|
- No fake signals (no bought reviews, faked engagement, link farms, hidden text, doorway pages, content spam).
|
|
32
|
-
- No reproduction
|
|
32
|
+
- No third-party content reproduction; summarize and link sources, do not paste long passages from copyrighted material.
|
|
33
33
|
|
|
34
34
|
### Output Contract (every deliverable)
|
|
35
35
|
1. **Diagnosis** — observations, gaps, assumptions.
|
|
@@ -37,7 +37,7 @@ Engage on any of: SEO audit, content brief, page rewrite, technical-SEO fix, sch
|
|
|
37
37
|
3. **Concrete examples** — at least one rewritten section, schema snippet, internal-link plan, or page template.
|
|
38
38
|
4. **Verification steps** — tools, timeframe, signal to watch.
|
|
39
39
|
5. **Risks, assumptions, dependencies.**
|
|
40
|
-
6. **Source references** when
|
|
40
|
+
6. **Source references** when citing statistics, definitions, or third-party content (link the source; summarize in one line).
|
|
41
41
|
|
|
42
42
|
If a critical input is missing, ask one specific question rather than guessing.
|
|
43
43
|
|
|
@@ -53,5 +53,3 @@ Since Gems do not support attached files the same way as Custom GPTs, copy the c
|
|
|
53
53
|
- `core/content-strategy.md`
|
|
54
54
|
- `core/local-seo.md`
|
|
55
55
|
- `core/programmatic-seo.md`
|
|
56
|
-
|
|
57
|
-
The video-derived lessons (`core/video-derived-lessons.md`) are large — paste excerpts on demand rather than embedding wholesale.
|
|
@@ -27,7 +27,7 @@ Engage on any of: SEO audit, content brief, page rewrite, technical-SEO fix, sch
|
|
|
27
27
|
- Separate AI visibility from traditional ranking when both are in scope.
|
|
28
28
|
- Tie every recommendation to a business outcome.
|
|
29
29
|
- No fake signals.
|
|
30
|
-
- No reproduction
|
|
30
|
+
- No third-party content reproduction; summarize and link sources, do not paste long passages from copyrighted material.
|
|
31
31
|
|
|
32
32
|
### Output Contract (every deliverable)
|
|
33
33
|
1. **Diagnosis** — with linked evidence from the web where applicable.
|
|
@@ -49,8 +49,4 @@ Required:
|
|
|
49
49
|
- `core/content-strategy.md`
|
|
50
50
|
- `core/local-seo.md`
|
|
51
51
|
- `core/programmatic-seo.md`
|
|
52
|
-
- `core/video-derived-lessons.md`
|
|
53
|
-
- `sources/video-index.md`
|
|
54
52
|
- `prompts/universal-ai-seo-prompts.md`
|
|
55
|
-
|
|
56
|
-
Do not add anything from `private/`.
|
package/bin/seo-expert.js
CHANGED
|
@@ -72,7 +72,7 @@ const TOOLS = {
|
|
|
72
72
|
label: 'Claude Code',
|
|
73
73
|
kind: 'skill-dir',
|
|
74
74
|
target: path.join(os.homedir(), '.claude', 'skills', 'seo-expert'),
|
|
75
|
-
sources: ['SKILL.md', 'core', 'prompts', 'adapters'
|
|
75
|
+
sources: ['SKILL.md', 'core', 'prompts', 'adapters'],
|
|
76
76
|
note: 'Anthropic CLI — installs to ~/.claude/skills/seo-expert/',
|
|
77
77
|
},
|
|
78
78
|
'claude-project': {
|
|
@@ -82,7 +82,7 @@ const TOOLS = {
|
|
|
82
82
|
instructions: [
|
|
83
83
|
'1. Go to claude.ai → New Project',
|
|
84
84
|
'2. Paste the copied text into Custom instructions',
|
|
85
|
-
'3. Upload to Project knowledge: SKILL.md, core/*.md, prompts
|
|
85
|
+
'3. Upload to Project knowledge: SKILL.md, all core/*.md files, and prompts/universal-ai-seo-prompts.md',
|
|
86
86
|
],
|
|
87
87
|
},
|
|
88
88
|
chatgpt: {
|
|
@@ -39,7 +39,7 @@ Every AI tool using this repo should produce:
|
|
|
39
39
|
- Specific page or content examples.
|
|
40
40
|
- Verification steps.
|
|
41
41
|
- Risks, assumptions, and dependencies.
|
|
42
|
-
- Source references when
|
|
42
|
+
- Source references when citing statistics, definitions, or third-party content.
|
|
43
43
|
|
|
44
44
|
## Measuring AI Search Surface
|
|
45
45
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@piramilan/seo-expert",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Portable SEO + AI-SEO/GEO skill for Claude, ChatGPT, Gemini, Perplexity, and coding agents (Cursor, Cline, Windsurf, Aider).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"seo",
|
|
@@ -42,8 +42,7 @@
|
|
|
42
42
|
"LICENSE",
|
|
43
43
|
"core/",
|
|
44
44
|
"prompts/",
|
|
45
|
-
"adapters/"
|
|
46
|
-
"sources/"
|
|
45
|
+
"adapters/"
|
|
47
46
|
],
|
|
48
47
|
"engines": {
|
|
49
48
|
"node": ">=18.0.0"
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
# Video-Derived AI SEO Lessons
|
|
2
|
-
|
|
3
|
-
Generated: 2026-05-13T17:10:37+00:00
|
|
4
|
-
|
|
5
|
-
Use these as source-linked operating principles. They are derived notes, not transcript republication.
|
|
6
|
-
|
|
7
|
-
## Topic Coverage
|
|
8
|
-
|
|
9
|
-
- `general_seo`: 825 source video(s)
|
|
10
|
-
- `content_strategy`: 185 source video(s)
|
|
11
|
-
- `authority_signals`: 100 source video(s)
|
|
12
|
-
- `conversion_seo`: 76 source video(s)
|
|
13
|
-
- `ai_seo_geo`: 60 source video(s)
|
|
14
|
-
- `technical_seo`: 48 source video(s)
|
|
15
|
-
- `local_seo`: 43 source video(s)
|
|
16
|
-
- `programmatic_seo`: 8 source video(s)
|
|
17
|
-
|
|
18
|
-
## Operating Principles
|
|
19
|
-
|
|
20
|
-
### AI SEO / GEO
|
|
21
|
-
- Make claims easy for AI systems to extract, cite, and verify with clear entities, direct answers, and source-backed proof.
|
|
22
|
-
- Recurring terms to inspect in related work: chatgpt, google, seo, https, heytony, audit, com, rank.
|
|
23
|
-
- Source videos: [CduVCb9By1k](https://www.youtube.com/watch?v=CduVCb9By1k), [OH7UJFaTfko](https://www.youtube.com/watch?v=OH7UJFaTfko), [2JrcV2E7L1Y](https://www.youtube.com/watch?v=2JrcV2E7L1Y), [cNTl_x_cnS8](https://www.youtube.com/watch?v=cNTl_x_cnS8), [15CCl7Osv8Y](https://www.youtube.com/watch?v=15CCl7Osv8Y), [5nWP89AlcAc](https://www.youtube.com/watch?v=5nWP89AlcAc), [_UQeZKr136k](https://www.youtube.com/watch?v=_UQeZKr136k), [TzjELQQVIPQ](https://www.youtube.com/watch?v=TzjELQQVIPQ)
|
|
24
|
-
|
|
25
|
-
### Authority Signals
|
|
26
|
-
- Build visible trust through reviews, citations, backlinks, expertise, and consistent brand signals.
|
|
27
|
-
- Recurring terms to inspect in related work: backlinks, https, seo, google, heytony, audit, com, free.
|
|
28
|
-
- Source videos: [ukHPtXOS6rA](https://www.youtube.com/watch?v=ukHPtXOS6rA), [OH7UJFaTfko](https://www.youtube.com/watch?v=OH7UJFaTfko), [JtmoqvUmzq0](https://www.youtube.com/watch?v=JtmoqvUmzq0), [ez6ZCM5kMgY](https://www.youtube.com/watch?v=ez6ZCM5kMgY), [Sd27zXjfqTo](https://www.youtube.com/watch?v=Sd27zXjfqTo), [3rBfJagQT24](https://www.youtube.com/watch?v=3rBfJagQT24), [cNTl_x_cnS8](https://www.youtube.com/watch?v=cNTl_x_cnS8), [Zfefiqwn8Cw](https://www.youtube.com/watch?v=Zfefiqwn8Cw)
|
|
29
|
-
|
|
30
|
-
### Content Strategy
|
|
31
|
-
- Map content to search intent and topical authority instead of publishing isolated keyword posts.
|
|
32
|
-
- Recurring terms to inspect in related work: seo, https, heytony, google, audit, content, com, contentmarketing.
|
|
33
|
-
- Source videos: [CduVCb9By1k](https://www.youtube.com/watch?v=CduVCb9By1k), [OH7UJFaTfko](https://www.youtube.com/watch?v=OH7UJFaTfko), [JtmoqvUmzq0](https://www.youtube.com/watch?v=JtmoqvUmzq0), [2JrcV2E7L1Y](https://www.youtube.com/watch?v=2JrcV2E7L1Y), [ez6ZCM5kMgY](https://www.youtube.com/watch?v=ez6ZCM5kMgY), [1sJ3pgnTdso](https://www.youtube.com/watch?v=1sJ3pgnTdso), [cNTl_x_cnS8](https://www.youtube.com/watch?v=cNTl_x_cnS8), [15CCl7Osv8Y](https://www.youtube.com/watch?v=15CCl7Osv8Y)
|
|
34
|
-
|
|
35
|
-
### Conversion SEO
|
|
36
|
-
- Measure SEO by qualified leads and revenue outcomes, not only rankings or traffic.
|
|
37
|
-
- Recurring terms to inspect in related work: seo, google, https, heytony, audit, com, business, customers.
|
|
38
|
-
- Source videos: [CduVCb9By1k](https://www.youtube.com/watch?v=CduVCb9By1k), [Jj_S37QBYtU](https://www.youtube.com/watch?v=Jj_S37QBYtU), [OH7UJFaTfko](https://www.youtube.com/watch?v=OH7UJFaTfko), [ez6ZCM5kMgY](https://www.youtube.com/watch?v=ez6ZCM5kMgY), [Sd27zXjfqTo](https://www.youtube.com/watch?v=Sd27zXjfqTo), [1sJ3pgnTdso](https://www.youtube.com/watch?v=1sJ3pgnTdso), [3rBfJagQT24](https://www.youtube.com/watch?v=3rBfJagQT24), [cNTl_x_cnS8](https://www.youtube.com/watch?v=cNTl_x_cnS8)
|
|
39
|
-
|
|
40
|
-
### General SEO
|
|
41
|
-
- Turn each SEO recommendation into a concrete page, content, or technical change that can be verified.
|
|
42
|
-
- Recurring terms to inspect in related work: seo, google, rank, website, don, free, business, doing.
|
|
43
|
-
- Source videos: [LcusOQdYsk4](https://www.youtube.com/watch?v=LcusOQdYsk4), [Z2M2wTvSACc](https://www.youtube.com/watch?v=Z2M2wTvSACc), [GQjfS6m1noc](https://www.youtube.com/watch?v=GQjfS6m1noc), [4PhZ0j9XyZU](https://www.youtube.com/watch?v=4PhZ0j9XyZU), [XSxU3U9TfPg](https://www.youtube.com/watch?v=XSxU3U9TfPg), [stQP8dIzf50](https://www.youtube.com/watch?v=stQP8dIzf50), [vmFRkaIn3n4](https://www.youtube.com/watch?v=vmFRkaIn3n4), [yr8VokbcCJE](https://www.youtube.com/watch?v=yr8VokbcCJE)
|
|
44
|
-
|
|
45
|
-
### Local SEO
|
|
46
|
-
- Tie local SEO work to calls, reviews, service-area relevance, and Google Business Profile trust signals.
|
|
47
|
-
- Recurring terms to inspect in related work: seo, heytony, google, https, audit, business, com, local.
|
|
48
|
-
- Source videos: [Jj_S37QBYtU](https://www.youtube.com/watch?v=Jj_S37QBYtU), [ez6ZCM5kMgY](https://www.youtube.com/watch?v=ez6ZCM5kMgY), [Sd27zXjfqTo](https://www.youtube.com/watch?v=Sd27zXjfqTo), [3rBfJagQT24](https://www.youtube.com/watch?v=3rBfJagQT24), [15CCl7Osv8Y](https://www.youtube.com/watch?v=15CCl7Osv8Y), [GG-uUzzkf-s](https://www.youtube.com/watch?v=GG-uUzzkf-s), [1dzTGLd5o9s](https://www.youtube.com/watch?v=1dzTGLd5o9s), [vr_LgnOq4tw](https://www.youtube.com/watch?v=vr_LgnOq4tw)
|
|
49
|
-
|
|
50
|
-
### Programmatic SEO
|
|
51
|
-
- Use repeatable templates only when each page has unique, useful data and a real search intent.
|
|
52
|
-
- Recurring terms to inspect in related work: seo, https, business, heytony, audit, com, here, local.
|
|
53
|
-
- Source videos: [RXxEWOVxmaM](https://www.youtube.com/watch?v=RXxEWOVxmaM), [Lpp5QdHFk80](https://www.youtube.com/watch?v=Lpp5QdHFk80), [UbCIxwN-nuY](https://www.youtube.com/watch?v=UbCIxwN-nuY), [opq02e3crQs](https://www.youtube.com/watch?v=opq02e3crQs), [MXMkQQp1mwc](https://www.youtube.com/watch?v=MXMkQQp1mwc), [TQy39akurjI](https://www.youtube.com/watch?v=TQy39akurjI), [nKP8gdVxYJk](https://www.youtube.com/watch?v=nKP8gdVxYJk), [7enXdUR3f80](https://www.youtube.com/watch?v=7enXdUR3f80)
|
|
54
|
-
|
|
55
|
-
### Technical SEO
|
|
56
|
-
- Fix crawlability, indexing, internal links, schema, and site structure before scaling content volume.
|
|
57
|
-
- Recurring terms to inspect in related work: seo, google, com, https, website, heytony, audit, here.
|
|
58
|
-
- Source videos: [OH7UJFaTfko](https://www.youtube.com/watch?v=OH7UJFaTfko), [2JrcV2E7L1Y](https://www.youtube.com/watch?v=2JrcV2E7L1Y), [Zfefiqwn8Cw](https://www.youtube.com/watch?v=Zfefiqwn8Cw), [x1dTCLdWs94](https://www.youtube.com/watch?v=x1dTCLdWs94), [2F-6cf-7HJQ](https://www.youtube.com/watch?v=2F-6cf-7HJQ), [mUNrRcnIn7Q](https://www.youtube.com/watch?v=mUNrRcnIn7Q), [pBAufJMSHtE](https://www.youtube.com/watch?v=pBAufJMSHtE), [vr_LgnOq4tw](https://www.youtube.com/watch?v=vr_LgnOq4tw)
|
|
59
|
-
|
|
60
|
-
## Prompt Seeds
|
|
61
|
-
|
|
62
|
-
- **It only took 6 months 😲**: Use the SEO lesson from 'It only took 6 months 😲' to audit a page for general seo. Return prioritized fixes, examples, and verification steps.
|
|
63
|
-
- **SEO on easy mode 😲**: Use the SEO lesson from 'SEO on easy mode 😲' to audit a page for ai seo geo, content strategy, conversion seo. Return prioritized fixes, examples, and verification steps.
|
|
64
|
-
- **Google loves these signals**: Use the SEO lesson from 'Google loves these signals' to audit a page for authority signals. Return prioritized fixes, examples, and verification steps.
|
|
65
|
-
- **This will get your phone ringing 😲**: Use the SEO lesson from 'This will get your phone ringing 😲' to audit a page for local seo, conversion seo. Return prioritized fixes, examples, and verification steps.
|
|
66
|
-
- **Their sales grew 500% 😲**: Use the SEO lesson from 'Their sales grew 500% 😲' to audit a page for ai seo geo, technical seo, content strategy, conversion seo, authority signals. Return prioritized fixes, examples, and verification steps.
|
|
67
|
-
- **This is insane 🤯**: Use the SEO lesson from 'This is insane 🤯' to audit a page for content strategy, authority signals. Return prioritized fixes, examples, and verification steps.
|
|
68
|
-
- **And he’s fully booked**: Use the SEO lesson from 'And he’s fully booked' to audit a page for ai seo geo, technical seo, content strategy. Return prioritized fixes, examples, and verification steps.
|
|
69
|
-
- **Why Your Google Reviews Are Disappearing (And How to Stop It)**: Use the SEO lesson from 'Why Your Google Reviews Are Disappearing (And How to Stop It)' to audit a page for local seo, content strategy, conversion seo, authority signals. Return prioritized fixes, examples, and verification steps.
|
|
70
|
-
- **You’re likely doing this right now…**: Use the SEO lesson from 'You’re likely doing this right now…' to audit a page for local seo, conversion seo, authority signals. Return prioritized fixes, examples, and verification steps.
|
|
71
|
-
- **Forget SEO**: Use the SEO lesson from 'Forget SEO' to audit a page for content strategy, conversion seo. Return prioritized fixes, examples, and verification steps.
|
|
72
|
-
- **This is BS**: Use the SEO lesson from 'This is BS' to audit a page for local seo, conversion seo, authority signals. Return prioritized fixes, examples, and verification steps.
|
|
73
|
-
- **He knows NOTHING about SEO 😲**: Use the SEO lesson from 'He knows NOTHING about SEO 😲' to audit a page for ai seo geo, content strategy, conversion seo, authority signals. Return prioritized fixes, examples, and verification steps.
|
|
74
|
-
- **Get More Leads From Google. 1 Hour a Week.**: Use the SEO lesson from 'Get More Leads From Google. 1 Hour a Week.' to audit a page for ai seo geo, local seo, content strategy, conversion seo. Return prioritized fixes, examples, and verification steps.
|
|
75
|
-
- **SEO is a lot faster and easier than you think!**: Use the SEO lesson from 'SEO is a lot faster and easier than you think!' to audit a page for ai seo geo, content strategy. Return prioritized fixes, examples, and verification steps.
|
|
76
|
-
- **Anyone can do this 😲**: Use the SEO lesson from 'Anyone can do this 😲' to audit a page for technical seo, content strategy, conversion seo, authority signals. Return prioritized fixes, examples, and verification steps.
|
|
77
|
-
- **This site just broke Google 😲**: Use the SEO lesson from 'This site just broke Google 😲' to audit a page for ai seo geo, content strategy, conversion seo, authority signals. Return prioritized fixes, examples, and verification steps.
|
|
78
|
-
- **FORCE Google to rank your site**: Use the SEO lesson from 'FORCE Google to rank your site' to audit a page for content strategy. Return prioritized fixes, examples, and verification steps.
|
|
79
|
-
- **He promised not to get mad 🤣**: Use the SEO lesson from 'He promised not to get mad 🤣' to audit a page for content strategy, conversion seo, authority signals. Return prioritized fixes, examples, and verification steps.
|
|
80
|
-
- **He knows NOTHING about SEO 🤯**: Use the SEO lesson from 'He knows NOTHING about SEO 🤯' to audit a page for ai seo geo, content strategy, conversion seo, authority signals. Return prioritized fixes, examples, and verification steps.
|
|
81
|
-
- **I’m ditching ChatGPT omg**: Use the SEO lesson from 'I’m ditching ChatGPT omg' to audit a page for ai seo geo, content strategy. Return prioritized fixes, examples, and verification steps.
|
|
82
|
-
- **Why is no one talking about this?**: Use the SEO lesson from 'Why is no one talking about this?' to audit a page for content strategy, authority signals. Return prioritized fixes, examples, and verification steps.
|
|
83
|
-
- **The best ChatGPT prompt ever?**: Use the SEO lesson from 'The best ChatGPT prompt ever?' to audit a page for ai seo geo. Return prioritized fixes, examples, and verification steps.
|
|
84
|
-
- **Do you remember this ad?**: Use the SEO lesson from 'Do you remember this ad?' to audit a page for general seo. Return prioritized fixes, examples, and verification steps.
|
|
85
|
-
- **Set up ChatGPT tracking in GA4 (google analytics)**: Use the SEO lesson from 'Set up ChatGPT tracking in GA4 (google analytics)' to audit a page for ai seo geo. Return prioritized fixes, examples, and verification steps.
|
|
86
|
-
- **How to submit your sitemap on google search console**: Use the SEO lesson from 'How to submit your sitemap on google search console' to audit a page for technical seo, content strategy. Return prioritized fixes, examples, and verification steps.
|
|
87
|
-
- **10x your website traffic for free**: Use the SEO lesson from '10x your website traffic for free' to audit a page for technical seo, content strategy. Return prioritized fixes, examples, and verification steps.
|
|
88
|
-
- **This isn’t cheating, it’s just smart.**: Use the SEO lesson from 'This isn’t cheating, it’s just smart.' to audit a page for local seo, content strategy. Return prioritized fixes, examples, and verification steps.
|
|
89
|
-
- **You can’t unlearn this**: Use the SEO lesson from 'You can’t unlearn this' to audit a page for authority signals. Return prioritized fixes, examples, and verification steps.
|
|
90
|
-
- **Should we be scared?**: Use the SEO lesson from 'Should we be scared?' to audit a page for conversion seo. Return prioritized fixes, examples, and verification steps.
|
|
91
|
-
- **Google just DESTROYED ChatGPT**: Use the SEO lesson from 'Google just DESTROYED ChatGPT' to audit a page for ai seo geo, content strategy. Return prioritized fixes, examples, and verification steps.
|
|
92
|
-
- **This works too well**: Use the SEO lesson from 'This works too well' to audit a page for general seo. Return prioritized fixes, examples, and verification steps.
|
|
93
|
-
- **ChatGPT is launching ads… here’s what you need to know.**: Use the SEO lesson from 'ChatGPT is launching ads… here’s what you need to know.' to audit a page for ai seo geo. Return prioritized fixes, examples, and verification steps.
|
|
94
|
-
- **Force Google to know about your site**: Use the SEO lesson from 'Force Google to know about your site' to audit a page for technical seo. Return prioritized fixes, examples, and verification steps.
|
|
95
|
-
- **Canva just destroyed Photoshop**: Use the SEO lesson from 'Canva just destroyed Photoshop' to audit a page for ai seo geo, content strategy. Return prioritized fixes, examples, and verification steps.
|
|
96
|
-
- **It’s kind of scary**: Use the SEO lesson from 'It’s kind of scary' to audit a page for content strategy. Return prioritized fixes, examples, and verification steps.
|