agentsclimarketplace

Seo featured snippets

Skill fusengine/agents/plugins/seo/skills/seo-featured-snippets

Use when optimizing for position 0 featured snippets and AI Overviews. Covers paragraph, list, table, and video snippet recipes with format-specific HTML patterns.From its SKILL.md

Install
npx -y skills add fusengine/agents --skill seo-featured-snippets

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 22 stars22 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.6 KB, 402 tokens by cl100k_base, as published. Nobody here has run it

Featured Snippets (Position 0)

Snippet Types

TypeFormatTrigger Queries
Paragraph40-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"
VideoYouTube 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")

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.