agentsclimarketplace

Serp analysis

Skill aAAaqwq/AGI-Super-Team/skills/serp-analysis

14 AI executives powered by legendary minds (Musk/Buffett/Simons/Feynman) — deploy your virtual C-Suite in one git clone.

Install
npx -y skills add aAAaqwq/AGI-Super-Team --skill serp-analysis

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

What its author says it does

Copied from the file, not written here

Analyze Google SERP (Search Engine Results Pages) — featured snippets, PAA (People Also Ask), AI Overview, knowledge panels, local packs. Detect AI Overview trigger conditions and optimize content to be cited by AI. Use when user asks to 'analyze SERP', 'check search results', 'AI Overview analysis', 'featured snippet optimization', 'PAA research', or 'how to get cited by Google AI'.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

5.0 KB, as published. Nobody here has run it

SERP Analysis Skill

Analyze and reverse-engineer Google Search Engine Results Pages to understand ranking patterns, featured snippet triggers, AI Overview conditions, and optimization opportunities.

When to Use

  • Analyzing SERP features for a keyword
  • Understanding AI Overview trigger conditions
  • Featured snippet optimization
  • People Also Ask (PAA) research
  • Competitor SERP position analysis
  • Local pack analysis

Capabilities

1. SERP Feature Detection

Identify all SERP features for a given query:

  • Featured Snippets (paragraph, list, table, video)
  • AI Overview / SGE (Google's AI-generated answers)
  • People Also Ask (PAA) boxes
  • Knowledge Panel
  • Local Pack (map results)
  • Image/Video carousels
  • Shopping results
  • Sitelinks

2. AI Overview Analysis

How to check if AI Overview triggers:

# Manual: Search on Google with the query
# Automated: Use SerpAPI or similar
curl -s "https://serpapi.com/search?q={query}&engine=google&api_key={key}" | python3 -c "
import json, sys
data = json.load(sys.stdin)
ai_overview = data.get('ai_overview', {})
if ai_overview:
    print('✅ AI Overview detected')
    print(f'Sources: {len(ai_overview.get(\"sources\", []))}')
    for s in ai_overview.get('sources', []):
        print(f'  - {s.get(\"title\")}: {s.get(\"link\")}')
else:
    print('❌ No AI Overview for this query')
"

AI Overview trigger conditions:

FactorTriggers AI OverviewDoesn't Trigger
Query typeInformational, how-toNavigational, exact-match
ComplexityMulti-step, comparisonSimple factual
IntentResearch, learningTransaction, login
Content availabilityRich authoritative sourcesThin content

3. Featured Snippet Optimization

Snippet types and how to win them:

TypeFormatOptimization
Paragraph40-60 word answerAnswer question directly in first paragraph
ListOrdered/unorderedUse H2/H3 + bullet/numbered list
TableData comparisonUse HTML <table> with clear headers
VideoYouTube embedTimestamp chapters + transcript

Template for winning paragraph snippets:

<h2>What is {keyword}?</h2>
<p>{Keyword} is {direct 40-60 word answer that completely addresses the query, 
including key context and a specific data point or statistic}.</p>

4. PAA (People Also Ask) Research

Extract PAA questions for content planning:

# Search and extract PAA
WebSearch: "{keyword}"
# Look for "People Also Ask" section
# Each PAA question = content opportunity

PAA optimization checklist:

  • Answer each PAA question in your content
  • Use the exact PAA question as an H2/H3
  • Provide concise answer (40-60 words) immediately after heading
  • Expand with details below the concise answer
  • Include relevant schema markup (FAQPage)

5. SERP Competitive Analysis

Analyze top 10 results:

| Position | URL | Title Length | Meta Desc | Schema | Word Count | Domain Authority |
|----------|-----|-------------|-----------|--------|------------|-----------------|
| 1 | ... | ... | ... | ... | ... | ... |
| 2 | ... | ... | ... | ... | ... | ... |

Key metrics to compare:

  • Content length and depth
  • Schema markup types used
  • Backlink profile
  • Content freshness (last updated date)
  • Page speed score
  • Mobile-friendliness

Workflow

  1. Input: Target keyword or URL
  2. Search: Query Google (via web_fetch or SerpAPI)
  3. Detect: Identify all SERP features present
  4. Analyze: Breakdown top results' strategies
  5. Recommend: Specific optimizations to win SERP features
  6. Report: Structured SERP analysis report

Output Format

## SERP Analysis Report: "{keyword}"

### SERP Features Detected
- [ ] AI Overview: Yes/No
- [ ] Featured Snippet: Type
- [ ] PAA: X questions
- [ ] Knowledge Panel: Yes/No
- [ ] Local Pack: Yes/No
- [ ] Image Carousel: Yes/No

### Top 3 Competitors
1. {URL} — {why they rank}
2. {URL} — {why they rank}
3. {URL} — {why they rank}

### Opportunities
1. {Specific action to take}
2. {Specific action to take}
3. {Specific action to take}

### AI Overview Optimization
- Current citation status: Cited / Not cited
- Recommended changes: ...

Trigger Words

  • "分析搜索结果"
  • "SERP analysis"
  • "check SERP features"
  • "AI Overview 分析"
  • "featured snippet"
  • "PAA 研究"
  • "搜索结果页分析"
  • "谷歌排名分析"

Keep looking

Skills are one crate of 328,083. 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.