/seo-featured-snippets
Use when optimizing for position 0 featured snippets and AI Overviews with format-specific HTML recipes.
$ npx -y skills add fusengine/agents --skill seo-featured-snippets --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-featured-snippets
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when optimizing for position 0 featured snippets and AI Overviews with format-specific HTML recipes.
SKILL.md
seo-featured-snippets.SKILL.mdname: seo-featured-snippets
description: Use when optimizing for position 0 featured snippets and AI Overviews with format-specific HTML recipes.
user-invocable: false
related-skills: seo, seo-geo, seo-content, seo-sxo
<objective> Provides format-specific HTML recipes for winning featured snippets (position 0): paragraph (40-60 word direct answer), list (ordered/unordered, 4-8 items), table (comparison data), and video (embed + timestamps) — each mapped to its trigger query patterns. Explains why featured snippets are primary AI Overview training data (70%+ citation correlation) and lists snippet anti-patterns (buried answer, vague intro, marketing language in the target passage). </objective>
Featured Snippets (Position 0)
Snippet Types
| Type | Format | Trigger Queries | |------|--------|-----------------| | Paragraph | 40-60 words, direct answer | "what is", "how to", "why" | | List | `<ol>` or `<ul>`, 4-8 items | "steps to", "ways to", "best" | | Table | `<table>`, comparison data | "X vs Y", "compare" | | Video | YouTube embed + timestamps | "how to" with visual benefit |
Paragraph Snippet Recipe
<h2>What is <topic>?</h2>
<p>
<topic> is a <category> that <main function>.
It <key benefit> by <method>.
Common use cases include <list>.
</p>
40-60 words, direct answer, no fluff, no marketing speak.
List Snippet Recipe
<h2>How to <task></h2>
<ol>
<li><strong>Step 1</strong>: <action></li>
<li><strong>Step 2</strong>: <action></li>
...
</ol>
Table Snippet Recipe
<h2>X vs Y</h2>
<table>
<thead><tr><th>Feature</th><th>X</th><th>Y</th></tr></thead>
<tbody>...</tbody>
</table>
AI Overviews Connection
Featured snippets are **primary training data** for AI Overviews. Structured answers ranking in position 0 are 70%+ likely to appear in AI Overview citations.
Anti-Patterns
- ❌ Hiding answer at bottom of article
- ❌ Vague intro paragraph ("In this article we'll explore...")
- ❌ Marketing in snippet target ("our amazing solution")
Read more
name: seo-featured-snippets description: Use when optimizing for position 0 featured snippets and AI Overviews with format-specific HTML recipes. user-invocable: false related-skills: seo, seo-geo, seo-content, seo-sxo
<objective> Provides format-specific HTML recipes for winning featured snippets (position 0): paragraph (40-60 word direct answer), list (ordered/unordered, 4-8 items), table (comparison data), and video (embed + timestamps) — each mapped to its trigger query patterns. Explains why featured snippets are primary AI Overview training data (70%+ citation correlation) and lists snippet anti-patterns (buried answer, vague intro, marketing language in the target passage). </objective>
Featured Snippets (Position 0)
Snippet Types
| Type | Format | Trigger Queries | |------|--------|-----------------| | Paragraph | 40-60 words, direct answer | "what is", "how to", "why" | | List | `<ol>` or `<ul>`, 4-8 items | "steps to", "ways to", "best" | | Table | `<table>`, comparison data | "X vs Y", "compare" | | Video | YouTube embed + timestamps | "how to" with visual benefit |
Paragraph Snippet Recipe
<h2>What is <topic>?</h2> <p> <topic> is a <category> that <main function>. It <key benefit> by <method>. Common use cases include <list>. </p>
40-60 words, direct answer, no fluff, no marketing speak.
List Snippet Recipe
<h2>How to <task></h2> <ol> <li><strong>Step 1</strong>: <action></li> <li><strong>Step 2</strong>: <action></li> ... </ol>
Table Snippet Recipe
<h2>X vs Y</h2> <table> <thead><tr><th>Feature</th><th>X</th><th>Y</th></tr></thead> <tbody>...</tbody> </table>
AI Overviews Connection
Featured snippets are **primary training data** for AI Overviews. Structured answers ranking in position 0 are 70%+ likely to appear in AI Overview citations.
Anti-Patterns
- ❌ Hiding answer at bottom of article
- ❌ Vague intro paragraph ("In this article we'll explore...")
- ❌ Marketing in snippet target ("our amazing solution")
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

