BrowserOS monitor-page
Track changes on a web page by comparing content snapshots over time. Use when the user wants to watch for updates, price drops, stock availability, or content changes.
install
source · Clone the upstream repo
git clone https://github.com/browseros-ai/BrowserOS
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/browseros-ai/BrowserOS "$T" && mkdir -p ~/.claude/skills && cp -r "$T/packages/browseros-agent/apps/server/src/skills/defaults/monitor-page" ~/.claude/skills/browseros-ai-browseros-monitor-page && rm -rf "$T"
manifest:
packages/browseros-agent/apps/server/src/skills/defaults/monitor-page/SKILL.mdsource content
Monitor Page
When to Use
Activate when the user asks to monitor a page for changes, watch for price drops, track stock availability, detect new content, or be alerted when something changes on a website.
Steps
-
Clarify what to monitor. Ask the user:
- What URL to watch
- What specific content to track (price, stock status, text, any change)
- How to identify the target content (a specific section, element, or keyword)
-
Capture the baseline. Navigate to the page and extract the current state:
- Use
to load the target URLnavigate_page - Use
orget_page_content
to extract the specific content to trackevaluate_script - Save the baseline to memory using
with a descriptive key likememory_writemonitor:{url-slug}:baseline
- Use
-
Check for changes. On subsequent checks:
- Navigate to the same URL
- Extract the same content using the same method
- Compare against the saved baseline
- Report differences
-
Report findings:
If changes detected:
## Page Change Detected **URL:** [url] **Checked:** [current date/time] ### Changes - **Before:** [previous value] - **After:** [current value]
If no changes:
No changes detected on [URL]. Last checked: [current date/time] Monitoring: [what you're tracking]
- Update the baseline after reporting changes, using
to store the new state.memory_write
Tips
- For price monitoring, extract just the price element rather than the full page to avoid false positives from ad changes.
- Use
with specific CSS selectors for precise element tracking.evaluate_script - Suggest the user set a reminder to ask you to check again — BrowserOS doesn't yet have scheduled tasks.
- For stock availability, look for phrases like "In Stock", "Out of Stock", or "Add to Cart" button presence.