Why pay for this?
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.
Combines X search and bounded web context into a compact topic-risk escalation board.
Turn X search and public web context into a compact topic-risk escalation board.
Endpoint: /v1/recipes/topic-risk-escalation-board/run
Capabilities: topic-monitoring, risk-board, social-research
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.
Combines X search and bounded web context into a compact topic-risk escalation board.
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: Twitsh Tweet Search
Step id: tweets
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": "tweets",
"kind": "fetch_transform",
"title": "Search X topic context",
"request": {
"params": {
"limit": 10,
"query": "{{ $.input.query }}"
},
"sourceId": "twitsh_tweet_search",
"deliveryFormat": "json"
}
}
{
"id": "search",
"kind": "fetch_transform",
"title": "Search public topic context",
"request": {
"params": {
"count": 5,
"query": "{{ $.input.query }} latest issue status"
},
"sourceId": "stableenrich_exa_search",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build topic risk escalation board",
"request": {
"params": {
"input": {
"query": "{{ $.input.query }}",
"tweets": "{{ $.stepsById.tweets.output }}",
"publicContext": "{{ $.stepsById.search.output }}"
},
"prompt": "Build a topic risk escalation board. Focus on the highest-priority topic risks, the supporting evidence links, and the next actions.",
"responseSchema": {
"type": "object",
"required": [
"query",
"summary",
"escalationBoard",
"evidenceLinks",
"nextActions"
],
"properties": {
"query": {
"type": "string"
},
"summary": {
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"evidenceLinks": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"url"
],
"properties": {
"url": {
"type": "string"
},
"title": {
"type": "string"
}
},
"additionalProperties": false
},
"description": "Key links worth keeping in the operator packet."
},
"escalationBoard": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"priority",
"note"
],
"properties": {
"note": {
"type": "string"
},
"title": {
"type": "string"
},
"priority": {
"enum": [
"high",
"medium",
"low"
],
"type": "string"
}
},
"additionalProperties": false
},
"description": "Topic escalation board items."
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing topic monitoring into a bounded escalation board. Stay grounded in the supplied X search and public web context only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}