/digital-marketing-pro:programmatic-seo
Purpose
Plan and audit SEO pages generated at scale from structured data sources (databases, APIs, CSV/JSON files). Enforces quality gates to prevent thin content penalties, index bloat, and Google's Scaled Content Abuse policy.
Input Required
The user must provide (or will be prompted for):
- URL or data source: Existing programmatic pages to audit, or data source details for planning
- Page type: What kind of pages are being generated (location, product, integration, glossary, template, tool)
- Data source: CSV/JSON files, API endpoints, database queries — or existing pages to analyze
- Target scale: How many pages will be generated
- Current status: New build or auditing existing programmatic pages
Process
- Load brand context: Read
~/.claude-marketing/brands/_active-brand.json for the active slug, then load ~/.claude-marketing/brands/{slug}/profile.json. Apply industry context and compliance rules. Check for brand guidelines at ~/.claude-marketing/brands/{slug}/guidelines/_manifest.json.
- Data source assessment: Evaluate the data powering programmatic pages — row count, column uniqueness, missing values, duplicate detection (>80% field overlap), data freshness
- Template engine planning: Design templates that produce genuinely unique pages — variable injection points, content blocks (static vs dynamic), conditional logic, supplementary content. Validate each page passes the "standalone value test"
- URL pattern strategy: Design URL hierarchy — lowercase hyphenated slugs, logical structure, uniqueness enforcement, under 100 characters, consistent trailing slash
- Internal linking automation: Hub/spoke model, related items (3-5 per page), breadcrumbs with BreadcrumbList schema, cross-linking by shared attributes, varied anchor text
- Thin content safeguard check: Apply quality gates (see below)
- Canonical strategy: Self-referencing canonicals, parameter handling, pagination strategy, manual page priority
- Sitemap integration: Auto-generate entries, split at 50K URLs,
<lastmod> from actual data timestamps, exclude noindexed pages
- Index bloat prevention: Noindex low-value pages, pagination handling, faceted navigation canonicalization, crawl budget monitoring for 10K+ pages
- Score and report: Score each dimension, produce prioritized action plan
Quality Gates
Scale Thresholds
| Metric |
Threshold |
Action |
| Pages without content review |
100+ |
WARNING: require content audit before publishing |
| Pages without justification |
500+ |
HARD STOP: require explicit user approval and thin content audit |
| Unique content per page |
<40% |
Flag as thin content (penalty risk) |
| Unique content per page |
<30% |
HARD STOP: scaled content abuse risk |
| Word count per page |
<300 |
Flag for review (may lack sufficient value) |
Scaled Content Abuse Context (2025-2026)
Google's Scaled Content Abuse policy (introduced March 2024) saw major enforcement escalation:
- June 2025: Wave of manual actions targeting AI-generated content at scale
- August 2025: SpamBrain update enhanced pattern detection for AI-generated link schemes and content farms
- Result: 45% reduction in low-quality, unoriginal content in search results
Enhanced quality gates for programmatic pages:
- Content differentiation: 30-40%+ of content must be genuinely unique between any two programmatic pages (not just city/keyword string replacement)
- Human review: Minimum 5-10% sample review of generated pages before publishing
- Progressive rollout: Publish in batches of 50-100 pages. Monitor indexing and rankings for 2-4 weeks before expanding. Never publish 500+ simultaneously without quality review.
- Standalone value test: Each page should pass: "Would this page be worth publishing even if no other similar pages existed?"
- Site reputation abuse: Publishing programmatic content under a high-authority domain (not your own) may trigger site reputation abuse penalties (enforced aggressively since November 2024)
Safe vs Risky Programmatic Pages
Safe at scale:
- Integration pages (with real setup docs, API details, screenshots)
- Template/tool pages (with downloadable content, usage instructions)
- Glossary pages (200+ word definitions with examples, related terms)
- Product pages (unique specs, reviews, comparison data)
- Data-driven pages (unique statistics, charts, analysis per record)
Penalty risk at scale:
- Location pages with only city name swapped in identical text
- "Best [tool] for [industry]" without industry-specific value
- "[Competitor] alternative" without real comparison data
- AI-generated pages without human review and unique value-add
- Pages where >60% of content is shared template boilerplate
Uniqueness Calculation
Unique content % = (words unique to this page) / (total words on page) x 100
Measured against all other pages in the programmatic set. Shared headers, footers, and navigation excluded. Template boilerplate IS included.
URL Pattern Library
Common Patterns
/tools/[tool-name]: Tool/product directory pages
/[city]/[service]: Location + service pages
/integrations/[platform]: Integration landing pages
/glossary/[term]: Definition/reference pages
/templates/[template-name]: Downloadable template pages
/compare/[product-a]-vs-[product-b]: Comparison pages
URL Rules
- Lowercase, hyphenated slugs derived from data
- Logical hierarchy reflecting site architecture
- No duplicate slugs — enforce uniqueness at generation time
- Keep URLs under 100 characters
- No query parameters for primary content URLs
- Consistent trailing slash usage (match existing site pattern)
Output
A structured programmatic SEO assessment containing:
Programmatic SEO Score: XX/100
| Category |
Status |
Score |
| Data Quality |
score |
/100 |
| Template Uniqueness |
score |
/100 |
| URL Structure |
score |
/100 |
| Internal Linking |
score |
/100 |
| Thin Content Risk |
score |
/100 |
| Index Management |
score |
/100 |
- Critical issues (fix immediately)
- High priority (fix within 1 week)
- Medium priority (fix within 1 month)
- Recommendations: data source improvements, template modifications, URL pattern adjustments, quality gate compliance actions
- Progressive rollout plan with batch sizes and monitoring checkpoints
Agents Used
- seo-specialist — Programmatic page analysis, quality gate enforcement, URL strategy, template evaluation
- content-creator — Template content design, uniqueness optimization
Scripts Used
- tech-seo-auditor.py — Check technical SEO issues across programmatic page samples
- content-scorer.py — Score content quality and uniqueness per template
- competitor-scraper.py — Analyze competitor programmatic page patterns
Source: hashgraph-online/awesome-codex-plugins → plugins/indranilbanerjee/digital-marketing-pro/skills/programmatic-seo/SKILL.md
1---2name: programmatic-seo-43description: Plan programmatic SEO pages. Use when: building template engines, URL patterns, thin content safeguards, or quality gates.4---5
6
7# /digital-marketing-pro:programmatic-seo
8
9## Purpose
10
11Plan and audit SEO pages generated at scale from structured data sources (databases, APIs, CSV/JSON files). Enforces quality gates to prevent thin content penalties, index bloat, and Google's Scaled Content Abuse policy.
12
13## Input Required
14
15The user must provide (or will be prompted for):
16
17- **URL or data source**: Existing programmatic pages to audit, or data source details for planning
18- **Page type**: What kind of pages are being generated (location, product, integration, glossary, template, tool)
19- **Data source**: CSV/JSON files, API endpoints, database queries — or existing pages to analyze
20- **Target scale**: How many pages will be generated
21- **Current status**: New build or auditing existing programmatic pages
22
23## Process
24
251. **Load brand context**: Read `~/.claude-marketing/brands/_active-brand.json` for the active slug, then load `~/.claude-marketing/brands/{slug}/profile.json`. Apply industry context and compliance rules. Check for brand guidelines at `~/.claude-marketing/brands/{slug}/guidelines/_manifest.json`.
262. **Data source assessment**: Evaluate the data powering programmatic pages — row count, column uniqueness, missing values, duplicate detection (>80% field overlap), data freshness
273. **Template engine planning**: Design templates that produce genuinely unique pages — variable injection points, content blocks (static vs dynamic), conditional logic, supplementary content. Validate each page passes the "standalone value test"
284. **URL pattern strategy**: Design URL hierarchy — lowercase hyphenated slugs, logical structure, uniqueness enforcement, under 100 characters, consistent trailing slash
295. **Internal linking automation**: Hub/spoke model, related items (3-5 per page), breadcrumbs with BreadcrumbList schema, cross-linking by shared attributes, varied anchor text
306. **Thin content safeguard check**: Apply quality gates (see below)
317. **Canonical strategy**: Self-referencing canonicals, parameter handling, pagination strategy, manual page priority
328. **Sitemap integration**: Auto-generate entries, split at 50K URLs, `<lastmod>` from actual data timestamps, exclude noindexed pages
339. **Index bloat prevention**: Noindex low-value pages, pagination handling, faceted navigation canonicalization, crawl budget monitoring for 10K+ pages
3410. **Score and report**: Score each dimension, produce prioritized action plan
35
36## Quality Gates
37
38### Scale Thresholds
39
40| Metric | Threshold | Action |
41|--------|-----------|--------|
42| Pages without content review | 100+ | WARNING: require content audit before publishing |
43| Pages without justification | 500+ | HARD STOP: require explicit user approval and thin content audit |
44| Unique content per page | <40% | Flag as thin content (penalty risk) |
45| Unique content per page | <30% | HARD STOP: scaled content abuse risk |
46| Word count per page | <300 | Flag for review (may lack sufficient value) |
47
48### Scaled Content Abuse Context (2025-2026)
49
50Google's Scaled Content Abuse policy (introduced March 2024) saw major enforcement escalation:
51
52- **June 2025**: Wave of manual actions targeting AI-generated content at scale
53- **August 2025**: SpamBrain update enhanced pattern detection for AI-generated link schemes and content farms
54- **Result**: 45% reduction in low-quality, unoriginal content in search results
55
56**Enhanced quality gates for programmatic pages:**
57
58- **Content differentiation**: 30-40%+ of content must be genuinely unique between any two programmatic pages (not just city/keyword string replacement)
59- **Human review**: Minimum 5-10% sample review of generated pages before publishing
60- **Progressive rollout**: Publish in batches of 50-100 pages. Monitor indexing and rankings for 2-4 weeks before expanding. Never publish 500+ simultaneously without quality review.
61- **Standalone value test**: Each page should pass: "Would this page be worth publishing even if no other similar pages existed?"
62- **Site reputation abuse**: Publishing programmatic content under a high-authority domain (not your own) may trigger site reputation abuse penalties (enforced aggressively since November 2024)
63
64### Safe vs Risky Programmatic Pages
65
66**Safe at scale:**
67- Integration pages (with real setup docs, API details, screenshots)
68- Template/tool pages (with downloadable content, usage instructions)
69- Glossary pages (200+ word definitions with examples, related terms)
70- Product pages (unique specs, reviews, comparison data)
71- Data-driven pages (unique statistics, charts, analysis per record)
72
73**Penalty risk at scale:**
74- Location pages with only city name swapped in identical text
75- "Best [tool] for [industry]" without industry-specific value
76- "[Competitor] alternative" without real comparison data
77- AI-generated pages without human review and unique value-add
78- Pages where >60% of content is shared template boilerplate
79
80### Uniqueness Calculation
81
82Unique content % = (words unique to this page) / (total words on page) x 100
83
84Measured against all other pages in the programmatic set. Shared headers, footers, and navigation excluded. Template boilerplate IS included.
85
86## URL Pattern Library
87
88### Common Patterns
89- `/tools/[tool-name]`: Tool/product directory pages
90- `/[city]/[service]`: Location + service pages
91- `/integrations/[platform]`: Integration landing pages
92- `/glossary/[term]`: Definition/reference pages
93- `/templates/[template-name]`: Downloadable template pages
94- `/compare/[product-a]-vs-[product-b]`: Comparison pages
95
96### URL Rules
97- Lowercase, hyphenated slugs derived from data
98- Logical hierarchy reflecting site architecture
99- No duplicate slugs — enforce uniqueness at generation time
100- Keep URLs under 100 characters
101- No query parameters for primary content URLs
102- Consistent trailing slash usage (match existing site pattern)
103
104## Output
105
106A structured programmatic SEO assessment containing:
107
108### Programmatic SEO Score: XX/100
109
110| Category | Status | Score |
111|----------|--------|-------|
112| Data Quality | score | /100 |
113| Template Uniqueness | score | /100 |
114| URL Structure | score | /100 |
115| Internal Linking | score | /100 |
116| Thin Content Risk | score | /100 |
117| Index Management | score | /100 |
118
119- Critical issues (fix immediately)
120- High priority (fix within 1 week)
121- Medium priority (fix within 1 month)
122- Recommendations: data source improvements, template modifications, URL pattern adjustments, quality gate compliance actions
123- Progressive rollout plan with batch sizes and monitoring checkpoints
124
125## Agents Used
126
127- **seo-specialist** — Programmatic page analysis, quality gate enforcement, URL strategy, template evaluation
128- **content-creator** — Template content design, uniqueness optimization
129
130## Scripts Used
131
132- **tech-seo-auditor.py** — Check technical SEO issues across programmatic page samples
133- **content-scorer.py** — Score content quality and uniqueness per template
134- **competitor-scraper.py** — Analyze competitor programmatic page patterns
135
136---
137
138**Source:** [`hashgraph-online/awesome-codex-plugins`](https://github.com/hashgraph-online/awesome-codex-plugins) → `plugins/indranilbanerjee/digital-marketing-pro/skills/programmatic-seo/SKILL.md`