visibly-seo-potential

visibly-seo-potential is a skill for Claude Code from AntonioBlago/claude-code-seo-starter. It costs 83 tokens per session (1,240 once invoked), scanned A, original, MIT.

An SEO analysis skill that estimates possible increases in search traffic, leads, and return on investment over 12 months. SEO means improving a website so it appears more often in unpaid search results.

In plain words
What is it for?
Use it after a status-quo report to forecast extra clicks, leads, revenue value, or the equivalent cost of paid search traffic.
Why use it?
It turns existing search-performance data into a reasoned business case for SEO work, using different click estimates for different search intents.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Part of the seo-starter plugin — 4 skills, 4 commands, 1 hook, 2 MCP servers shipped together

Good fit Use it after a status-quo report to forecast extra clicks, leads, revenue value, or the equivalent cost of paid search traffic.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/antonioblago/claude-code-seo-starter/visibly-seo-potential
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add AntonioBlago/claude-code-seo-starter --skill visibly-seo-potential
Clone the repo
git clone --depth 1 https://github.com/AntonioBlago/claude-code-seo-starter

Made for: Claude Code.

Or install seo-starter, the plugin that ships this one along with the rest of its 4 skills, 4 commands, 1 hook, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for visibly-seo-potential

README.md
[![agentmods](https://agentmods.dev/badge/skills/antonioblago/claude-code-seo-starter/visibly-seo-potential/github.svg)](https://agentmods.dev/skills/antonioblago/claude-code-seo-starter/visibly-seo-potential)
Your own site
<a href="https://agentmods.dev/skills/antonioblago/claude-code-seo-starter/visibly-seo-potential"><img src="https://agentmods.dev/badge/skills/antonioblago/claude-code-seo-starter/visibly-seo-potential/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for visibly-seo-potential

Your own site · 80×15
<a href="https://agentmods.dev/skills/antonioblago/claude-code-seo-starter/visibly-seo-potential"><img src="https://agentmods.dev/badge/skills/antonioblago/claude-code-seo-starter/visibly-seo-potential.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,240 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00083 $0.01240
Opus 5 $0.00042 $0.00620
Sonnet 5 $0.00017 $0.00248
Haiku 4.5 $0.00008 $0.00124

Measured 10d ago against content hash c647dec70af0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

visibly-seo-potential scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/visibly-seo-potential/SKILL.md · 107 lines

How it starts

The opening of the file, as written. The whole thing — 107 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SEO Potential Analysis

Turn a Status-Quo into a defensible business case: how many extra clicks, leads, and euros an SEO engagement realistically produces over 12 months.

Preconditions

A Status-Quo table must exist for the domain (run /visibly-seo-status-quo first). You need, per keyword: search volume (SV), current position, current clicks, impressions, and an intent label.

Step 1 — Classify intent (this drives everything)

Each keyword is transactional, commercial, informational, or navigational. CTR at the same position differs wildly by intent, so misclassifying inflates or deflates the whole forecast. When unsure, infer from the SERP and the query form ("buy", "price", "vs", "how to", brand name).

Step 2 — Apply the intent-aware CTR curve

Read CTR from the Keyword Study 2026 curve in docs/ctr-model.md (first-party GSC data, 1.3M keywords, 94 domains). Pick the column for the keyword's intent, the row for its position. Anchor values at position 1:

Intent CTR @ Pos 1
Navigational ~8.9 %
Commercial ~4.1 %
Transactional ~3.7 %
Informational ~3.2 %
Overall (blended) ~5.6 %

Never use the old textbook curve (Pos 1 = 28 %). Below position 20: ~0.3 % (21-50), ~0.1 % (50+).

Step 3 — Set realistic 12-month target positions

Current position Search volume Target
> 100 > 10k Pos 15
> 100 5-10k Pos 12
> 100 1-5k Pos 8
> 100 < 1k Pos 5
Already ranking any improve 1-10 positions by current strength

Never promise Position 1 for a page sitting at 100+. Conservative targets keep the offer credible.

Step 4 — Compute the click delta

target_clicks  = SV × CTR(target_position, intent)
current_clicks = from GSC (or SV × CTR(current_position, intent) if missing)
delta_clicks   = max(0, target_clicks − current_clicks)

Aggregate delta_clicks by cluster / theme — per-keyword numbers are noisy; a decision-maker acts on cluster rollups.

Read the full file on GitHub · 107 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 107 lines · 83 tokens per session scan A c647dec70af0

Subscribe to this mod's changes

visibly-seo-potential is a skill published in the GitHub repository AntonioBlago/claude-code-seo-starter (3 stars, last pushed 6d ago), licensed MIT. It adds 83 tokens to every session and 1,240 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

gemini

Cross-model second opinion from Google Gemini — a different AI reviewing the same changes, with deep Google ecosystem knowledge. Three modes: review (pass/fail gate for Google Ads campaigns, SEO metadata, or code), challenge (adversarial stress-test that tries to break your changes), and consult (open Q&A with Gemini…

nowork-studio/notfair-plugin · 184 tokens

meta-tags-optimizer

Optimize title tags, meta descriptions, Open Graph, and Twitter cards for maximum click-through rate. Generates multiple A/B test variations with character counting and SERP preview. Use when asked to "optimize title tag", "write meta description", "improve CTR", "Open Graph tags", "fix my meta tags", "social media…

nowork-studio/notfair-plugin · 91 tokens

content-amplifier

Use when the user asks to "amplify influencer content with paid media", "set up whitelisting or Spark Ads", "decide which posts to boost", "repurpose influencer content", "turn one video into multiple ads", or "build a UGC asset library"; produces (paid mode) a content-selection scorecard, a paid amplification…

aaron-he-zhu/aaron-marketing-skills · 202 tokens

content-planner

GSC-driven content calendar. Pulls real Search Console data, finds the highest click-potential opportunities (striking-distance queries at positions 5-20, unanswered query intent, related-keyword expansions), and produces a dated, prioritized content calendar — ready to hand to /content-writer. Use when the user asks…

nowork-studio/notfair-plugin · 123 tokens

setup-cms

Connect a CMS to notfair SEO tools. Guides users through configuring WordPress, Strapi, Contentful, or Ghost — tests the connection, and writes credentials to .env.local. Once set up, seo-analysis automatically cross- references CMS content against Google Search Console data. Use whenever the user says "connect my…

nowork-studio/notfair-plugin · 111 tokens

cold-outbound-sequencer

Use when the user asks to "build a B2B cold-outbound sequence", "design reply-triage branching", "plan a domain warmup / sending throttle", or "make my outbound CAN-SPAM / opt-in compliant"; produces a multi-step outbound sequence with reply-triage branches (positive / objection / referral / not-now / opt-out), a…

aaron-he-zhu/aaron-marketing-skills · 172 tokens