
Changeflow
- 1 installs
- Updated March 28, 2026
- changeflowhq/changeflow-skill
Track website changes and receive AI-enriched change briefings via API
About
Changeflow monitors any website for changes and generates AI-enriched change intelligence briefings. Use it to automate web monitoring, search changes, and manage your monitoring sources.
- Monitor any website with API-driven change detection
- Get AI-enriched change intelligence and briefings
Changeflow by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,980 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/changeflowhq/changeflow-skill --skill changeflowAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | March 28, 2026 |
| Repository | changeflowhq/changeflow-skill ↗ |
What it does
Track website changes and receive AI-enriched change briefings via API
Files
Changeflow - Web Intelligence
Monitor any website. Get AI-enriched change briefings. Manage sources, search changes, and automate web monitoring.
Setup
Requires a Changeflow API token. Get one from https://changeflow.com/account/api
Set the environment variable:
export CHANGEFLOW_API_TOKEN=your_token_hereAPI Endpoint
POST https://changeflow.com/mcp
Content-Type: application/json
Accept: application/json
Authorization: Bearer $CHANGEFLOW_API_TOKENAll requests use JSON-RPC 2.0 format. Include the Bearer token in every request.
Tools
list_sources
List all monitored sources.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "list_sources",
"arguments": { "tag": "compliance" }
}
}Arguments: tag (optional filter), limit
get_source
Get details for a specific source.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_source",
"arguments": { "source_id": "ABC123" }
}
}Arguments: source_id (required - the share code)
get_changes
Search recent changes across all sources.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_changes",
"arguments": { "query": "pricing update", "limit": 10 }
}
}Arguments: query, since (ISO date), type (link or change), tag, source_id, limit
get_change
Get full details of a single change.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_change",
"arguments": { "change_id": "v_456" }
}
}Arguments: change_id (required - format v_123 for page changes, l_456 for link discoveries)
create_source
Create a new source to monitor.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "create_source",
"arguments": {
"url": "https://www.fda.gov/regulatory-information/search-fda-guidance-documents",
"looking_for": "New FDA guidance documents on drug manufacturing",
"frequency": "daily"
}
}
}Arguments: url (required), looking_for, frequency, tags
check_source
Trigger an immediate check on a source.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "check_source",
"arguments": { "source_id": "ABC123" }
}
}pause_source / resume_source
Pause or resume monitoring.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "pause_source",
"arguments": { "source_id": "ABC123" }
}
}How to Call
Use WebFetch or curl with the Bearer token:
WebFetch POST https://changeflow.com/mcp
Headers: Authorization: Bearer $CHANGEFLOW_API_TOKEN
Body: {"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_sources","arguments":{}}}Parse result.content[0].text as JSON from the response.
Presenting Results
1. Sources - show title, URL, status (running/paused/error), last change date 2. Changes - show AI summary, date, source name. For link discoveries, show the new URL found. 3. Creating sources - confirm the URL and prompt, tell the user their first check will run within the hour 4. Errors - if auth fails, tell user to check their CHANGEFLOW_API_TOKEN
Links
- Changeflow - Enterprise web intelligence
- API Settings - Get your API token
- Pricing - Plans from $99/mo
- GovPing - Free regulatory intelligence (powered by Changeflow)
Changeflow Skill
AI-powered web monitoring for Claude Code, Cursor, and any agent that supports the Agent Skills standard.
Monitor any website. Get structured change intelligence. Requires a Changeflow account.
Install
Claude Code
mkdir -p .claude/skills/changeflow
cp SKILL.md .claude/skills/changeflow/skills.sh
npx skillsadd changeflowhq/changeflow-skillSetup
Set your API token:
export CHANGEFLOW_API_TOKEN=your_token_hereGet your token from changeflow.com/account/api.
Usage
- "List my Changeflow sources"
- "Create a source to monitor fda.gov/guidance"
- "What changes happened this week?"
- "Check the status of my compliance sources"
- "Pause monitoring on source ABC123"
What You Can Do
- List sources - see all monitored URLs with status
- Search changes - find changes by keyword, date, or source
- Create sources - start monitoring any URL with an AI prompt
- Check sources - trigger immediate checks
- Pause/resume - control monitoring
Links
- Changeflow - Enterprise web intelligence
- Pricing - Plans from $99/mo
- API Settings - Get your token
- GovPing - Free regulatory intelligence
- Changeflow MCP Server - MCP integration
License
MIT