402.bot
Recipe
live $0.0075 medium Provider Monitoring

Virtuals Base Agent Surface Pack

Turn a Virtuals-adjacent Base surface and bounded public context into a compact operator pack.

$0.0075price
4steps
6sources
9ktokens saved
4tool calls compressed
median latency
StableEnrichGeminiStableenrich Exa SearchStableenrich Firecrawl ScrapeStableenrich Exa AnswerGoogle Gemini Flash Structured

Endpoint: /v1/recipes/virtuals-base-agent-surface-pack/run
Capabilities: virtuals, surface-pack, base-launch

Why pay for this?

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

Combines a live Virtuals-adjacent surface and public context into a compact Base operator 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

Search Virtuals-adjacent context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 2

Scrape Virtuals-adjacent surface

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: page

Stage 3

Ask grounded Virtuals question

fetch_transform

Source: Stableenrich Exa Answer
Step id: answer

Stage 4

Build Virtuals Base agent surface 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

Search Virtuals-adjacent context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search Virtuals-adjacent context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.researchQuery }}"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Scrape Virtuals-adjacent surface

{
  "id": "page",
  "kind": "fetch_transform",
  "title": "Scrape Virtuals-adjacent surface",
  "request": {
    "params": {
      "url": "{{ $.input.launchUrl }}",
      "formats": [
        "markdown",
        "text"
      ],
      "onlyMainContent": true
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Ask grounded Virtuals question

{
  "id": "answer",
  "kind": "fetch_transform",
  "title": "Ask grounded Virtuals question",
  "request": {
    "params": {
      "question": "{{ $.input.operatorGoal }}"
    },
    "sourceId": "stableenrich_exa_answer",
    "deliveryFormat": "json"
  }
}

Build Virtuals Base agent surface pack

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build Virtuals Base agent surface pack",
  "request": {
    "params": {
      "input": {
        "page": "{{ $.stepsById.page.output }}",
        "projectName": "{{ $.input.projectName }}",
        "operatorGoal": "{{ $.input.operatorGoal }}",
        "searchContext": "{{ $.stepsById.search.output }}",
        "groundedAnswer": "{{ $.stepsById.answer.output }}"
      },
      "prompt": "Build a Virtuals Base agent surface pack. Focus on the surface verdict, the bounded surface rows, the cautions, and the next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "projectName",
          "surfaceVerdict",
          "summary",
          "surfaceRows",
          "cautions",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "cautions": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Cautions."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Next actions."
          },
          "projectName": {
            "type": "string"
          },
          "surfaceRows": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "lane",
                "note",
                "operatorTakeaway"
              ],
              "properties": {
                "lane": {
                  "type": "string",
                  "maxLength": 60
                },
                "note": {
                  "type": "string",
                  "maxLength": 120
                },
                "operatorTakeaway": {
                  "type": "string",
                  "maxLength": 120
                }
              },
              "additionalProperties": false
            },
            "maxItems": 4,
            "description": "Virtuals surface rows."
          },
          "surfaceVerdict": {
            "enum": [
              "execution",
              "launch",
              "watch"
            ],
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing a Virtuals-adjacent Base surface into a bounded operator pack. Stay grounded in the supplied page, public search context, and grounded answer only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}