AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Seo Drift

skill-georgekhananaev-claude-skills-vault-seo-drift · by georgekhananaev

>

No reviews yet
0 installs
35 views
0.0% view→install

Install

$ agentstack add skill-georgekhananaev-claude-skills-vault-seo-drift

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution Used
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-georgekhananaev-claude-skills-vault-seo-drift)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Seo Drift? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

SEO Drift Monitor (April 2026)

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


Commands

| Command | Purpose | |---------|---------| | /seo drift baseline | Capture current SEO state as a "known good" snapshot | | /seo drift compare | Compare current page state to stored baseline | | /seo drift history | Show change history and past comparisons |


What It Captures

Every baseline records these SEO-critical elements:

| Element | Field | Source | |---------|-------|--------| | Title tag | title | parse_html.py | | Meta description | meta_description | parse_html.py | | Canonical URL | canonical | parse_html.py | | Robots directives | meta_robots | parse_html.py | | H1 headings | h1 (array) | parse_html.py | | H2 headings | h2 (array) | parse_html.py | | H3 headings | h3 (array) | parse_html.py | | JSON-LD schema | schema (array) | parse_html.py | | Open Graph tags | open_graph (dict) | parse_html.py | | Core Web Vitals | cwv (dict) | pagespeed_check.py | | HTTP status code | status_code | fetch_page.py | | HTML content hash | html_hash (SHA-256) | Computed | | Schema content hash | schema_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

| Level | Meaning | Response Time | |-------|---------|---------------| | CRITICAL | SEO-breaking change, likely traffic loss | Immediate | | WARNING | Potential impact, needs investigation | Within 1 week | | INFO | Awareness only, may be intentional | Review 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:

python scripts/drift_baseline.py 
python scripts/drift_baseline.py  --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:

python scripts/drift_compare.py 
python scripts/drift_compare.py  --baseline-id 5
python scripts/drift_compare.py  --skip-cwv

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

After comparison, offer to generate an HTML report:

python scripts/drift_report.py  --output drift-report.html

Command: history

Shows all baselines and comparisons for a URL.

Execution:

python scripts/drift_history.py 
python scripts/drift_history.py  --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:

| Finding | Recommendation | |---------|----------------| | Schema removed or modified | Run /seo schema for full validation | | CWV regression | Run /seo technical for performance audit | | Title or meta description changed | Run /seo page for content analysis | | Canonical changed or removed | Run /seo technical for indexability check | | Noindex added | Run /seo technical for crawlability audit | | H1/heading structure changed | Run /seo content for E-E-A-T review | | OG tags removed | Run /seo page for social sharing analysis | | Status code changed to error | Run /seo technical for full diagnostics |


Error Handling

| Scenario | Action | |----------|--------| | URL unreachable | Report error from fetch_page.py. Do not guess state. Suggest user verify URL. | | No baseline exists for URL | Inform user and suggest running baseline first. | | SSRF blocked (private IP) | Report validate_url() rejection. Never bypass. | | SQLite database missing | Auto-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/5xx | Still capture as baseline (status code IS a tracked field). | | Multiple baselines exist | Use 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?

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.