Why pay for this?
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.
Compresses a docs page and public context into a compact change-risk watch.
Turn a docs page and bounded public context into a compact change-risk watch.
Endpoint: /v1/recipes/docs-change-risk-watch/run
Capabilities: docs-change, docs-watch, risk-brief, research
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.
Compresses a docs page and public context into a compact change-risk watch.
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: page
Source: Stableenrich Exa Search
Step id: search
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": "page",
"kind": "fetch_transform",
"title": "Scrape docs page",
"request": {
"params": {
"url": "{{ $.input.url }}",
"formats": [
"markdown",
"text"
],
"onlyMainContent": true
},
"sourceId": "stableenrich_firecrawl_scrape",
"deliveryFormat": "json"
}
}
{
"id": "search",
"kind": "fetch_transform",
"title": "Search public docs context",
"request": {
"params": {
"count": 5,
"query": "{{ $.input.url }} {{ $.input.question }} changelog release notes docs"
},
"sourceId": "stableenrich_exa_search",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build docs change-risk watch",
"request": {
"params": {
"input": {
"url": "{{ $.input.url }}",
"page": "{{ $.stepsById.page.output }}",
"question": "{{ $.input.question }}",
"publicContext": "{{ $.stepsById.search.output }}"
},
"prompt": "Prepare a docs change-risk watch. Focus on the areas worth watching, risk flags, and next actions.",
"responseSchema": {
"type": "object",
"required": [
"url",
"summary",
"changedAreas",
"riskFlags",
"nextActions"
],
"properties": {
"url": {
"type": "string"
},
"summary": {
"type": "string"
},
"riskFlags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Risk flags."
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Next actions."
},
"changedAreas": {
"type": "array",
"items": {
"type": "string"
},
"description": "Changed areas."
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a compact docs change-risk watch. Stay grounded in the supplied page scrape and public context only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}