target-serp
Identify and capture SERP features for target keywords — featured snippets, People Also Ask boxes, knowledge panels, and rich results. Use when the user asks about featured snippets, position zero, PAA optimization, rich results, schema markup for SERP features, or how to get more SERP real estate.
What this skill does
# Target SERP
Identify and capture featured snippets, People Also Ask boxes, knowledge panels,
and rich results for target keywords.
## SERP Feature Types
| Feature | Trigger | Content Format Needed |
|---------|---------|----------------------|
| Featured Snippet (paragraph) | "What is", "how does", definitional queries | 40-60 word direct answer under an H2/H3 matching the query |
| Featured Snippet (list) | "How to", "steps to", "best", "top" | Ordered or unordered list with H2/H3 heading |
| Featured Snippet (table) | Comparison, pricing, specs queries | HTML `<table>` with clear headers |
| People Also Ask | Most informational queries | Concise answer (2-3 sentences) under an H2 that matches the PAA question |
| Knowledge Panel | Brand/entity queries | Structured data (Organization, Person), Wikipedia presence, consistent NAP |
| Rich Results (FAQ) | Pages with FAQ content | FAQPage schema markup |
| Rich Results (How-To) | Tutorial/instructional pages | HowTo schema markup |
| Rich Results (Review) | Product/service review pages | Review/AggregateRating schema markup |
| Rich Results (Breadcrumb) | Any page with hierarchy | BreadcrumbList schema markup |
| Sitelinks | Brand queries | Clear site structure, descriptive navigation, internal linking |
## SERP Feature Prioritization Matrix
Not all SERP features are equally valuable. Use this to decide where to invest effort:
| SERP Feature | Traffic Impact | Effort to Win | Best For |
|-------------|--------------|--------------|---------|
| Featured Snippet | Very High | Medium | Informational content sites |
| AI Overview citation | High (growing) | Medium-High | Authority/expertise sites |
| People Also Ask | Medium-High | Low-Medium | FAQ-rich content |
| Video Carousel | High | High | Tutorial/how-to content |
| Local Pack | Very High (local) | Medium | Local businesses |
| Rich Results (Review) | Medium-High | Low-Medium | Product/service reviews |
| Image Pack | Medium | Low-Medium | Visual content creators |
| Shopping Results | Very High (ecommerce) | Medium | Product sellers |
| Knowledge Panel | Medium (brand) | High (long-term) | Established brands |
### Feature Combination Patterns
When multiple features appear together, optimize for the combination:
| Combination | Opportunity |
|------------|------------|
| AI Overview + Featured Snippet | Optimize for both — structured content with clear answers wins both slots |
| Video + PAA + Featured Snippet | Create a comprehensive guide with video and FAQ section |
| Shopping + Ads + Reviews | Product optimization + review schema + merchant feed |
| PAA only (no snippet) | Snippet opportunity — create snippet-optimized content to claim it |
| AI Overview only (no snippet) | Structured, authoritative content with cited data gets AI inclusion |
### AI Overview vs Traditional SERP Strategy
| Query Type | Traditional Strategy | AI-Era Strategy |
|-----------|---------------------|-----------------|
| Informational | Win featured snippet | Win AI Overview citation AND featured snippet |
| Comparison | Create comparison content | Create structured comparison tables with clear verdicts |
| Definition | Write clear definition for snippet | Write authoritative, citable definition with evidence |
| How-to | Create step-by-step list | Create steps with unique insights AI can synthesize |
Traditional features reward **format optimization**. AI Overviews reward **authority and uniqueness**.
## Step 1: Audit Current SERP Features
For each target keyword:
1. **Search the keyword** and document which SERP features appear
2. **Note who currently holds each feature** (which domain, what content format)
3. **Check if your site already appears** in any feature for this keyword
4. **Assess winnability** — can you match or beat the current holder's content format?
| Keyword | Feature Present | Current Holder | Your Page | Winnable? |
|---------|----------------|---------------|-----------|-----------|
| ... | Featured snippet (paragraph) | competitor.com | /blog/topic | Yes — need better answer |
| ... | PAA (3 questions) | various | No page | Yes — create FAQ section |
| ... | Knowledge panel | — | — | No — need Wikipedia presence |
## Step 2: Featured Snippet Optimization
Featured snippets pull content directly from pages. To win them:
### Paragraph Snippets
- Place a concise answer (40-60 words) directly under an H2 or H3 that matches the query
- Start with a definition or direct statement: "[Topic] is..."
- Follow the snippet-bait with expanded detail (Google wants the page to have depth, not just a snippet)
### List Snippets
- Use a proper HTML ordered or unordered list
- H2 heading should match the query: "How to [do thing]" or "Best [category]"
- 5-8 list items (Google rarely shows more)
- Each item should be a concise, scannable phrase
### Table Snippets
- Use semantic HTML `<table>` with `<thead>` and `<tbody>`
- Column headers should be descriptive
- Keep to 3-5 columns, 4-8 rows
- Include the query keyword in the table caption or preceding heading
### Snippet Optimization Checklist
- [ ] H2/H3 heading matches the target query exactly or closely
- [ ] Answer appears in the first paragraph after the heading
- [ ] Answer is self-contained (makes sense without surrounding context)
- [ ] Page already ranks on page 1 for the keyword (snippets almost always come from page 1 results)
- [ ] Content format matches what Google currently shows (paragraph, list, or table)
## Step 3: People Also Ask Optimization
PAA boxes appear on a large share of informational searches. To capture them:
1. **Collect PAA questions** for your target keywords
2. **Add an FAQ section** to relevant pages using the exact question as an H2 or H3
3. **Answer in 2-3 sentences** directly under the heading
4. **Mark up with FAQPage schema** for rich result eligibility
PAA answers should be:
- Direct and concise (no "great question!" preamble)
- Factually accurate
- Self-contained (answer stands alone)
## Step 4: Schema Markup
Add structured data for rich result eligibility.
**Important:** Google significantly restricted FAQ rich results in August 2023. FAQPage
schema now only generates rich results for well-known government and health authority
sites. For most sites, FAQ schema still helps AI systems extract Q&A content but will
not produce visible rich results in Google SERPs.
### FAQPage (AI extraction — not visual rich results for most sites)
```json
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "What is [topic]?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Direct answer here."
}
}]
}
```
### HowTo
For step-by-step content. Include `name`, `step` array with `HowToStep`, `estimatedCost`, and `totalTime`:
```json
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "How to [do thing]",
"totalTime": "PT30M",
"step": [{
"@type": "HowToStep",
"name": "Step 1 title",
"text": "Step 1 description",
"image": "https://example.com/step1.jpg"
}]
}
```
### Article
For blog posts and guides: include `headline`, `datePublished`, `dateModified`, `author`, `image`.
### BreadcrumbList
For every page with hierarchical navigation: define the path from home to current page.
### VideoObject
For pages with embedded videos — enables video rich results and video carousels:
```json
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Video title",
"description": "Video description",
"thumbnailUrl": "https://example.com/thumb.jpg",
"uploadDate": "2026-01-15",
"duration": "PT5M30S",
"contentUrl": "https://example.com/video.mp4"
}
```
### Dataset
For pages with original research or data — surfaces in Google Dataset Search:
```json
{
"@context": "https://schema.org",
"@type": "Dataset",
"name": "Dataset title",
"description": "What this dataset contains",
"creator": { "@type": "Organization", "name": "Your BranRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.