wigolo watch
Track a page over time. Register a watch job on a URL (or many), then check it to see whether the content changed since the last snapshot. Optionally deliver a webhook when a change fires.
Lazy execution model — there is no background daemon. A job's check runs when you call action: "check", or opportunistically when another tool runs and the job is overdue. Set realistic interval_seconds (minimum 60).
Quick Reference
// Create a single-URL watch (checks no more than once every 6 hours)
{ "action": "create", "url": "https://nodejs.org/en/blog", "interval_seconds": 21600 }
// Batch create across several URLs
{ "action": "create", "urls": ["https://a.example.com", "https://b.example.com"], "interval_seconds": 3600 }
// Scope the diff to a subtree
{ "action": "create", "url": "https://example.com/pricing", "interval_seconds": 86400, "selector": "#pricing-table" }
// Deliver a webhook on change (SSRF-guarded)
{ "action": "create", "url": "https://example.com/status", "interval_seconds": 300, "notification": "https://hooks.example.com/wigolo" }
// List all jobs
{ "action": "list" }
// Check one job now
{ "action": "check", "job_id": "job_abc123" }
// Pause / resume / delete
{ "action": "pause", "job_id": "job_abc123" }
{ "action": "resume", "job_id": "job_abc123" }
{ "action": "delete", "job_id": "job_abc123" }
Parameters
| Parameter |
Type |
Default |
When to use |
action |
string |
required |
"create", "list", "check", "pause", "resume", "delete" |
url |
string |
none |
Single-URL create. Mutually exclusive with urls |
urls |
string[] |
none |
Batch create. Response carries jobs[] only |
interval_seconds |
number |
none |
Required for create. Minimum check interval (min 60) |
selector |
string |
none |
Create-only CSS selector to scope the diff to a subtree |
notification |
string |
"inline" |
"inline" (return on next check) or a webhook URL |
job_id |
string |
none |
Required for check, pause, resume, delete |
Single-URL create returns job (singular) plus jobs: [job] (legacy). Batch create returns jobs[] only.
How It Works
- create — registers the job and takes a baseline snapshot of the page (or the
selector subtree).
- check — re-fetches, diffs against the last snapshot, and reports changed/unchanged. On change it advances the snapshot and, if a webhook is configured, delivers it.
- list / pause / resume / delete — manage the job set.
Webhook delivery is SSRF-guarded: the server validates the destination before posting, so a job cannot be pointed at internal or loopback addresses.
Anti-Patterns
- DON'T set
interval_seconds below 60 — the minimum is enforced.
- DON'T expect checks to fire on their own — this is a lazy model; call
check (or rely on overdue opportunistic runs).
- DON'T pass both
url and urls — they are mutually exclusive.
When NOT to use wigolo-watch
- One-off comparison of two versions — use
diff instead.
- Bulk change detection across the whole cache on demand — use
cache with check_changes: true.
See Also
1---2name: wigolo-watch3description: Monitor a page for changes over time. Create lazy watch jobs on one or many URLs, list them, and check for changes on demand — with optional SSRF-guarded webhook delivery when a change is detected. Use when the user says "monitor this page", "watch this URL for changes", "tell me when this updates", "track this changelog", "notify me if this changes", or wants recurring change detection on web content.4license: AGPL-3.0-only5---67# wigolo watch89Track a page over time. Register a watch job on a URL (or many), then check it to see whether the content changed since the last snapshot. Optionally deliver a webhook when a change fires.1011**Lazy execution model** — there is no background daemon. A job's check runs when you call `action: "check"`, or opportunistically when another tool runs and the job is overdue. Set realistic `interval_seconds` (minimum 60).1213## Quick Reference1415```json16// Create a single-URL watch (checks no more than once every 6 hours)17{ "action": "create", "url": "https://nodejs.org/en/blog", "interval_seconds": 21600 }1819// Batch create across several URLs20{ "action": "create", "urls": ["https://a.example.com", "https://b.example.com"], "interval_seconds": 3600 }2122// Scope the diff to a subtree23{ "action": "create", "url": "https://example.com/pricing", "interval_seconds": 86400, "selector": "#pricing-table" }2425// Deliver a webhook on change (SSRF-guarded)26{ "action": "create", "url": "https://example.com/status", "interval_seconds": 300, "notification": "https://hooks.example.com/wigolo" }2728// List all jobs29{ "action": "list" }3031// Check one job now32{ "action": "check", "job_id": "job_abc123" }3334// Pause / resume / delete35{ "action": "pause", "job_id": "job_abc123" }36{ "action": "resume", "job_id": "job_abc123" }37{ "action": "delete", "job_id": "job_abc123" }38```3940## Parameters4142| Parameter | Type | Default | When to use |43|-----------|------|---------|-------------|44| `action` | string | required | "create", "list", "check", "pause", "resume", "delete" |45| `url` | string | none | Single-URL create. Mutually exclusive with `urls` |46| `urls` | string[] | none | Batch create. Response carries `jobs[]` only |47| `interval_seconds` | number | none | Required for create. Minimum check interval (min 60) |48| `selector` | string | none | Create-only CSS selector to scope the diff to a subtree |49| `notification` | string | "inline" | "inline" (return on next check) or a webhook URL |50| `job_id` | string | none | Required for check, pause, resume, delete |5152Single-URL create returns `job` (singular) plus `jobs: [job]` (legacy). Batch create returns `jobs[]` only.5354## How It Works55561. **create** — registers the job and takes a baseline snapshot of the page (or the `selector` subtree).572. **check** — re-fetches, diffs against the last snapshot, and reports changed/unchanged. On change it advances the snapshot and, if a webhook is configured, delivers it.583. **list / pause / resume / delete** — manage the job set.5960Webhook delivery is SSRF-guarded: the server validates the destination before posting, so a job cannot be pointed at internal or loopback addresses.6162## Anti-Patterns6364- DON'T set `interval_seconds` below 60 — the minimum is enforced.65- DON'T expect checks to fire on their own — this is a lazy model; call `check` (or rely on overdue opportunistic runs).66- DON'T pass both `url` and `urls` — they are mutually exclusive.6768## When NOT to use wigolo-watch6970- **One-off comparison of two versions** — use `diff` instead.71- **Bulk change detection across the whole cache on demand** — use `cache` with `check_changes: true`.7273## See Also7475- [wigolo-diff](../wigolo-diff/SKILL.md) — one-shot version comparison76- [wigolo-cache](../wigolo-cache/SKILL.md) — on-demand bulk change detection77- [wigolo-fetch](../wigolo-fetch/SKILL.md) — the fetch each check runs under the hood