/seo-technical
Use when auditing technical SEO — robots.txt, sitemap.xml, Core Web Vitals, crawlability, indexability.
$ npx -y skills add fusengine/agents --skill seo-technical --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/seo-technical
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when auditing technical SEO — robots.txt, sitemap.xml, Core Web Vitals, crawlability, indexability.
SKILL.md
seo-technical.SKILL.mdname: seo-technical
description: Use when auditing technical SEO — robots.txt, sitemap.xml, Core Web Vitals, crawlability, indexability.
user-invocable: false
related-skills: seo, seo-sitemap, seo-redirects, seo-hreflang
<objective> Runs a technical SEO audit: fetches and validates robots.txt (`scripts/parse-robots.ts`) and sitemap.xml (`scripts/parse-sitemap.ts`), measures Core Web Vitals via a local Lighthouse wrapper (`scripts/check-cwv.ts` — LCP <2.5s, INP <200ms, CLS <0.1), verifies mobile-first signals, and checks HTTPS/HSTS/redirect chains plus indexability (robots.txt not blocking critical paths, no stray `noindex`, canonical pointing to an indexable URL, no `nofollow` on internal navigation). Does not cover content quality (seo-content), schema (seo-schema), or local-specific signals (seo-local). </objective>
Technical SEO
Workflow
1. Fetch `/robots.txt` → `scripts/parse-robots.ts` 2. Fetch `/sitemap.xml` → `scripts/parse-sitemap.ts` 3. Run Lighthouse locally → `scripts/check-cwv.ts <url>` 4. Verify mobile-first signals (viewport, responsive images) 5. Check HTTPS, HSTS, redirects chains
Core Web Vitals (2026)
- **LCP**: < 2.5s
- **INP**: < 200ms (replaced FID March 2024)
- **CLS**: < 0.1
Indexability Checks
- `robots.txt` doesn't block critical paths
- `<meta name="robots">` not `noindex` on important pages
- Canonical points to indexable URL
- No `nofollow` on internal navigation
References
- `skills/seo/05-technical-seo/` (core-web-vitals, crawlability, mobile-first, structured-data-testing)
Read more
name: seo-technical description: Use when auditing technical SEO — robots.txt, sitemap.xml, Core Web Vitals, crawlability, indexability. user-invocable: false related-skills: seo, seo-sitemap, seo-redirects, seo-hreflang
<objective> Runs a technical SEO audit: fetches and validates robots.txt (`scripts/parse-robots.ts`) and sitemap.xml (`scripts/parse-sitemap.ts`), measures Core Web Vitals via a local Lighthouse wrapper (`scripts/check-cwv.ts` — LCP <2.5s, INP <200ms, CLS <0.1), verifies mobile-first signals, and checks HTTPS/HSTS/redirect chains plus indexability (robots.txt not blocking critical paths, no stray `noindex`, canonical pointing to an indexable URL, no `nofollow` on internal navigation). Does not cover content quality (seo-content), schema (seo-schema), or local-specific signals (seo-local). </objective>
Technical SEO
Workflow
1. Fetch `/robots.txt` → `scripts/parse-robots.ts` 2. Fetch `/sitemap.xml` → `scripts/parse-sitemap.ts` 3. Run Lighthouse locally → `scripts/check-cwv.ts <url>` 4. Verify mobile-first signals (viewport, responsive images) 5. Check HTTPS, HSTS, redirects chains
Core Web Vitals (2026)
- **LCP**: < 2.5s
- **INP**: < 200ms (replaced FID March 2024)
- **CLS**: < 0.1
Indexability Checks
- `robots.txt` doesn't block critical paths
- `<meta name="robots">` not `noindex` on important pages
- Canonical points to indexable URL
- No `nofollow` on internal navigation
References
- `skills/seo/05-technical-seo/` (core-web-vitals, crawlability, mobile-first, structured-data-testing)
A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.
Repo: fusengine/agents
Other skills on fusengine-agents.
- /agent-creator
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Open skill - /apex-methodology
Use when starting ANY development task -- feature, bug fix, refactor, hotfix (triggers: implement, create, build, fix, add feature, refactor, develop).
Open skill - /brainstorming
Use when creating a feature/component or adding functionality. Fires BEFORE APEX Analyze to refine requirements via structured questioning.
Open skill - /challenge
Use before a root-cause, done/verified claim, irreversible action, or 2nd-time fix reaches the owner (APEX or plain conversation); also fires at every eLicit/Verify gate. Not for code correctness (use sniper).
Open skill - /code-quality
Use when validating code quality after modifications -- SOLID compliance, DRY duplication, linter errors, architecture violations. Do NOT use for functional verification (run verification FIRST, then code-quality).
Open skill - /elicitation
Use when an expert agent self-reviews and self-corrects code after the Execute phase, before sniper validation (BMAD-METHOD elicitation techniques).
Open skill

