Why pay for this?
This recipe turns roughly 5 separate tool operations into one paid endpoint call and saves about ~7k tokens saved.
Combines a public page scrape and search context into a compact human-routing channel check.
Check whether a workflow really exposes the human-routing channels it claims.
Endpoint: /v1/recipes/human-routing-channel-check/run
Capabilities: human-routing, channel-check, support-surface
This recipe turns roughly 5 separate tool operations into one paid endpoint call and saves about ~7k tokens saved.
Combines a public page scrape and search context into a compact human-routing channel check.
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 Exa Search
Step id: search
Source: Stableenrich Firecrawl Scrape
Step id: page
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": "search",
"kind": "fetch_transform",
"title": "Search channel evidence",
"request": {
"params": {
"count": 5,
"query": "{{ $.input.researchQuery }}"
},
"sourceId": "stableenrich_exa_search",
"deliveryFormat": "json"
}
}
{
"id": "page",
"kind": "fetch_transform",
"title": "Scrape workflow homepage",
"request": {
"params": {
"url": "{{ $.input.homepageUrl }}",
"formats": [
"markdown",
"text"
],
"onlyMainContent": true
},
"sourceId": "stableenrich_firecrawl_scrape",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build human routing channel check",
"request": {
"params": {
"input": {
"channels": "{{ $.input.channels }}",
"workflowName": "{{ $.input.workflowName }}",
"searchContext": "{{ $.stepsById.search.output }}",
"workflowSurface": "{{ $.stepsById.page.output }}"
},
"prompt": "Build a human-routing channel check. Keep it bounded: one row per requested channel, at most 4 gaps, and at most 4 nextActions. Focus on whether each requested channel is confirmed, only mentioned, or not found in the bounded evidence.",
"responseSchema": {
"type": "object",
"required": [
"workflowName",
"channelStatus",
"summary",
"channelBoard",
"gaps",
"nextActions"
],
"properties": {
"gaps": {
"type": "array",
"items": {
"type": "string",
"maxLength": 120
},
"maxItems": 4,
"description": "Missing or weak channel evidence."
},
"summary": {
"type": "string",
"maxLength": 280
},
"nextActions": {
"type": "array",
"items": {
"type": "string",
"maxLength": 120
},
"maxItems": 4,
"description": "Recommended next actions."
},
"channelBoard": {
"type": "array",
"items": {
"type": "object",
"required": [
"channel",
"supportStatus",
"evidenceNote"
],
"properties": {
"channel": {
"type": "string",
"maxLength": 40
},
"evidenceNote": {
"type": "string",
"maxLength": 120
},
"supportStatus": {
"enum": [
"confirmed",
"mentioned",
"not_found"
],
"type": "string"
}
},
"additionalProperties": false
},
"maxItems": 5
},
"workflowName": {
"type": "string"
},
"channelStatus": {
"enum": [
"ready",
"partial",
"unclear"
],
"type": "string"
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing channel-support review into a compact operator check. Stay grounded in the supplied workflow page and public search context only. Do not invent channel integrations or private support lanes."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}