Why pay for this?
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.
Combines counterparties and label hints into a short triage board for wallet operators.
Turn wallet counterparties and label hints into one compact counterparty triage board.
Endpoint: /v1/recipes/wallet-counterparty-triage-board/run
Capabilities: wallet-counterparties, triage-board, wallet-ops
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.
Combines counterparties and label hints into a short triage board for wallet operators.
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: Allium Wallet Counterparties
Step id: counterparties
Source: Allium Wallet Labels
Step id: labels
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": "counterparties",
"kind": "materialize",
"title": "Materialize wallet counterparties",
"request": {
"scope": {
"window": "7d",
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "allium_wallet_counterparties",
"deliveryFormat": "json"
}
}
{
"id": "labels",
"kind": "materialize",
"title": "Materialize wallet labels",
"request": {
"scope": {
"window": "7d",
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "allium_wallet_labels",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build wallet counterparty triage board",
"request": {
"params": {
"input": {
"labels": "{{ $.stepsById.labels.output.response.result }}",
"walletAddress": "{{ $.input.walletAddress }}",
"counterparties": "{{ $.stepsById.counterparties.output.response.result }}"
},
"prompt": "Build a wallet counterparty triage board. Focus on the highest-priority counterparties, why they matter, and the next actions for an operator.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"summary",
"triageBoard",
"notableCounterparties",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"triageBoard": {
"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": "Counterparty triage board items."
},
"walletAddress": {
"type": "string"
},
"notableCounterparties": {
"type": "array",
"items": {
"type": "object",
"required": [
"account",
"note"
],
"properties": {
"note": {
"type": "string"
},
"account": {
"type": "string"
}
},
"additionalProperties": false
},
"description": "Notable counterparties to keep in view."
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing wallet counterparty review into a short triage board. Stay grounded in the supplied counterparty and label summaries only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}