402.bot
Recipe
live $0.0075 medium Provider Monitoring

Questflow Base Agent Handoff Pack

Compress Questflow visible Base wallet and surface signals into a compact handoff-readiness packet.

$0.0075price
4steps
7sources
9ktokens saved
4tool calls compressed
median latency
AlliumStableEnrichGeminiWallet PortfolioAllium Wallet Transactions RawStableenrich Exa SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/questflow-base-agent-handoff-pack/run
Capabilities: agent-handoff, workflow-orchestration, base-agent-economy

Why pay for this?

This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~9k tokens saved.

Combines Base wallet activity, treasury posture, and public surface context into one short handoff-readiness pack.

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

Materialize wallet portfolio

materialize

Source: Wallet Portfolio
Step id: portfolio

Stage 2

Materialize wallet activity

materialize

Source: Allium Wallet Transactions Raw
Step id: activity

Stage 3

Search Questflow surface context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 4

Build Questflow Base agent handoff 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

Materialize wallet portfolio

{
  "id": "portfolio",
  "kind": "materialize",
  "title": "Materialize wallet portfolio",
  "request": {
    "scope": {
      "walletAddress": "{{ $.input.walletAddress }}"
    },
    "network": "eip155:8453",
    "templateId": "wallet_portfolio",
    "deliveryFormat": "json"
  }
}

Materialize wallet activity

{
  "id": "activity",
  "kind": "materialize",
  "title": "Materialize wallet activity",
  "request": {
    "scope": {
      "window": "7d",
      "walletAddress": "{{ $.input.walletAddress }}"
    },
    "network": "eip155:8453",
    "templateId": "allium_wallet_transactions_raw",
    "deliveryFormat": "json"
  }
}

Search Questflow surface context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search Questflow surface context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.primaryOrigin }} Questflow Base agent handoff {{ $.input.operatorGoal }}"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Build Questflow Base agent handoff pack

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build Questflow Base agent handoff pack",
  "request": {
    "params": {
      "input": {
        "activity": "{{ $.stepsById.activity.output.response.result }}",
        "portfolio": "{{ $.stepsById.portfolio.output.response.result }}",
        "operatorGoal": "{{ $.input.operatorGoal }}",
        "primaryOrigin": "{{ $.input.primaryOrigin }}",
        "searchContext": "{{ $.stepsById.search.output }}",
        "walletAddress": "{{ $.input.walletAddress }}"
      },
      "prompt": "Build a Questflow Base agent handoff pack. Focus on the handoff fit, the coordination signals, the treasury signals, and the next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "walletAddress",
          "primaryOrigin",
          "handoffFit",
          "summary",
          "coordinationSignals",
          "treasurySignals",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "handoffFit": {
            "enum": [
              "strong",
              "mixed",
              "weak"
            ],
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Next actions."
          },
          "primaryOrigin": {
            "type": "string"
          },
          "walletAddress": {
            "type": "string"
          },
          "treasurySignals": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Treasury or payout signals."
          },
          "coordinationSignals": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Coordination signals."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing a Questflow-style Base handoff surface into a bounded operator packet. Stay grounded in the supplied wallet portfolio, wallet activity, and public surface context only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}