← 返回 Skills 市场
corbin-breton

Web Monitor

作者 Corbin Breton · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
158
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install keats-web-monitor
功能描述
Monitor web pages for content changes and get alerts. Track URLs, detect updates, view diffs. Use when asked to watch a website, track changes on a page, mon...
使用说明 (SKILL.md)

Web Monitor

Track web pages for changes. Stores snapshots, computes diffs, supports CSS selectors.

Triggers

Activate this skill when the user wants to:

  • Watch a website for content changes
  • Track price changes, new posts, or updated content on a page
  • Set up page change alerts or notifications
  • Check if a site has been updated since last visit
  • Monitor a specific section of a page (with CSS selector)

NOT For

  • Real-time alerting on dynamic topics — use the topic-monitor skill for news/topic monitoring with importance scoring
  • Full page archival — this tracks diffs, not full crawl archives
  • JavaScript-heavy SPAs — the monitor fetches raw HTML; dynamic content rendered by JS may not be captured accurately
  • Monitoring APIs or webhooks — use cron + exec for structured data endpoints

Quick Start

# Add a URL to watch
uv run --with beautifulsoup4 python scripts/monitor.py add "https://example.com" --name "Example"

# Add with CSS selector (monitor specific section)
uv run --with beautifulsoup4 python scripts/monitor.py add "https://example.com/pricing" -n "Pricing" -s ".pricing-table"

# Check all watched URLs for changes
uv run --with beautifulsoup4 python scripts/monitor.py check

# Check one specific URL
uv run --with beautifulsoup4 python scripts/monitor.py check "Example"

# List watched URLs
uv run --with beautifulsoup4 python scripts/monitor.py list

# View last diff
uv run --with beautifulsoup4 python scripts/monitor.py diff "Example"

# View current snapshot
uv run --with beautifulsoup4 python scripts/monitor.py snapshot "Example" --lines 50

# Remove
uv run --with beautifulsoup4 python scripts/monitor.py remove "Example"

Commands

Command Args Description
add \x3Curl> [-n name] [-s selector] Add URL to watch, take initial snapshot
remove \x3Curl-or-name> Stop watching a URL
list [-f json] List all watched URLs with stats
check [url-or-name] [-f json] Check for changes (all or one)
diff \x3Curl-or-name> Show last recorded diff
snapshot \x3Curl-or-name> [-l lines] Show current snapshot

Output Symbols

  • 🔔 CHANGED — page content changed (shows diff preview)
  • ✅ No changes
  • 📸 Initial snapshot taken
  • ❌ Error fetching

Data

Stored in ~/.web-monitor/ (override with WEB_MONITOR_DIR env var). For OpenClaw workspace integration, set WEB_MONITOR_DIR=$WORKSPACE/data/web-monitor (where $WORKSPACE is your agent workspace path).

  • watches.json — watch list config
  • snapshots/ — stored page content + diffs

Tips

  • Use --selector to monitor specific elements (prices, article lists, etc.)
  • Use --format json for programmatic checking (heartbeat integration)
  • CSS selectors require beautifulsoup4 (included via --with flag)
  • Text is normalized to reduce noise from timestamps, whitespace, ads
安全使用建议
This skill appears internally consistent for monitoring webpages. Before installing, consider: (1) it will fetch any URL you add — avoid adding sensitive or internal-only endpoints if the agent has network access to internal systems (SSRF/privacy risk); (2) snapshots and diffs are stored on disk (default ~/.web-monitor) — set WEB_MONITOR_DIR if you prefer the workspace or a different location; (3) CSS selector support needs beautifulsoup4 (optional); (4) metadata/version fields in _meta.json differ from the registry entry (likely an authoring oversight) — if provenance matters, verify the author/repo before trusting the package. If you want to limit risk, run the script in an environment with restricted network access or review/execute the script manually rather than enabling autonomous invocation.
功能分析
Type: OpenClaw Skill Name: keats-web-monitor Version: 1.0.1 The keats-web-monitor skill is a legitimate utility for tracking changes to web pages. The core logic in scripts/monitor.py uses standard libraries to fetch content, compute diffs, and store snapshots locally in a user-defined directory. There is no evidence of data exfiltration, malicious execution, or prompt injection; the script's behavior aligns perfectly with its stated purpose of monitoring URLs for content updates.
能力评估
Purpose & Capability
Name/description (web page change monitoring) matches the included Python tool and SKILL.md usage. The script fetches URLs, optionally applies CSS selectors, normalizes text, stores snapshots and diffs — all expected. Minor metadata inconsistencies exist: registry metadata/version (1.0.1) vs _meta.json version (1.0.0) and differing ownerId values; this looks like a packaging oversight, not functional mismatch.
Instruction Scope
SKILL.md instructs the agent to run the included script and to read/write data under ~/.web-monitor (or WEB_MONITOR_DIR). All instructions are within the declared purpose. The only noteworthy behavior is that the skill will fetch arbitrary URLs (provided by the user), which can include internal addresses reachable by the agent — expected for a monitor but a potential privacy/SSRF consideration.
Install Mechanism
No install spec; the skill is instruction-only with a bundled Python script. There are no downloads, brew/npm installs, or external installers. The script uses only the standard library and optionally beautifulsoup4 (recommended).
Credentials
The skill requires no credentials or special env vars. It optionally honors WEB_MONITOR_DIR (reasonable for changing storage location) and recommends setting it to $WORKSPACE for workspace integration. No unrelated secrets or config paths are requested.
Persistence & Privilege
always is false and the skill does not request to be force-enabled. It stores its own data under ~/.web-monitor or a user-provided WEB_MONITOR_DIR; it does not modify other skills or system-wide agent settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install keats-web-monitor
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /keats-web-monitor 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Track web page content changes with CSS selector support, diffs, and snapshots
元数据
Slug keats-web-monitor
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Web Monitor 是什么?

Monitor web pages for content changes and get alerts. Track URLs, detect updates, view diffs. Use when asked to watch a website, track changes on a page, mon... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 158 次。

如何安装 Web Monitor?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install keats-web-monitor」即可一键安装,无需额外配置。

Web Monitor 是免费的吗?

是的,Web Monitor 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Web Monitor 支持哪些平台?

Web Monitor 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Web Monitor?

由 Corbin Breton(@corbin-breton)开发并维护,当前版本 v1.0.1。

💬 留言讨论