$npx -y skills add norahe0304-art/30x-seo --skill 30x-seo-programmaticProgrammatic SEO planning and analysis for pages generated at scale from data sources. Covers template engines, URL patterns, internal linking automation, thin content safeguards, and index bloat prevention. Use when user says "programmatic SEO", "pages at scale", "dynamic pages"
| 1 | # Programmatic SEO Analysis & Planning |
| 2 | |
| 3 | Build and audit SEO pages generated at scale from structured data sources. |
| 4 | Enforces quality gates to prevent thin content penalties and index bloat. |
| 5 | |
| 6 | ## Data Source Assessment |
| 7 | |
| 8 | Evaluate the data powering programmatic pages: |
| 9 | - **CSV/JSON files**: Row count, column uniqueness, missing values |
| 10 | - **API endpoints**: Response structure, data freshness, rate limits |
| 11 | - **Database queries**: Record count, field completeness, update frequency |
| 12 | - Data quality checks: |
| 13 | - Each record must have enough unique attributes to generate distinct content |
| 14 | - Flag duplicate or near-duplicate records (>80% field overlap) |
| 15 | - Verify data freshness — stale data produces stale pages |
| 16 | |
| 17 | ## Template Engine Planning |
| 18 | |
| 19 | Design templates that produce unique, valuable pages: |
| 20 | - **Variable injection points**: Title, H1, body sections, meta description, schema |
| 21 | - **Content blocks**: Static (shared across pages) vs dynamic (unique per page) |
| 22 | - **Conditional logic**: Show/hide sections based on data availability |
| 23 | - **Supplementary content**: Related items, contextual tips, user-generated content |
| 24 | - Template review checklist: |
| 25 | - Each page must read as a standalone, valuable resource |
| 26 | - No "mad-libs" patterns (just swapping city/product names in identical text) |
| 27 | - Dynamic sections must add genuine information, not just keyword variations |
| 28 | |
| 29 | ## URL Pattern Strategy |
| 30 | |
| 31 | ### Common Patterns |
| 32 | - `/tools/[tool-name]` — Tool/product directory pages |
| 33 | - `/[city]/[service]` — Location + service pages |
| 34 | - `/integrations/[platform]` — Integration landing pages |
| 35 | - `/glossary/[term]` — Definition/reference pages |
| 36 | - `/templates/[template-name]` — Downloadable template pages |
| 37 | |
| 38 | ### URL Rules |
| 39 | - Lowercase, hyphenated slugs derived from data |
| 40 | - Logical hierarchy reflecting site architecture |
| 41 | - No duplicate slugs — enforce uniqueness at generation time |
| 42 | - Keep URLs under 100 characters |
| 43 | - No query parameters for primary content URLs |
| 44 | - Consistent trailing slash usage (match existing site pattern) |
| 45 | |
| 46 | ## Internal Linking Automation |
| 47 | |
| 48 | - **Hub/spoke model**: Category hub pages linking to individual programmatic pages |
| 49 | - **Related items**: Auto-link to 3-5 related pages based on data attributes |
| 50 | - **Breadcrumbs**: Generate BreadcrumbList schema from URL hierarchy |
| 51 | - **Cross-linking**: Link between programmatic pages sharing attributes (same category, same city, same feature) |
| 52 | - **Anchor text**: Use descriptive, varied anchor text — avoid exact-match keyword repetition |
| 53 | - Link density: 3-5 internal links per 1000 words (match seo-content guidelines) |
| 54 | |
| 55 | ## Thin Content Safeguards |
| 56 | |
| 57 | ### Quality Gates |
| 58 | |
| 59 | | Metric | Threshold | Action | |
| 60 | |--------|-----------|--------| |
| 61 | | Pages without content review | 100+ | ⚠️ WARNING — require content audit before publishing | |
| 62 | | Pages without justification | 500+ | 🛑 HARD STOP — require explicit user approval and thin content audit | |
| 63 | | Unique content per page | <40% | ❌ Flag as thin content — likely penalty risk | |
| 64 | | Word count per page | <300 | ⚠️ Flag for review — may lack sufficient value | |
| 65 | |
| 66 | ### Scaled Content Abuse — Enforcement Context (2025-2026) |
| 67 | |
| 68 | Google's Scaled Content Abuse policy (introduced March 2024) saw major enforcement escalation in 2025: |
| 69 | |
| 70 | - **June 2025:** Wave of manual actions targeting websites with AI-generated content at scale |
| 71 | - **August 2025:** SpamBrain spam update enhanced pattern detection for AI-generated link schemes and content farms |
| 72 | - **Result:** Google reported 45% reduction in low-quality, unoriginal content in search results post-March 2024 enforcement |
| 73 | |
| 74 | **Enhanced quality gates for programmatic pages:** |
| 75 | - **Content differentiation:** ≥30-40% of content must be genuinely unique between any two programmatic pages (not just city/keyword string replacement) |
| 76 | - **Human review:** Minimum 5-10% sample review of generated pages before publishing |
| 77 | - **Progressive rollout:** Publish in batches of 50-100 pages. Monitor indexing and rankings for 2-4 weeks before expanding. Never publish 500+ programmatic pages simultaneously without explicit quality review. |
| 78 | - **Standalone value test:** Each page should pass: "Would this page be worth publishing even if no other similar pages existed?" |
| 79 | - **Site reputation abuse:** If publishing programmatic content under a high-authority domain (not your own), this may trigger site reputation abuse penalties. Google began enforcing this aggressively in November 2024. |
| 80 | |
| 81 | > **Recommendation:** The WARNING gate at `<40% unique content` remains appropriate. Consider a HARD STOP at `<30%` unique content to prevent scaled content abuse risk. |
| 82 | |
| 83 | ### Safe Programmatic P |