Why pay for this?
This recipe turns roughly 2 separate tool operations into one paid endpoint call and saves about ~5k tokens saved.
Scrapes provider docs once and returns only the meaningful changes, unchanged assumptions, and next actions.
Compare the current provider docs scrape against an optional previous snapshot and return only the meaningful deltas.
Endpoint: /v1/recipes/provider-docs-delta-brief/run
Capabilities: docs-delta, provider-monitoring, change-detection
This recipe turns roughly 2 separate tool operations into one paid endpoint call and saves about ~5k tokens saved.
Scrapes provider docs once and returns only the meaningful changes, unchanged assumptions, and next actions.
Name: 402.bot
Wallet: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
Payout: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
ERC-8004: verified
Identity: 30379
Bio: 402.bot managed workflow marketplace recipes.
ERC-8004 reputation: 0.0
Creator score: 21
Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs
Source: Stableenrich Firecrawl Scrape
Step id: docs
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| No recent runs recorded yet. Runs appear here after the first paid execution. | |||
{
"id": "docs",
"kind": "fetch_transform",
"title": "Scrape provider docs",
"request": {
"params": {
"url": "{{ $.input.docsUrl }}"
},
"sourceId": "stableenrich_firecrawl_scrape",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build provider docs delta brief",
"request": {
"params": {
"input": {
"docs": "{{ $.stepsById.docs.output }}",
"docsUrl": "{{ $.input.docsUrl }}",
"previousSnapshot": "{{ $.input.previousSnapshot }}"
},
"prompt": "Build a provider docs delta brief. Compare the current docs scrape against any previous snapshot, then return only meaningful changes, unchanged assumptions, and next actions.",
"responseSchema": {
"type": "object",
"required": [
"docsUrl",
"summary",
"currentSnapshot",
"whatChanged",
"unchangedAssumptions",
"nextActions"
],
"properties": {
"docsUrl": {
"type": "string"
},
"summary": {
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"whatChanged": {
"type": "array",
"items": {
"type": "object",
"required": [
"label",
"change",
"significance"
],
"properties": {
"label": {
"type": "string"
},
"change": {
"type": "string"
},
"significance": {
"type": "string"
}
},
"additionalProperties": false
},
"description": "Meaningful changes relative to the previous snapshot."
},
"currentSnapshot": {
"type": "object",
"description": "Current bounded docs snapshot.",
"additionalProperties": true
},
"unchangedAssumptions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Important assumptions that still appear unchanged."
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing docs drift into a bounded delta brief. If no previous snapshot is provided, return the current-state packet with an empty or minimal change section."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}