Borrowing it
Nothing to install: this file belongs to maxschottke-spec/seo-survival-kit. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/maxschottke-spec/seo-survival-kit/main/CLAUDE.mdgit clone --depth 1 https://github.com/maxschottke-spec/seo-survival-kitWrote 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.
[](https://agentmods.dev/instructions/maxschottke-spec/seo-survival-kit/claude-md)<a href="https://agentmods.dev/instructions/maxschottke-spec/seo-survival-kit/claude-md"><img src="https://agentmods.dev/badge/instructions/maxschottke-spec/seo-survival-kit/claude-md/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.
<a href="https://agentmods.dev/instructions/maxschottke-spec/seo-survival-kit/claude-md"><img src="https://agentmods.dev/badge/instructions/maxschottke-spec/seo-survival-kit/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.03333 | $0.03333 |
| Opus 5 | $0.01666 | $0.01666 |
| Sonnet 5 | $0.00667 | $0.00667 |
| Haiku 4.5 | $0.00333 | $0.00333 |
Grade A, and why
seo-survival-kit CLAUDE.md 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 9d 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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
- Chrome subprocess via `spawnSync` with argv-array (no shell), isolated `--user-data-dir` How it starts
The opening of the file, as written. The whole thing — 207 lines — stays where its author put it; the contents beside it link to each section on GitHub.
seo-survival-kit: project instructions for Claude Code
What this repository is
seo-survival-kit is a Claude Code plugin (marketplace name seo-survival-kit, plugin name seo-rescue) that bundles eighteen skills and commands (one orchestrator plus seventeen sub-skills and recovery commands) built from real ecommerce/D2C recovery work after Google Core Updates. It is MIT-licensed, has zero npm runtime dependencies, and is published at https://github.com/maxschottke-spec/seo-survival-kit. Canonical skill registry: ARCHITECTURE.md section 4.
Positioning: Recovery Operating System for Ecommerce/D2C. Recovery-first, decision-first, profit-aware, risk-aware. The framework supports operators making recovery and growth decisions; execution belongs to the operator's team, agency, or contractors. See ARCHITECTURE.md for the canonical source of truth.
Architecture
seo-survival-kit/
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog
├── .github/
│ └── workflows/
│ └── validate.yml # claude plugin validate on every push/PR
├── plugins/
│ └── seo-rescue/
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest (path matters — see CHANGELOG v0.2.2)
│ ├── lib/
│ │ └── safe.js # Shared safety primitives
│ ├── commands/ # Recovery workflow command specifications
│ │ ├── recovery-diagnose.md
│ │ ├── recovery-crawl.md
│ │ ├── recovery-audit.md
│ │ ├── recovery-plan.md
│ │ ├── recovery-monitor.md
│ │ └── recovery-full.md
│ ├── scripts/ # Node.js helpers for script-backed commands
│ │ ├── recovery-crawl.js
│ │ └── recovery-monitor.js
│ ├── references/ # Wissensbasis-Dokumente
│ │ ├── RECOVERY_SYSTEM.md
│ │ ├── DECISION_ENGINE.md
│ │ └── CORE_UPDATES.md
│ ├── schemas/ # JSON Schema for command outputs
│ │ ├── befund.schema.json
│ │ ├── issues.schema.json
│ │ ├── action-plan.schema.json
│ │ └── history.schema.json
│ ├── docs/ # Documentation and onboarding
│ │ ├── ONBOARDING.md
│ │ ├── SETUP.md
│ │ ├── TOOL_PROVIDERS.md
│ │ ├── FALLBACKS.md
│ │ └── TROUBLESHOOTING.md
│ ├── test-fixtures/ # Minimal test data for offline testing
│ └── skills/ # 18 skills/commands (1 orchestrator + 17 sub-skills/commands)
│ ├── rescue/ # Orchestrator + routing table
│ ├── seo-audit-free/
│ ├── post-core-update-recovery/
│ ├── seo-outreach-report/ # SKILL.md + 4 Node.js scripts + .env.example
│ ├── channel-economics-analyzer/
│ ├── competitor-deep-audit/
│ ├── psi-weekly-cron-baseline/
│ ├── ai-search-rescue/
│ ├── ai-citations-tracker/ # v0.4 addition: weekly cron AI surface tracker
│ ├── gsc-deep-dive/ # v0.4 addition: one-call GSC API snapshot
│ ├── sistrix-monday-recovery-check/ # v0.5.2: CSV-first weekly recovery review
│ ├── subscription-monetization-audit/ # v0.5.2: recurring-revenue lever audit
│ └── recovery-{diagnose,crawl,audit,plan,monitor,full}/ # v0.5.2: thin wrappers for the recovery-workflow commands
├── exports/ # Platform-agnostic Markdown copies (Cursor / Custom GPT / Gemini / Aider / Continue.dev / Codex)
├── examples/ # Sample PDF + screenshots (synthetic data)
├── ARCHITECTURE.md # Canonical source of truth (vision, positioning, modules, governance, privacy)
├── RECOVERY_SYSTEM.md # Pointer stub — canonical copy: plugins/seo-rescue/references/RECOVERY_SYSTEM.md
├── DECISION_ENGINE.md # Pointer stub — canonical copy: plugins/seo-rescue/references/DECISION_ENGINE.md
├── SISTRIX_MONDAY_RECOVERY_CHECK.md # Pointer stub — canonical copy: plugins/seo-rescue/references/SISTRIX_MONDAY_RECOVERY_CHECK.md
├── ROADMAP.md # Version-by-version product plan
├── ROADMAP-2026.md # Google search future-watch (separate from product roadmap)
├── CHANGELOG.md # Per-release notes
├── SECURITY.md # Threat model + verification steps
├── COSTS.md # Per-audit API cost breakdown
├── MATURITY.md # Honest comparison with mature alternatives
├── ONBOARDING.md # 15-minute first-PDF walkthrough
└── README.md # Entry point with Quick Reference table
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.
- 9d ago First seen · 207 lines · 3,333 tokens per session scan A b7b7e5a1cce1
seo-survival-kit CLAUDE.md is an instructions file published in the GitHub repository maxschottke-spec/seo-survival-kit (9 stars, last pushed 1mo ago), licensed MIT. It adds 3,333 tokens to every session, about $0.0167 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.