Install
openclaw skills install clank-website-monitorMonitor websites for changes, new content, and price alerts. Perfect for tracking competitors, job postings, or product prices.
openclaw skills install clank-website-monitorMonitor websites for changes and get alerts when something happens.
website-monitor add "https://example.com/jobs" --name "Job Board" --selector ".job-listing"
website-monitor check
website-monitor history --last 7d
This skill uses curl + diff for simple monitoring:
#!/bin/bash
# Save current state
curl -s "$URL" | md5sum > "$STATE_FILE"
# Compare with previous
if ! diff "$STATE_FILE" "$STATE_FILE.prev" > /dev/null 2>&1; then
echo "CHANGE DETECTED!"
# Send alert via OpenClaw
fi
MIT