technical-seo
Use this skill to implement technical SEO optimizations in code — meta tags, schema markup, Core Web Vitals, crawlability, robots.txt, sitemaps, and GEO (Generative Engine Optimization) for AI search engines. This is the implementation skill — for strategy see seo, for content writing see seo-content, for auditing see seo-audit.
Best use case
technical-seo is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Use this skill to implement technical SEO optimizations in code — meta tags, schema markup, Core Web Vitals, crawlability, robots.txt, sitemaps, and GEO (Generative Engine Optimization) for AI search engines. This is the implementation skill — for strategy see seo, for content writing see seo-content, for auditing see seo-audit.
Teams using technical-seo should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/technical-seo/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How technical-seo Compares
| Feature / Agent | technical-seo | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Use this skill to implement technical SEO optimizations in code — meta tags, schema markup, Core Web Vitals, crawlability, robots.txt, sitemaps, and GEO (Generative Engine Optimization) for AI search engines. This is the implementation skill — for strategy see seo, for content writing see seo-content, for auditing see seo-audit.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
Best AI Agents for Marketing
A curated list of the best AI agents and skills for marketing teams focused on SEO, content systems, outreach, and campaign execution.
SKILL.md Source
# Technical SEO Implementation This skill is the implementation reference for technical SEO. Use it when you need to add, fix, or optimize SEO elements in code — meta tags, schema markup, Core Web Vitals, crawlability, and GEO. This skill covers **how to implement in code**. For the other SEO concerns: - **seo** — Strategy and planning (keyword research, content architecture, what to build) - **seo-content** — Writing content (briefs, humanized prose, SERP feature targeting) - **seo-audit** — Auditing an existing codebase (scan, diagnose, produce action plan) --- ## Metadata Every indexable page needs these elements correct: - **Title tag:** 50-60 chars, primary keyword front-loaded - **Meta description:** 120-155 chars, includes CTA - **Canonical:** self-referencing or correct target - **Robots:** no accidental noindex - **Open Graph:** og:title, og:description, og:image for social sharing For detailed specs and code examples, see [ON-PAGE-SEO.md](ON-PAGE-SEO.md). ## HTML Structure - Exactly one H1 per page, contains primary keyword - No skipped header levels (H1 → H2 → H3) - Semantic HTML: `<header>`, `<nav>`, `<main>`, `<article>`, `<section>` ## Crawlability - robots.txt exists, not blocking important paths - XML sitemap exists, all important URLs included - Canonical tags on every page - No orphan pages, proper internal linking For detailed crawlability checklist, see [TECHNICAL-AUDIT.md](TECHNICAL-AUDIT.md). ## Core Web Vitals Target metrics (2026 thresholds): | Metric | Good | Needs Improvement | Poor | |--------|------|-------------------|------| | **LCP** (Largest Contentful Paint) | ≤ 2.5s | 2.5s - 4s | > 4s | | **INP** (Interaction to Next Paint) | ≤ 200ms | 200ms - 500ms | > 500ms | | **CLS** (Cumulative Layout Shift) | ≤ 0.1 | 0.1 - 0.25 | > 0.25 | **Note**: INP replaced FID as a Core Web Vital in March 2024. For optimization techniques (LCP, INP, CLS), see [TECHNICAL-AUDIT.md](TECHNICAL-AUDIT.md). ## E-E-A-T & Schema | Signal | Implementation | |--------|----------------| | **Experience** | First-hand testing, case studies, original photos | | **Expertise** | Author credentials, certifications | | **Authoritativeness** | Quality backlinks, industry mentions | | **Trustworthiness** | HTTPS, contact info, privacy policy, citations | Required JSON-LD schema: Organization, WebSite, Article/BlogPosting, FAQPage, BreadcrumbList, Person (author). For schema code examples and author bio templates, see [EEAT-AND-SCHEMA.md](EEAT-AND-SCHEMA.md). ## GEO (Generative Engine Optimization) Optimize for AI-powered search engines: | Aspect | Traditional SEO | GEO | |--------|----------------|-----| | **Goal** | Rank in search results | Be cited in AI answers | | **Success Metric** | Click-through rate | Citation frequency | | **Approach** | Keywords, backlinks | Entity clarity, authority signals | | **Optimization** | Pages and snippets | Citable facts and answers | For GEO techniques, llms.txt implementation, and AI crawler management, see [GEO.md](GEO.md). --- ## Fix Priorities When issues are identified, fix in this order: ### Priority 1: Critical (Fix Immediately) - 404 errors and broken links - Missing or duplicate title tags - Broken canonical tags - noindex on important pages - HTTPS/security issues - Blocked by robots.txt ### Priority 2: High (Fix Within 1 Week) - Core Web Vitals failures - Missing meta descriptions - Multiple H1 tags - Missing alt text on key images - Orphan pages (no internal links) - Missing schema markup ### Priority 3: Medium (Fix Within 1 Month) - Thin content pages - Header hierarchy issues - Internal link optimization - Image optimization (format, compression) - Anchor text improvements - Content freshness updates ### Priority 4: Low (Ongoing Optimization) - A/B testing improvements - Advanced schema types - International SEO expansion - New content for topic clusters - Competitive gap analysis --- ## Post-Fix Validation After applying fixes: 1. **Re-crawl** the affected pages 2. **Verify** DOM changes are live 3. **Check** robots.txt isn't blocking new paths 4. **Validate** schema with Google's Rich Results Test 5. **Test** Core Web Vitals with Lighthouse 6. **Monitor** Search Console for indexing issues --- ## Monitoring Cadence **Daily:** Check Search Console for crawl errors. Monitor site uptime. Review security alerts. **Weekly:** Review Core Web Vitals trends. Check for new 404s. Monitor AI referral traffic. Review ranking changes. **Monthly:** Full technical audit. Content freshness review. Backlink profile analysis. Schema validation. **Quarterly:** Full SEO strategy review. GEO performance analysis. Content gap analysis. --- ## Quick Reference ### SEO Specifications | Element | Specification | |---------|---------------| | Title Tag | 50-60 chars, keyword front-loaded | | Meta Description | 120-155 chars, includes CTA | | H1 | Exactly 1 per page, contains keyword | | URL | Lowercase, hyphens, descriptive | | Images | WebP/AVIF, <200KB, alt text, dimensions | | Canonical | Self-referencing on every page | | robots.txt | Allow important paths, block admin | | Sitemap | All indexable URLs, lastmod dates | ### GEO Checklist | Element | Required | |---------|----------| | FAQPage Schema | Yes | | Answer-first content | Yes | | Statistics with sources | Yes | | Expert quotes | Recommended | | TL;DR blocks | Recommended | | llms.txt | Recommended | | Fresh content (<90 days) | Yes | --- ## Supporting Files - [TECHNICAL-AUDIT.md](TECHNICAL-AUDIT.md) — Core Web Vitals optimization, crawlability, mobile-first, HTTPS - [ON-PAGE-SEO.md](ON-PAGE-SEO.md) — Title tags, meta descriptions, headers, images, internal linking - [EEAT-AND-SCHEMA.md](EEAT-AND-SCHEMA.md) — E-E-A-T implementation, schema markup library (JSON-LD) - [GEO.md](GEO.md) — Generative Engine Optimization, llms.txt, AI crawlers, framework-specific SEO --- ## Version History - **v3.0** (March 2026): Reframed as implementation reference (auditing moved to seo-audit skill), added cross-references to seo-content and seo skills, standardized meta description spec to 120-155 chars - **v2.0** (December 2025): Added GEO section, AI crawler management, llms.txt, GA4 AI tracking, updated Core Web Vitals (INP), expanded schema library, framework-specific guides - **v1.0** (December 2024): Initial version with technical audit, on-page SEO, basic schema
Related Skills
validate
Use this skill when the user needs to validate a business idea, test demand before building, run a smoke test, create an MVP experiment, or decide whether an idea is worth pursuing. Covers demand validation, smoke tests, fake-door tests, landing page experiments, and go/no-go decision frameworks for bootstrapped founders.
ux-design
Use this skill when flows feel clunky, users are confused, navigation needs planning, onboarding needs design, or accessibility needs implementation. Covers information architecture, user flows, interaction patterns, progressive disclosure, and error handling UX.
ui-patterns
Use this skill when the user needs to build a dashboard, settings page, data table, or any page layout. Also use when choosing component libraries, implementing responsive design, dark mode, or handling UI states (loading, empty, error). Covers component selection, page composition, and responsive implementation.
translate
Use this skill when the user is a domain expert (lawyer, doctor, contractor, accountant, etc.) who wants to turn their professional knowledge into a software product. Also use when the user says 'I have an idea for my industry,' 'I know this problem exists,' 'I want to build something for [profession],' or is struggling to describe what they want the software to do. Helps identify which professional pain is worth building for, then translates it into requirements AI tools can execute.
test
Use this skill when the user needs to test features before deployment, create test scenarios, find edge cases, or verify bug fixes. Covers manual testing workflows, cross-browser testing, edge case identification, and testing checklists for non-technical founders.
support
Use this skill when the user needs to create help docs, build a knowledge base, set up self-serve support, or reduce support tickets. Covers documentation strategy, help center structure, support tone, and scaling support without hiring.
social-media
Use this skill when the user needs to grow a social media presence, create content for Twitter/X, LinkedIn, or other platforms, build a founder brand, or use social media as a distribution channel. Covers platform strategy, content frameworks, posting cadence, and audience building for bootstrapped SaaS founders.
seo
Use this skill when the user needs to plan SEO content, do keyword research, build a content calendar, map search intent to page types, or create an internal linking strategy. Also use when the user says 'how do I rank higher,' 'what should I write about for SEO,' 'SEO plan,' 'what keywords should I target,' or 'how to get organic traffic.' This is the strategy and planning skill — for writing content see seo-content, for technical implementation see technical-seo, for auditing see seo-audit.
seo-content
Use this skill when the user needs to write SEO content — blog posts, landing pages, feature pages, comparison pages, how-to guides, or any content meant to rank in search and get cited by AI. Covers content briefs, humanized writing that avoids AI detection, SERP feature targeting, entity optimization, content refresh, and quality self-checks. This is the writing skill — for strategy see seo, for technical implementation see technical-seo, for auditing see seo-audit.
seo-audit
Audit a codebase for SEO and AI-answer visibility, then produce a prioritized fix-it plan. Use this skill whenever a user says things like "audit my SEO", "check my site for search visibility", "how do I rank better", "optimize for Google", "optimize for AI answers", "SEO review", "GEO audit", "run the SEO agent", or anything about improving organic traffic or search rankings. Also trigger when someone mentions wanting visibility in AI-generated answers (ChatGPT, Gemini, Perplexity, Claude). Works on any web project — static sites, Next.js, Astro, Hugo, WordPress themes, or anything that outputs HTML.
secure
Use this skill when the user needs to secure their SaaS app, implement authentication, protect user data, secure APIs, or check for vulnerabilities. Also use when the user says 'is my app secure,' 'security check,' 'I'm worried about hackers,' 'how do I protect user data,' or 'security before launch.' Covers OWASP Top 10, auth best practices, data protection, and security checklists for apps built with AI tools.
sales
Use this skill when the user needs to find their first customers, write cold outreach, build a prospect list, or close early sales. Covers founder-led sales methodology, outreach templates, personalization, LinkedIn strategy, and landing the first 100 customers.