New to Claude Skills? Learn how to install them →

agricidaniel on GitHub

SEO Drift Monitor

Free

Track and compare your SEO changes over time.

Get this skill

Free · Opens the source repo

What SEO Drift Monitor does

SEO Drift Monitor is a tool designed for web developers and SEO professionals to capture, track, and compare critical SEO elements of web pages over time. By establishing a baseline state of your SEO-critical elements, you can easily detect changes and regressions that may affect your site's performance in search engines. This skill operates through a series of commands that allow users to capture the current state of a page, compare it against previously stored baselines, and review the history of changes. It is particularly useful for monitoring the impact of deployments or content updates on SEO metrics.

The core functionality revolves around three primary commands: baseline, compare, and history. The baseline command captures the current SEO state of a specified URL, storing essential elements such as title tags, meta descriptions, and structured data. The compare command then allows users to fetch the current state of the page and compare it against the most recent baseline, applying a set of predefined rules to identify any significant changes. The history command provides a chronological overview of all captured baselines and comparisons for a given URL, enabling users to track the evolution of their SEO elements over time.

With a focus on automation and accuracy, SEO Drift Monitor employs a robust comparison engine that categorizes changes into three severity levels: critical, warning, and informational. This allows users to prioritize their responses based on the potential impact of the changes detected. Additionally, all data is securely stored in a local SQLite database, ensuring that users have quick access to their SEO monitoring data without relying on external services.

This skill is ideal for web developers, SEO specialists, and digital marketers who need to maintain oversight of their website's SEO health and ensure that any changes made do not inadvertently harm their search engine rankings. By integrating this tool into your workflow, you can proactively manage your SEO strategy and respond swiftly to any issues that arise.

When to use it

Use this skill when you want to establish a baseline for your website's SEO elements and monitor changes over time, especially before and after deployments or content updates.

When not to use it

This skill may not be suitable for real-time SEO analysis or for users looking for a comprehensive SEO audit tool, as it focuses specifically on tracking changes rather than providing a full range of SEO insights.

What you can build with it

Pre/Post Deployment Check

Capture a baseline before deploying changes to your website and compare it after deployment to ensure no critical SEO elements were altered.

Ongoing SEO Monitoring

Regularly capture baselines and monitor changes to your SEO elements, allowing for proactive management of your site's SEO health.

SEO Regression Analysis

Use the comparison feature to identify any regressions in your SEO elements that may impact your search engine rankings.

How to install SEO Drift Monitor

View source

1. Install with the skills CLI

npx skills add agricidaniel/claude-seo/seo-drift --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by agricidaniel

SEO Drift Monitor (April 2026)

Git for your SEO. Capture baselines, detect regressions, track changes over time.


Commands

CommandPurpose
/seo drift baseline <url>Capture current SEO state as a "known good" snapshot
/seo drift compare <url>Compare current page state to stored baseline
/seo drift history <url>Show change history and past comparisons

What It Captures

Every baseline records these SEO-critical elements:

ElementFieldSource
Title tagtitleparse_html.py
Meta descriptionmeta_descriptionparse_html.py
Canonical URLcanonicalparse_html.py
Robots directivesmeta_robotsparse_html.py
H1 headingsh1 (array)parse_html.py
H2 headingsh2 (array)parse_html.py
H3 headingsh3 (array)parse_html.py
JSON-LD schemaschema (array)parse_html.py
Open Graph tagsopen_graph (dict)parse_html.py
Core Web Vitalscwv (dict)pagespeed_check.py
HTTP status codestatus_codefetch_page.py
HTML content hashhtml_hash (SHA-256)Computed
Schema content hashschema_hash (SHA-256)Computed

How Comparison Works

The comparison engine applies 17 rules across 3 severity levels. Load references/comparison-rules.md for the full rule set with thresholds, recommended actions, and cross-skill references.

Severity Levels

LevelMeaningResponse Time
CRITICALSEO-breaking change, likely traffic lossImmediate
WARNINGPotential impact, needs investigationWithin 1 week
INFOAwareness only, may be intentionalReview at convenience

Storage

All data is stored locally in SQLite:

~/.cache/claude-seo/drift/baselines.db

Tables

  • baselines: Captured snapshots with all SEO elements
  • comparisons: Diff results with triggered rules and severities

URL normalization ensures consistent matching: lowercase scheme/host, strip default ports (80/443), sort query parameters, remove UTM parameters, strip trailing slashes.


Command: baseline

Captures the current state of a page and stores it.

Steps:

  1. Validate URL (SSRF protection via google_auth.validate_url())
  2. Fetch page via scripts/fetch_page.py
  3. Parse HTML via scripts/parse_html.py
  4. Optionally fetch CWV via scripts/pagespeed_check.py (use --skip-cwv to skip)
  5. Hash HTML body and schema content (SHA-256)
  6. Store snapshot in SQLite

Execution:

claude-seo run drift_baseline.py <url>
claude-seo run drift_baseline.py <url> --skip-cwv

Output: JSON with baseline ID, timestamp, URL, and summary of captured elements.


Command: compare

Fetches the current page state and diffs it against the most recent baseline.

Steps:

  1. Validate URL
  2. Load most recent baseline from SQLite (or specific --baseline-id)
  3. Fetch and parse current page state
  4. Run all 17 comparison rules
  5. Classify findings by severity
  6. Store comparison result
  7. Output JSON diff report

Execution:

claude-seo run drift_compare.py <url>
claude-seo run drift_compare.py <url> --baseline-id 5
claude-seo run drift_compare.py <url> --skip-cwv

Output: JSON with all triggered rules, old/new values, severity, and actions.

After comparison, offer to generate an HTML report:

claude-seo run drift_report.py <comparison_json_file> --output drift-report.html

Command: history

Shows all baselines and comparisons for a URL.

Execution:

claude-seo run drift_history.py <url>
claude-seo run drift_history.py <url> --limit 10

Output: JSON array of baselines (newest first) with timestamps and comparison summaries.


Cross-Skill Integration

When drift is detected, recommend the appropriate specialized skill:

FindingRecommendation
Schema removed or modifiedRun /seo schema <url> for full validation
CWV regressionRun /seo technical <url> for performance audit
Title or meta description changedRun /seo page <url> for content analysis
Canonical changed or removedRun /seo technical <url> for indexability check
Noindex addedRun /seo technical <url> for crawlability audit
H1/heading structure changedRun /seo content <url> for E-E-A-T review
OG tags removedRun /seo page <url> for social sharing analysis
Status code changed to errorRun /seo technical <url> for full diagnostics

Error Handling

ScenarioAction
URL unreachableReport error from fetch_page.py. Do not guess state. Suggest user verify URL.
No baseline exists for URLInform user and suggest running baseline first.
SSRF blocked (private IP)Report validate_url() rejection. Never bypass.
SQLite database missingAuto-create on first use. No error.
CWV fetch fails (no API key)Store null for CWV fields. Skip CWV rules during comparison.
Page returns 4xx/5xxStill capture as baseline (status code IS a tracked field).
Multiple baselines existUse most recent unless --baseline-id specified.

Security

  • All URL fetching goes through scripts/fetch_page.py which enforces SSRF protection (blocks private IPs, loopback, reserved ranges, GCP metadata endpoints)
  • No curl, no subprocess HTTP calls -- only the project's validated fetch pipeline
  • All SQLite queries use parameterized placeholders (?), never string interpolation
  • TLS always verified -- no verify=False anywhere in the pipeline

Typical Workflows

Pre/Post Deployment Check

/seo drift baseline https://example.com     # Before deploy
# ... deploy happens ...
/seo drift compare https://example.com      # After deploy

Ongoing Monitoring

/seo drift baseline https://example.com     # Initial capture
# ... weeks later ...
/seo drift compare https://example.com      # Check for drift
/seo drift history https://example.com      # Review all changes

Investigating a Traffic Drop

/seo drift compare https://example.com      # What changed?
/seo drift history https://example.com      # When did it change?

Frequently asked questions about SEO Drift Monitor

Similar skills