crawlforge-change-tracking

crawlforge-change-tracking is a skill for Claude Code, Codex from mysleekdesigns/crawlforge-mcp. It costs 105 tokens per session (1,684 once invoked), scanned A, original, MIT.

A web-page monitoring workflow that saves a page as a baseline and later compares the current version with it. It can focus comparisons on selected parts of a page to reduce unrelated changes.

In plain words
What is it for?
Watching competitor prices, regulations, product availability, or any other web page for updates and getting a percentage change with a structured difference.
Why use it?
It shows what changed since the saved version instead of requiring repeated manual checks.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Watching competitor prices, regulations, product availability, or any other web page for updates and getting a percentage change with a structured difference.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mysleekdesigns/crawlforge-mcp/crawlforge-change-tracking
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add mysleekdesigns/crawlforge-mcp --skill crawlforge-change-tracking
Clone the repo
git clone --depth 1 https://github.com/mysleekdesigns/crawlforge-mcp

Made for: Claude Code, Codex.

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 crawlforge-change-tracking

README.md
[![agentmods](https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/crawlforge-change-tracking/github.svg)](https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/crawlforge-change-tracking)
Your own site
<a href="https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/crawlforge-change-tracking"><img src="https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/crawlforge-change-tracking/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 crawlforge-change-tracking

Your own site · 80×15
<a href="https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/crawlforge-change-tracking"><img src="https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/crawlforge-change-tracking.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 105 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,684 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.00105 $0.01684
Opus 5 $0.00053 $0.00842
Sonnet 5 $0.00021 $0.00337
Haiku 4.5 $0.00011 $0.00168

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

Security

Grade A, and why

crawlforge-change-tracking 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 2d 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.

src/skills/agent-skills/crawlforge-change-tracking/SKILL.md · 156 lines

How it starts

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

CrawlForge Change Tracking

Detect when a web page changes over time using the track_changes tool. Useful for competitor pricing, regulation updates, product availability, and any page you need to watch for edits.

When to use

  • "Track changes to this page" / "watch this URL"
  • "Tell me when competitor pricing changes"
  • "Detect when this content updates"
  • "Diff this page against last week's version"
  • "Notify me when product availability / a regulation changes"

Core workflow

track_changes is one tool driven by an operation parameter (cost: 3 credits per call).

  1. Create a baseline the first time:
{ "tool": "track_changes", "params": { "url": "https://example.com/pricing", "operation": "create_baseline" } }
  1. Compare later to get the change percentage + diff:
{ "tool": "track_changes", "params": { "url": "https://example.com/pricing", "operation": "compare" } }

compare is the default operation. It returns a change percentage and a structured diff against the stored baseline.

Scoping to part of a page

Use trackingOptions to ignore noise and focus on what matters:

{
  "tool": "track_changes",
  "params": {
    "url": "https://example.com/pricing",
    "operation": "compare",
    "trackingOptions": {
      "granularity": "element",
      "customSelectors": [".price", ".plan-name"],
      "excludeSelectors": [".timestamp", ".ad"],
      "ignoreWhitespace": true
    }
  }
}

granularity: page, section (default), element, text. Toggle trackText, trackStructure, trackLinks, trackImages. Set significanceThresholds (minor/moderate/major) to classify change size.

CLI: crawlforge track https://example.com --selector ".price" --threshold 1.

Scheduled monitoring & notifications

create_scheduled_monitor repeats compare on a schedule and notifies on change. It comes in two kinds.

Local (default): persisted in ~/.crawlforge/monitors/; fires in-process only while this MCP server runs (missed runs catch up on restart; crawlforge monitor:run-due from system cron guarantees firing). Notifies by webhook or Slack — never email. goal (plain-English LLM judge) and notificationThreshold apply to local monitors only.

Read the full file on GitHub · 156 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. 2d ago Changed · +39 lines 57993d66ebd8
  2. 5d ago Changed 301167e5075c
  3. 10d ago First seen · 117 lines · 105 tokens per session scan A 1803f5dd8dfc

Subscribe to this mod's changes

crawlforge-change-tracking is a skill published in the GitHub repository mysleekdesigns/crawlforge-mcp (2 stars, last pushed today), licensed MIT. It adds 105 tokens to every session and 1,684 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

nimble-web-expert

Get web data now — fast, incremental, immediately responsive to what the user needs. The only way Claude can access live websites. USE FOR: Fetching any URL or reading any webpage Scraping prices, listings, reviews, jobs, stats, docs from any site Running Extraction Templates — reusable, site-specific structured…

Nimbleway/agent-skills · 155 tokens

crw-dynamic-search

Programmatic web search and scrape with context isolation. Use for any research task where you need to search the web, filter results, and extract specific information — without flooding your context window with raw HTML and boilerplate. This is the single biggest token-saver in the crw skill set. Triggered by "search…

us/crw · 143 tokens

crw

Scrape, crawl, map, and search the web using fastCRW's native /v1 API. Use when the user needs web page content, site-wide extraction, URL discovery, or web search results. Single binary, 14 MB RAM; /v2 exists separately for Firecrawl migration.

us/crw · 64 tokens

crw

Scrape, crawl, map, and search the web using fastCRW's native /v1 API. Use when the user needs web page content, site-wide extraction, URL discovery, or web search results. Single binary, 14 MB RAM; /v2 exists separately for Firecrawl migration.

us/crw · 64 tokens

crw-watch

Detect what changed between two page snapshots with fastCRW — stateless diff as a REST primitive. Use when you need to track content changes, monitor a page for updates, or build a cron-based alert system: "has this page changed?", "alert me when pricing changes", "diff this week's scrape against last week's". Step 7…

us/crw · 81 tokens

chrome-devtools

Use Chrome DevTools MCP to control and inspect a live Chrome instance for network, console, performance, rendering, and Deep debugging. Pairs with playwright-cli (deterministic interaction/E2E) — complements, not duplicates.

ulises-jeremias/agent-toolkit · 50 tokens