agentsclimarketplace

Monitoring the web

Skill Scout-AI-Labs/scout-skills/skills/monitoring-the-web

Watch the web for changes with Scout monitors. Use when the user wants to be notified of new results for a query on a schedule, track a competitor or topic over time, or set up a recurring search that posts to a webhook. Creates and manages scheduled searches that deliver only what's new.From its SKILL.md

Install
npx -y skills add Scout-AI-Labs/scout-skills --skill monitoring-the-web

Assembled 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.

SKILL.md

1.5 KB, 348 tokens by cl100k_base, as published. Nobody here has run it

Monitoring the web

A monitor is a saved search that runs on a cadence and reports new results to a webhook. Use it for competitor tracking, topic alerts, or any "tell me when something changes" request.

Create a monitor

curl -s https://core.usescout.sh/v1/monitors \
  -H "Authorization: Bearer $SCOUT_API_KEY" -H "Content-Type: application/json" \
  -d '{
    "query": "acme corp pricing change",
    "cadence": "daily",
    "webhook": "https://your-app.com/hooks/scout",
    "filter_prompt": "only new pricing or packaging changes"
  }'

cadence takes a simple interval, or pass a cron expression for precise timing. filter_prompt (optional) tells the monitor what counts as a meaningful change so you aren't paged on noise.

Manage them

  • List: GET /v1/monitors
  • Inspect: GET /v1/monitors/{id}, events at GET /v1/monitors/{id}/events
  • Pause / resume: POST /v1/monitors/{id}/pause · /resume
  • Run now: POST /v1/monitors/{id}/run
  • Update or delete: PATCH / DELETE /v1/monitors/{id}

Notes

  • Point the webhook at an endpoint you control; the monitor POSTs new results there as they appear.
  • Start with a tight query and a filter_prompt. Broad monitors generate noise, and noise gets muted.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.