solo-seo-cli

solo-seo-cli is a skill for Claude Code from fortunto2/solo-factory. It costs 180 tokens per session (6,477 once invoked), scanned A, original, MIT.

A command-line tool for checking and managing website SEO and agent-readiness. Agent-readiness means making a site easier for AI agents to discover and read.

In plain words
What is it for?
Use it to audit SEO and GEO scores, check robots rules and files such as llms.txt, review Search Console data, submit sitemaps, and ping IndexNow.
Why use it?
It brings search checks, site-discovery checks, analytics, and sitemap submission into one command-line workflow.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: positional $N argument; built for openclaw.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/rustam/startups/shared/seo-cli/config.yaml.

Part of the solo plugin — 44 skills, 2 commands, 3 agents, 2 hooks shipped together

Good fit Use it to audit SEO and GEO scores, check robots rules and files such as llms.txt, review Search Console data, submit sitemaps, and ping IndexNow.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add fortunto2/solo-factory
Claude Code
/plugin install solo

Made for: Claude Code.

Or install solo, the plugin that ships this one along with the rest of its 44 skills, 2 commands, 3 agents, 2 hooks.

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 solo-seo-cli

README.md
[![agentmods](https://agentmods.dev/badge/skills/fortunto2/solo-factory/seo-cli.svg)](https://agentmods.dev/skills/fortunto2/solo-factory/seo-cli)
Your own site
<a href="https://agentmods.dev/skills/fortunto2/solo-factory/seo-cli"><img src="https://agentmods.dev/badge/skills/fortunto2/solo-factory/seo-cli.svg" alt="Measured on agentmods" height="20"></a>
Per session 180 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,477 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin unknown 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.00180 $0.06477
Opus 5 $0.00090 $0.03238
Sonnet 5 $0.00036 $0.01295
Haiku 4.5 $0.00018 $0.00648

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

Security

Grade A, and why

solo-seo-cli scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "https://ssl.bing.com/webmaster/api.svc/json/GetUserSites?apikey=$KEY" | head -c 200
skills/seo-cli/SKILL.md · 529 lines

How it starts

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

SEO CLI Skill

Unified search engine management and SEO/GEO auditing for all configured sites.

Running it

seo is installed globally as a wrapper at ~/.local/bin/seo. Just call it:

seo audit https://example.com

If the command is missing, recreate the wrapper (the project keeps cli.py and config.yaml side by side and is not packaged for uv tool install — a global install fails with ModuleNotFoundError: No module named 'cli'):

cat > ~/.local/bin/seo <<'EOF'
#!/bin/sh
SEO_HOME="$HOME/startups/shared/seo-cli"
exec "$SEO_HOME/.venv/bin/python" "$SEO_HOME/cli.py" "$@"
EOF
chmod +x ~/.local/bin/seo

Source lives in ~/startups/shared/seo-cli/. Do not build a SEO=... shell variable holding two words — in zsh it is not word-split and the call fails.

Commands

Audit — SEO+GEO health check

# Summary table across ALL sites (fast, no PageSpeed)
seo audit

# Detailed single-site audit with PageSpeed + keywords
seo audit https://superduperai.co

Agent audit — what an AI agent can discover, read and act on

seo agent-audit                          # every configured site
seo agent-audit https://example.com      # one site, full detail

A site now has two audiences, and this checks the second: robots rules naming GPTBot and friends, Content-Signals, llms.txt, markdown negotiation, MCP and A2A cards.

It probes a path that cannot exist before anything else. A great many sites answer 200 with their home page for every URL, and a checker that trusts status codes then reports a perfect score for a site that has none of it — life2film.com scored 12/12 that way while every response was the same HTML page. Its real score was 5. When that probe returns 200 the report says so at the top and verifies content instead: JSON must parse, text must not be HTML.

Markdown negotiation is tested on the home page and on a real page from the sitemap. Sites whose root is an index have no markdown twin for it while every article does, and probing only / calls that "no negotiation" — the same false negative pointing the other way.

Read the full file on GitHub · 529 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. 8d ago First seen · 529 lines · 180 tokens per session scan A d0769cc643e5

Subscribe to this mod's changes

solo-seo-cli is a skill published in the GitHub repository fortunto2/solo-factory (18 stars, last pushed today), licensed MIT. It adds 180 tokens to every session and 6,477 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.