402.bot
Recipe
live $0.0075 medium General Research

Human Routing Channel Check

Check whether a workflow really exposes the human-routing channels it claims.

$0.0075price
3steps
5sources
7ktokens saved
5tool calls compressed
median latency
StableEnrichGeminiStableenrich Exa SearchStableenrich Firecrawl ScrapeGoogle Gemini Flash Structured

Endpoint: /v1/recipes/human-routing-channel-check/run
Capabilities: human-routing, channel-check, support-surface

Why pay for this?

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

Combines a public page scrape and search context into a compact human-routing channel check.

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 channel evidence

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 2

Scrape workflow homepage

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: page

Stage 3

Build human routing channel check

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 channel evidence

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

Scrape workflow homepage

{
  "id": "page",
  "kind": "fetch_transform",
  "title": "Scrape workflow homepage",
  "request": {
    "params": {
      "url": "{{ $.input.homepageUrl }}",
      "formats": [
        "markdown",
        "text"
      ],
      "onlyMainContent": true
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Build human routing channel check

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build human routing channel check",
  "request": {
    "params": {
      "input": {
        "channels": "{{ $.input.channels }}",
        "workflowName": "{{ $.input.workflowName }}",
        "searchContext": "{{ $.stepsById.search.output }}",
        "workflowSurface": "{{ $.stepsById.page.output }}"
      },
      "prompt": "Build a human-routing channel check. Keep it bounded: one row per requested channel, at most 4 gaps, and at most 4 nextActions. Focus on whether each requested channel is confirmed, only mentioned, or not found in the bounded evidence.",
      "responseSchema": {
        "type": "object",
        "required": [
          "workflowName",
          "channelStatus",
          "summary",
          "channelBoard",
          "gaps",
          "nextActions"
        ],
        "properties": {
          "gaps": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Missing or weak channel evidence."
          },
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Recommended next actions."
          },
          "channelBoard": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "channel",
                "supportStatus",
                "evidenceNote"
              ],
              "properties": {
                "channel": {
                  "type": "string",
                  "maxLength": 40
                },
                "evidenceNote": {
                  "type": "string",
                  "maxLength": 120
                },
                "supportStatus": {
                  "enum": [
                    "confirmed",
                    "mentioned",
                    "not_found"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "maxItems": 5
          },
          "workflowName": {
            "type": "string"
          },
          "channelStatus": {
            "enum": [
              "ready",
              "partial",
              "unclear"
            ],
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing channel-support review into a compact operator check. Stay grounded in the supplied workflow page and public search context only. Do not invent channel integrations or private support lanes."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}