402.bot
Recipe
live $0.0100 premium Provider Monitoring

Bridge Incident Watch

Combine bridge route visibility and public chatter into a compact bridge incident watch.

$0.0100price
4steps
8sources
7ktokens saved
4tool calls compressed
median latency
402.bot Routetwit.shStableEnrichGeminiRoute Capability CandidatesTwitsh Tweet SearchStableenrich Exa SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/bridge-incident-watch/run
Capabilities: bridge, incident-watch, crosschain-ops, providers

Why pay for this?

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

Pairs the bridge route shortlist with public chatter to explain whether bridge conditions look routine or degraded.

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

Rank bridge-capable routes

fetch_transform

Source: Route Capability Candidates
Step id: routes

Stage 2

Search bridge chatter

fetch_transform

Source: Twitsh Tweet Search
Step id: tweets

Stage 3

Search bridge incident context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 4

Build bridge incident watch

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

Rank bridge-capable routes

{
  "id": "routes",
  "kind": "fetch_transform",
  "title": "Rank bridge-capable routes",
  "request": {
    "params": {
      "limit": 5,
      "capability": "bridge"
    },
    "sourceId": "route_capability_candidates",
    "deliveryFormat": "json"
  }
}

Search bridge chatter

{
  "id": "tweets",
  "kind": "fetch_transform",
  "title": "Search bridge chatter",
  "request": {
    "params": {
      "phrase": "{{ $.input.query }}",
      "minLikes": 2
    },
    "sourceId": "twitsh_tweet_search",
    "deliveryFormat": "json"
  }
}

Search bridge incident context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search bridge incident context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.query }} bridge status delay incident liquidity"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Build bridge incident watch

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build bridge incident watch",
  "request": {
    "params": {
      "input": {
        "query": "{{ $.input.query }}",
        "routes": "{{ $.stepsById.routes.output }}",
        "tweets": "{{ $.stepsById.tweets.output }}",
        "publicContext": "{{ $.stepsById.search.output }}"
      },
      "prompt": "Prepare a bridge incident watch. Focus on severity, incident signals, operational checks, and next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "query",
          "severity",
          "summary",
          "incidentSignals",
          "operationalChecks",
          "nextActions"
        ],
        "properties": {
          "query": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "severity": {
            "enum": [
              "low",
              "medium",
              "high"
            ],
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Next actions."
          },
          "incidentSignals": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Incident signals."
          },
          "operationalChecks": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Operational checks."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are preparing a compact bridge incident watch. Stay grounded in the supplied route shortlist and public context only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}