agent-creator
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
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.
/seo-technicalContext 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.
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>
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
A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.
Repo: fusengine/agents
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Use when starting ANY development task -- feature, bug fix, refactor, hotfix (triggers: implement, create, build, fix, add feature, refactor, develop).
Use when creating a feature/component or adding functionality. Fires BEFORE APEX Analyze to refine requirements via structured questioning.
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…
Use when validating code quality after modifications -- SOLID compliance, DRY duplication, linter errors, architecture violations. Do NOT use for functional…
Use when an expert agent self-reviews and self-corrects code after the Execute phase, before sniper validation (BMAD-METHOD elicitation techniques).