Skip to content
Marketing
Skill

/rescue

Orchestrator and entry point for the seo-rescue plugin. Routes to the specialized sub-skills and recovery commands covering SEO rescue work after Google Core Updates: free-tier audit, recovery framework, decision-maker PDF reports, channel economics, competitor gap analysis,

From plugin
seo-survival-kit
918 skills6 commands
Install
$ npx -y skills add maxschottke-spec/seo-survival-kit --skill rescue --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/rescue

Context preview

The summary Claude sees to decide when to auto-load this skill.

Orchestrator and entry point for the seo-rescue plugin. Routes to the specialized sub-skills and recovery commands covering SEO rescue work after Google Core Updates: free-tier audit, recovery framework, decision-maker PDF reports, channel economics, competitor gap analysis,

SKILL.md

rescue.SKILL.md
name: rescue
description: 'Orchestrator and entry point for the seo-rescue plugin. Routes to the specialized sub-skills and recovery commands covering SEO rescue work after Google Core Updates: free-tier audit, recovery framework, decision-maker PDF reports, channel economics, competitor gap analysis, weekly PSI tracking, AI search rescue, AI citations tracker, GSC deep-dive, SISTRIX Monday recovery check (CSV-first weekly review), subscription monetization audit, and the recovery-workflow commands (diagnose, crawl, plan, monitor, full) governed by the SEO Change Governor + Settlement Gate. Type `/seo-rescue:rescue` to see the routing table or call sub-skills directly via their namespaced slash command.'
user-invocable: true
argument-hint: '[subcommand] [domain-or-args]'
allowed-tools: [Read, Grep, Glob]
license: MIT
metadata:
  author: Max Schottke
  version: '0.5.4'
  category: marketing

SEO Rescue: Orchestrator

This is the entry point for the seo-rescue plugin. It routes to the specialized sub-skills below, each callable directly via its namespaced slash command.

**Invocation:** `/seo-rescue:rescue [subcommand] [args]` to route here, or call any sub-skill directly via `/seo-rescue:<skill-name>`.

Quick Reference

| Slash command | What it does | |---|---| | `/seo-rescue:rescue audit <domain>` | Free-tier audit using only Google's tools (alias for `/seo-rescue:seo-audit-free`) | | `/seo-rescue:rescue framework <domain>` | Tool-free Core-Update recovery framework (alias for `/seo-rescue:post-core-update-recovery`) | | `/seo-rescue:rescue diagnose <domain>` | Data-driven Core-Update diagnosis, writes befund.json (alias for `/seo-rescue:recovery-diagnose`) | | `/seo-rescue:rescue report <domain>` | Generate decision-maker PDF report (alias for `/seo-rescue:seo-outreach-report`) | | `/seo-rescue:rescue channels` | Per-channel P&L analysis (alias for `/seo-rescue:channel-economics-analyzer`) | | `/seo-rescue:rescue competitors <domain>` | DataForSEO competitor + keyword-gap audit (alias for `/seo-rescue:competitor-deep-audit`) | | `/seo-rescue:rescue psi-baseline` | Set up weekly PSI cron baseline (alias for `/seo-rescue:psi-weekly-cron-baseline`) | | `/seo-rescue:rescue ai-search <domain>` | AI search visibility recovery (alias for `/seo-rescue:ai-search-rescue`) | | `/seo-rescue:rescue ai-citations` | Track AI citations weekly (alias for `/seo-rescue:ai-citations-tracker`) | | `/seo-rescue:rescue gsc <domain> [days?]` | One-call Google Search Console snapshot (alias for `/seo-rescue:gsc-deep-dive`) | | `/seo-rescue:rescue monday <current-csv> <previous-csv> [domain?]` | CSV-first weekly recovery review (alias for `/seo-rescue:sistrix-monday-recovery-check`) | | `/seo-rescue:rescue recovery <domain>` | Full recovery workflow (alias for `/seo-rescue:recovery-full`) | | `/seo-rescue:rescue monetization [domain \| --csv]` | Recurring-revenue lever audit (alias for `/seo-rescue:subscription-monetization-audit`) | | `/seo-rescue:recovery-diagnose <domain>` | Core Update diagnosis via Sistrix + DataForSEO (with CSV fallbacks) | | `/seo-rescue:recovery-crawl <domain>` | Screaming Frog crawl + issue classification | | `/seo-rescue:recovery-audit <domain> [--days 14]` | Read-only change audit: Settlement-Gate-State + hypothesis registry | | `/seo-rescue:recovery-plan <domain>` | Prioritized recovery action plan with human approval gate | | `/seo-rescue:recovery-monitor <domain>` | Weekly recovery tracking + score | | `/seo-rescue:recovery-full <domain>` | Full workflow: diagnose → crawl → audit → plan → monitor | | `/seo-rescue:subscription-monetization-audit [domain \| --csv]` | 5-lever recurring-revenue playbook, optional Stripe/Chargebee/Recurly CSV import | | `/seo-rescue:rescue help` | Show this routing table |

When to use which

digraph routing {
  "User reports a problem" [shape=diamond];
  "Has no SEO tools budget?" [shape=diamond];
  "Visibility dropped after Core Update?" [shape=diamond];
  "Needs report for client/owner?" [shape=diamond];
  "Multi-channel e-commerce?" [shape=diamond];
  "Wants competitor analysis?" [shape=diamond];
  "Wants ongoing monitoring?" [shape=diamond];
  "AI Overview/ChatGPT citation issue?" [shape=diamond];

  "MCP tooling (Sistrix/DataForSEO) available?" [shape=diamond];

  "free-tier audit" [shape=box,style=filled,fillcolor=lightgreen];
  "recovery-full workflow" [shape=box,style=filled,fillcolor=lightgreen];
  "core-update recovery framework" [shape=box,style=filled,fillcolor=lightgreen];
  "outreach report" [shape=box,style=filled,fillcolor=lightgreen];
  "channel economics" [shape=box,style=filled,fillcolor=lightgreen];
  "competitor deep audit" [shape=box,style=filled,fillcolor=lightgreen];
  "PSI baseline cron" [shape=box,style=filled,fillcolor=lightgreen];
  "AI search rescue" [shape=box,style=filled,fillcolor=lightgreen];
  "rescue help (routing table)" [shape=box,style=filled,fillcolor=lightyellow];

  "User reports a problem" -> "Has no SEO tools budget?";
  "Has no SEO tools budget?" -> "free-tier audit" [label="yes"];
  "Has no SEO tools budget?" -> "Visibility dropped after Core Update?" [label="no"];
  "Visibility dropped after Core Update?" -> "MCP tooling (Sistrix/DataForSEO) available?" [label="yes"];
  "MCP tooling (Sistrix/DataForSEO) available?" -> "recovery-full workflow" [label="yes: data-driven"];
  "MCP tooling (Sistrix/DataForSEO) available?" -> "core-update recovery framework" [label="no: pure Markdown"];
  "Visibility dropped after Core Update?" -> "Needs report for client/owner?" [label="no"];
  "Needs report for client/owner?" -> "outreach report" [label="yes"];
  "Needs report for client/owner?" -> "Multi-channel e-commerce?" [label="no"];
  "Multi-channel e-commerce?" -> "channel economics" [label="yes"];
  "Multi-channel e-commerce?" -> "Wants competitor analysis?" [label="no"];
  "Wants competitor analysis?" -> "competitor deep audit" [label="yes"];
  "Wants competitor analysis?" -> "Wants ongoing mon
Read more
Ships withseo-survival-kit

Recovery-first decision support for ecommerce/D2C SEO. Claude Code skills for Core Update recovery diagnosis, prioritized action plans, weekly monitoring, and a Change Governor / Settlement Gate that prevents over-optimizing during recovery windows.

Get the whole plugin

Other skills on seo-survival-kit.