402.bot
Recipe
live $0.0075 medium Social/X Research

Topic Risk Escalation Board

Turn X search and public web context into a compact topic-risk escalation board.

$0.0075price
3steps
6sources
6ktokens saved
3tool calls compressed
median latency
twit.shStableEnrichGeminiTwitsh Tweet SearchStableenrich Exa SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/topic-risk-escalation-board/run
Capabilities: topic-monitoring, risk-board, social-research

Why pay for this?

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

Combines X search and bounded web context into a compact topic-risk escalation board.

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 X topic context

fetch_transform

Source: Twitsh Tweet Search
Step id: tweets

Stage 2

Search public topic context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 3

Build topic risk escalation board

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 X topic context

{
  "id": "tweets",
  "kind": "fetch_transform",
  "title": "Search X topic context",
  "request": {
    "params": {
      "limit": 10,
      "query": "{{ $.input.query }}"
    },
    "sourceId": "twitsh_tweet_search",
    "deliveryFormat": "json"
  }
}

Search public topic context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search public topic context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.query }} latest issue status"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Build topic risk escalation board

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build topic risk escalation board",
  "request": {
    "params": {
      "input": {
        "query": "{{ $.input.query }}",
        "tweets": "{{ $.stepsById.tweets.output }}",
        "publicContext": "{{ $.stepsById.search.output }}"
      },
      "prompt": "Build a topic risk escalation board. Focus on the highest-priority topic risks, the supporting evidence links, and the next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "query",
          "summary",
          "escalationBoard",
          "evidenceLinks",
          "nextActions"
        ],
        "properties": {
          "query": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "evidenceLinks": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "title",
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Key links worth keeping in the operator packet."
          },
          "escalationBoard": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "title",
                "priority",
                "note"
              ],
              "properties": {
                "note": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                },
                "priority": {
                  "enum": [
                    "high",
                    "medium",
                    "low"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Topic escalation board items."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing topic monitoring into a bounded escalation board. Stay grounded in the supplied X search and public web context only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}