Watercrawl monitor
Skill fernandoleyra/watercrawl-skill/skills/watercrawl-monitor
Open Source Agentic scrapping skill with 8 hyperfocused skills, to give research subagents web-search on steroids.
npx -y skills add fernandoleyra/watercrawl-skill --skill watercrawl-monitorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Snapshot a page and detect content changes compared to a previous snapshot. Use when asked to monitor a page, check for changes, or track updates to a URL.
SKILL.md
1.6 KB, as published. Nobody here has run it
watercrawl-monitor
Snapshot a page and detect changes compared to a previous snapshot.
Instructions
-
Parse arguments from
$ARGUMENTS:url— required.action—snapshot(save current state),diff(compare with saved), orcheck(snapshot + diff if previous exists). Default:check.
-
Determine snapshot file path:
- Create
.watercrawl/snapshots/in the current working directory - Filename: URL-slug (replace
://and/with_, strip query strings, truncate to 60 chars) +.md
- Create
-
For
snapshotorcheck:- Fetch the URL using WebFetch
- Save content to snapshot file with header:
<!-- snapshot: <ISO timestamp> --> <!-- url: <url> --> <content> - Report:
Snapshot saved to <filepath>
-
For
difforcheckwith existing snapshot:- Read the previous snapshot
- Compare: word count change, added paragraphs, removed paragraphs
- Report:
## Change Report: <url> **Previous snapshot:** <timestamp> **Current snapshot:** <timestamp> **Word count:** N → M (+/- delta) ### Added content ### Removed content ### No changes detected
-
If no previous snapshot and action is
diff: take first snapshot and inform user.