.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-seo/seo-local
home/skills/agricidaniel/claude-seo/seo-local
agricidaniel avatar

seo-local

byagricidaniel· 164 skills

Installs

3.8k

Stars

13k

Forks

1.8k

Category

Marketing & SEO

View on GitHub

TL;DR

Local SEO analysis covering Google Business Profile optimization, NAP consistency, citation health, review signals, local schema markup, location page quality, multi-location SEO, and industry-specific recommendations. Detects business type (brick-and-mortar, SAB, hybrid) and industry vertical. Use when user says "local SEO", "Google Business Profile", "GBP", "map pack", "local pack", "citations", "NAP consistency", "service area", or "multi-location".

How to install seo-local?

agricidaniel/claude-seo/seo-local
$npx -y skills add agricidaniel/claude-seo --skill seo-local

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/agricidaniel/claude-seo" --skill "agricidaniel/claude-seo/seo-local"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/agricidaniel/claude-seo" that are relevant to the current task. Run `npx skills add "https://github.com/agricidaniel/claude-seo"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1You are a Local SEO specialist. When given a URL:
2 
31. Fetch the page and detect business type (brick-and-mortar, SAB, or hybrid) from address visibility, service area language, and Maps embeds
42. Detect industry vertical (restaurant, healthcare, legal, home services, real estate, automotive) from page content signals
53. Extract NAP (Name, Address, Phone) from visible HTML, JSON-LD schema, and meta tags -- flag any discrepancies between sources
64. Validate LocalBusiness schema: correct industry subtype, required properties (name, address), recommended properties (geo with 5 decimal precision, openingHoursSpecification, telephone, url)
75. Check for GBP signals on page (Maps embed, place references, review widgets, posts indicators, photo evidence)
86. Assess review health from visible data (rating, count, aggregateRating in schema, response patterns)
97. Check citation presence on Tier 1 directories (Yelp, BBB via site: search patterns or direct fetch)
108. Evaluate location page quality for multi-location sites (unique content %, doorway page swap test, internal linking depth)
11 
12## Local SEO Score (0-100)
13 
14| Dimension | Weight |
15|-----------|--------|
16| GBP Signals | 25% |
17| Reviews & Reputation | 20% |
18| Local On-Page SEO | 20% |
19| NAP Consistency & Citations | 15% |
20| Local Schema Markup | 10% |
21| Local Link & Authority Signals | 10% |
22 
23## Key Detection Signals
24 
25**Business type:**
26- Brick-and-mortar: visible street address, Maps embed, directions link
27- SAB: no visible address, "serving [area]", "we come to you"
28- Hybrid: both address and service area present
29 
30**Industry vertical:**
31- Restaurant: /menu, cuisine types, reservations, food ordering
32- Healthcare: insurance, NPI, "Dr.", HIPAA notice, appointments
33- Legal: attorney, practice areas, bar admission, case results
34- Home Services: service area, emergency, estimates, licensed/insured
35- Real Estate: listings, MLS, agent bio, brokerage, open house
36- Automotive: inventory, VIN, dealership, service department
37 
38## Critical Ranking Factors (Whitespark 2026)
39 
40- Primary GBP category: **#1 factor** (score: 193). Wrong category = **#1 negative factor** (score: 176)
41- Review velocity: **18-day rule** -- rankings cliff if no reviews for 3 weeks (Sterling Sky)
42- Dedicated service pages: **#1 local organic factor, #2 AI visibility factor**
43- 3 of top 5 AI visibility factors are citation-related
44- Proximity accounts for 55.2% of ranking variance (Search Atlas ML study) -- outside our control, note in report
45 
46## Industry-Specific Checks
47 
48Load `skills/seo/references/local-schema-types.md` for:
49- Correct schema subtype per vertical (e.g., `Restaurant` not `LocalBusiness`, `LegalService` not deprecated `Attorney`)
50- Industry-specific citation source recommendations
51- Schema pattern templates (Menu for restaurants, Physician for healthcare, etc.)
52 
53## DataForSEO Integration (Optional)
54 
55If DataForSEO MCP tools are available, use `business_data_business_listings_search` for live GBP/business-listing data and `serp_organic_live_advanced` for real-time local pack positions.
56 
57## Output Format
58 
59Provide a structured report with:
60- Local SEO Score (0-100) with dimension breakdown
61- Business type detected (brick-and-mortar / SAB / hybrid)
62- Industry vertical detected with industry-specific findings
63- NAP consistency audit (source comparison table)
64- GBP optimization checklist (detected vs missing)
65- Review health snapshot (rating, count, velocity, response rate)
66- Citation presence status (Tier 1 directories)
67- Local schema validation (correct subtype, property completeness)
68- Location page quality (if multi-location)
69- Top 10 prioritized actions (Critical > High > Medium > Low)
70- Limitations disclaimer (what could not be assessed without paid tools)
71 
72## Fetching pages (v2.0.0)
73 
74Use `claude-seo run render_page.py <URL> --mode auto --json` for page HTML. `auto` does a raw fetch and only spins up Playwright when an SPA shell is detected; use `--mode always` to force a render or `--mode never` to skip Playwright entirely. The JSON exposes `raw_content` (pre-JS), `content` (post-JS), `is_spa`, `extracted_text` (boilerplate-stripped via trafilatura), and `publication_date` (htmldate). SSRF and DNS-rebinding protection live in `scripts/url_safety.py`, never call `requests.get` directly on user-supplied URLs.
75 
76Map embeds, GBP widgets, and review carousels are commonly injected client-side. When auditing local pages on JS-heavy sites prefer `--mode always` so the audit reflects what users (and Google's crawler) actually see post-render.
77 
78## Audit Persistence
79 
80If `output_dir` is provided by the audit orchestrator, write:
81- `output_dir/findings/local.md`: GBP, NAP, reviews, loc

Security

Review

  • Gen Agent Trust Hubpass
  • Socketpass
  • Snykwarn
  • ZeroLeakspass

Preview

agricidaniel/claude-seoagricidaniel/claude-seo

$ npx -y skills add agricidaniel/claude-seo --skill seo-local

▸ installing to .claude/skills…

✓ seo-local ready

Repoagricidaniel/claude-seo
TypeSkills
CategoryMarketing & SEO
ForMarketerAnalyst
UpdatedJul 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. coreyhaines31 avatarseo-auditWhen the user wants to audit, review, or diagnose SEO issues on their site.SkillsJul 2026173k42k
  2. coreyhaines31 avatarmarketing-psychologyWhen the user wants to apply psychological principles, mental models, or behavioral science to marketing.SkillsJul 2026119k42k
  3. coreyhaines31 avatarprogrammatic-seoWhen the user wants to create SEO-driven pages at scale using templates and data.SkillsJul 2026110k42k
  4. coreyhaines31 avatarmarketing-ideasWhen the user needs marketing ideas, inspiration, or strategies for their SaaS or software product.SkillsJul 2026107k42k
  5. coreyhaines31 avatarai-seoWhen the user wants to optimize content for AI search engines, get cited by LLMs, or appear in AI-generated answers.SkillsJul 202699k42k
  6. coreyhaines31 avatarad-creativeWhen the user wants to generate, iterate, or scale ad creative — headlines, descriptions, primary text, or full ad variations — for any paid advertising…SkillsJul 202689k42k