Why pay for this?
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~9k tokens saved.
Scores a short token watchlist and returns a compact capital-allocation board with next actions.
Turn a short token watchlist into a compact capital-allocation board.
Endpoint: /v1/recipes/watchlist-capital-allocation-pack/run
Capabilities: trading, allocation-pack, watchlist-scoring
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~9k tokens saved.
Scores a short token watchlist and returns a compact capital-allocation 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: Trading Candidate Context Batch
Step id: context
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": "context",
"kind": "fetch_transform",
"title": "Build candidate context batch",
"request": {
"params": {
"chainId": "{{ $.input.chainId }}",
"candidates": "{{ $.input.candidates }}",
"quoteAmountUsd": "{{ $.input.budgetUsd }}",
"settlementToken": "{{ $.input.settlementToken }}"
},
"sourceId": "trading_candidate_context_batch",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build watchlist capital allocation pack",
"request": {
"params": {
"input": {
"chainId": "{{ $.input.chainId }}",
"context": "{{ $.stepsById.context.output }}",
"riskMode": "{{ $.input.riskMode }}",
"budgetUsd": "{{ $.input.budgetUsd }}"
},
"prompt": "Build a watchlist capital-allocation pack. Focus on the allocation rows, the decision notes, and the next actions.",
"responseSchema": {
"type": "object",
"required": [
"chainId",
"summary",
"allocationRows",
"decisionNotes",
"nextActions"
],
"properties": {
"chainId": {
"type": "integer"
},
"summary": {
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"decisionNotes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Notes that explain the allocation shape."
},
"allocationRows": {
"type": "array",
"items": {
"type": "object",
"required": [
"tokenAddress",
"symbol",
"currentUsd",
"targetUsd",
"deltaUsd",
"action",
"note"
],
"properties": {
"note": {
"type": "string"
},
"action": {
"enum": [
"add",
"reduce",
"exit",
"hold"
],
"type": "string"
},
"symbol": {
"type": "string"
},
"deltaUsd": {
"type": "number"
},
"targetUsd": {
"type": "number"
},
"currentUsd": {
"type": "number"
},
"tokenAddress": {
"type": "string"
}
},
"additionalProperties": false
},
"description": "Suggested allocation rows."
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing watchlist comparison into a bounded allocation board. Stay grounded in the supplied candidate context."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}