recovery-crawl

recovery-crawl is a command for Claude Code from maxschottke-spec/seo-survival-kit. It costs 16 tokens per session (4,720 once invoked), scanned A, original, MIT.

A technical SEO crawler and issue classifier. It examines a website for problems that can prevent search engines from finding, understanding, or listing its pages.

In plain words
What is it for?
It helps crawl a domain, check indexability, and inspect titles, headings, descriptions, canonical URLs, noindex settings, and robots blocking.
Why use it?
It turns raw crawl results into a prioritized list, so recovery work can focus on issues most likely to block search visibility.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node scripts/recovery-crawl.js --domain <domain> --cache-dir <path>.

Part of the seo-rescue plugin — 18 skills, 6 commands shipped together

Good fit It helps crawl a domain, check indexability, and inspect titles, headings, descriptions, canonical URLs, noindex settings, and robots blocking.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/maxschottke-spec/seo-survival-kit
agentmods
npx agentmods add commands/maxschottke-spec/seo-survival-kit/recovery-crawl

Made for: Claude Code.

Or install seo-rescue, the plugin that ships this one along with the rest of its 18 skills, 6 commands.

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 recovery-crawl

README.md
[![agentmods](https://agentmods.dev/badge/commands/maxschottke-spec/seo-survival-kit/recovery-crawl/github.svg)](https://agentmods.dev/commands/maxschottke-spec/seo-survival-kit/recovery-crawl)
Your own site
<a href="https://agentmods.dev/commands/maxschottke-spec/seo-survival-kit/recovery-crawl"><img src="https://agentmods.dev/badge/commands/maxschottke-spec/seo-survival-kit/recovery-crawl/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 recovery-crawl

Your own site · 80×15
<a href="https://agentmods.dev/commands/maxschottke-spec/seo-survival-kit/recovery-crawl"><img src="https://agentmods.dev/badge/commands/maxschottke-spec/seo-survival-kit/recovery-crawl.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 16 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,720 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.00016 $0.04720
Opus 5 $0.00008 $0.02360
Sonnet 5 $0.00003 $0.00944
Haiku 4.5 $0.00002 $0.00472

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

Security

Grade A, and why

recovery-crawl 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 11d 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.

plugins/seo-rescue/commands/recovery-crawl.md · 369 lines

How it starts

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

Recovery Crawl

Zweck

Screaming Frog MCP Crawl durchfuehren und die Ergebnisse in eine strukturierte, priorisierte Issues-Liste transformieren. Identifiziert technische SEO-Probleme die Recovery blockieren. Falls Screaming Frog MCP nicht verfuegbar ist, Fallback auf CSV-Import; ohne CSV-Import bricht das Command mit Status failed ab.

Trigger

/seo-rescue:recovery-crawl <domain>

Input-Kontrakt

Feld Quelle Pflicht
domain CLI-Argument ja

Normalisierung gemaess Schritt 1 des Ablaufs. www. wird NICHT entfernt.

Capabilities

Capability Pflicht/Optional Verwendung
crawl_issues pflicht (mit Fallback) Technische SEO-Issues identifizieren
indexability_check optional Canonicals, noindex, robots-Blockierung pruefen
page_metadata optional H1, Meta-Description, Title extrahieren

Bevorzugte Provider

  • crawl_issues: Screaming Frog MCP (sf_crawl, sf_generate_bulk_export)
  • indexability_check: Screaming Frog MCP (Canonicals:Non-Indexable Filter)
  • page_metadata: Screaming Frog MCP (H1:Missing, Meta Description:Missing)

Fallback-Provider

Paid Fallbacks (wenn Screaming Frog MCP nicht verfuegbar)

Capability Paid Fallback
crawl_issues Sitebulb, JetOctopus, Lumar (Deepcrawl), Botify (manueller CSV-Export)
indexability_check Sitebulb, Lumar
page_metadata Sitebulb, JetOctopus

Free / Lokale Fallbacks

Capability Free/Lokal Fallback
crawl_issues Manuelle Crawl-CSV unter ~/.cache/seo-rescue/{slug}/imports/crawl.csv
page_metadata Manuelle Crawl-CSV mit H1/Meta-Spalten

CSV-Importe werden unter ~/.cache/seo-rescue/{slug}/imports/ erwartet.

Script CLI Contract

node scripts/recovery-crawl.js --domain <domain> --cache-dir <path>
Exit Code Bedeutung
0 Crawl abgeschlossen (complete oder partial)
1 Crawl fehlgeschlagen (kein Provider, kein CSV)
2 Security-Abbruch (Symlink, Path-Traversal)
3 Lock-Timeout (anderer Command laeuft)

Read the full file on GitHub · 369 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. 11d ago First seen · 369 lines · 16 tokens per session scan A 68e7ddcd74f2

Subscribe to this mod's changes

recovery-crawl is a command published in the GitHub repository maxschottke-spec/seo-survival-kit (9 stars, last pushed 1mo ago), licensed MIT. It adds 16 tokens to every session and 4,720 once invoked, about $0.0001 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.