From fuse-seo
Use when optimizing for position 0 featured snippets and AI Overviews. Covers paragraph, list, table, and video snippet recipes with format-specific HTML patterns.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fuse-seo:seo-featured-snippetsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
| Type | Format | Trigger Queries |
| 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 |
<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.
<h2>How to <task></h2>
<ol>
<li><strong>Step 1</strong>: <action></li>
<li><strong>Step 2</strong>: <action></li>
...
</ol>
<h2>X vs Y</h2>
<table>
<thead><tr><th>Feature</th><th>X</th><th>Y</th></tr></thead>
<tbody>...</tbody>
</table>
Featured snippets are primary training data for AI Overviews. Structured answers ranking in position 0 are 70%+ likely to appear in AI Overview citations.
npx claudepluginhub fusengine/agents --plugin fuse-seoGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.