402.bot
Recipe
live $0.0100 premium Market & Prediction

Watchlist Capital Allocation Pack

Turn a short token watchlist into a compact capital-allocation board.

$0.0100price
2steps
6sources
9ktokens saved
4tool calls compressed
median latency
ZapperMessariUniswapGeminiTrading Candidate Context BatchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/watchlist-capital-allocation-pack/run
Capabilities: trading, allocation-pack, watchlist-scoring

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.

Creator

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

Usage and trust

Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs

Pipeline

Stage 1

Build candidate context batch

fetch_transform

Source: Trading Candidate Context Batch
Step id: context

Stage 2

Build watchlist capital allocation pack

fetch_transform

Source: Google Gemini Flash Structured
Step id: summarize

Recent runs

RunStatusTriggerQueued
No recent runs recorded yet. Runs appear here after the first paid execution.
View raw step spec

Build candidate context batch

{
  "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"
  }
}

Build watchlist capital allocation pack

{
  "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"
  }
}