Why pay for this?
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~5k tokens saved.
Combines the root post, replies, and quotes into a compact escalation board with next actions.
Turn a post, its replies, and its quote tweets into a compact escalation board for operators.
Endpoint: /v1/recipes/x-post-reply-escalation-brief/run
Capabilities: x-replies, social-triage, escalation-board
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~5k tokens saved.
Combines the root post, replies, and quotes into a compact escalation board with 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: Twitsh Tweet Lookup
Step id: tweet
Source: Twitsh Tweet Replies
Step id: replies
Source: Twitsh Tweet Quotes
Step id: quotes
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": "tweet",
"kind": "fetch_transform",
"title": "Load root post",
"request": {
"params": {
"id": "{{ $.input.tweetId }}"
},
"sourceId": "twitsh_tweet_lookup",
"deliveryFormat": "json"
}
}
{
"id": "replies",
"kind": "fetch_transform",
"title": "Load replies",
"request": {
"params": {
"id": "{{ $.input.tweetId }}"
},
"sourceId": "twitsh_tweet_replies",
"deliveryFormat": "json"
}
}
{
"id": "quotes",
"kind": "fetch_transform",
"title": "Load quote tweets",
"request": {
"params": {
"id": "{{ $.input.tweetId }}"
},
"sourceId": "twitsh_tweet_quotes",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build X post reply escalation brief",
"request": {
"params": {
"input": {
"tweet": "{{ $.stepsById.tweet.output }}",
"quotes": "{{ $.stepsById.quotes.output }}",
"replies": "{{ $.stepsById.replies.output }}",
"tweetId": "{{ $.input.tweetId }}"
},
"prompt": "Build an X post reply escalation brief. Focus on whether the conversation needs escalation, the compact triage board, and the next actions.",
"responseSchema": {
"type": "object",
"required": [
"tweetId",
"summary",
"escalationBoard",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"tweetId": {
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"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": "Reply and quote escalation items."
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing social reply review into a short escalation board. Stay grounded in the supplied tweet, reply, and quote context only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}