mcpbeat

Harvest Monitor

vibeeval/harvest-monitor

Web change monitoring - track changes on pages, detect updates, changelog diffs

464 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
521
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/vibeeval/vibecosystem --skill harvest-monitor

What it tells the agent to use

found in the instruction text
WebFetch fetches pages from the network

The instruction itself

7 sections, as written by the author

Harvest Monitor

Track changes on web pages over time. Compare current content against cached versions to detect updates, new releases, breaking changes, and documentation modifications.

Usage

# Monitor a page for changes
/harvest-monitor https://docs.example.com/changelog

# Compare against last cached version
/harvest-monitor https://docs.example.com/api --diff

# Track multiple pages
/harvest-monitor --watchlist ~/.claude/cache/agents/harvest/watchlist.json

How It Works

  • Fetch current page content
  • Check cache for previous version
  • Compute diff (content-level, not HTML-level)
  • Categorize changes (added, removed, modified)
  • Report significant changes
  • Update cache with current version

Output

# Change Report: [URL]
> Checked: [timestamp]
> Previous: [cached timestamp]
> Status: CHANGED / NO CHANGE

## Changes Detected
### Added
- [New content]

### Modified
- [Changed content - before → after]

### Removed
- [Removed content]

## Impact Assessment
[What these changes mean for our project]

Watchlist Format

{
  "pages": [
    {
      "url": "https://docs.example.com/changelog",
      "frequency": "daily",
      "notify": ["migrator", "shipper"]
    }
  ]
}

Integration

  • migrator: Track dependency changelogs for breaking changes
  • shipper: Monitor deployment status pages
  • tech-radar: Track technology evolution

Rules

  • Cache previous versions locally
  • Content-level diff, not HTML diff
  • Ignore style/layout changes
  • Only report meaningful content changes
  • Max 1 check per hour per URL

How to use it

Copy the folder

Take vibeeval/harvest-monitor from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.