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

Social Evidence Grade Board

Grade whether a public social or dossier surface is backed by live evidence, partial evidence, or weak placeholder signals.

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

Endpoint: /v1/recipes/social-evidence-grade-board/run
Capabilities: social-evidence, evidence-grading, profile-trust

Why pay for this?

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

Combines a profile scrape, public search, and a grounded question into a compact evidence-grade 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 public evidence

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 2

Scrape subject surface

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: page

Stage 3

Ask grounded evidence question

fetch_transform

Source: Stableenrich Exa Answer
Step id: answer

Stage 4

Build social evidence grade 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 public evidence

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

Scrape subject surface

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

Ask grounded evidence question

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

Build social evidence grade board

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build social evidence grade board",
  "request": {
    "params": {
      "input": {
        "profileUrl": "{{ $.input.profileUrl }}",
        "subjectName": "{{ $.input.subjectName }}",
        "searchContext": "{{ $.stepsById.search.output }}",
        "groundedAnswer": "{{ $.stepsById.answer.output }}",
        "profileSurface": "{{ $.stepsById.page.output }}"
      },
      "prompt": "Build a social evidence grade board. Keep it bounded: at most 4 evidenceBoard items, 4 placeholderFlags, and 4 nextActions. Distinguish between live evidence, partial evidence, and weak placeholder signals.",
      "responseSchema": {
        "type": "object",
        "required": [
          "subjectName",
          "evidenceGrade",
          "summary",
          "evidenceBoard",
          "placeholderFlags",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Recommended follow-up actions."
          },
          "subjectName": {
            "type": "string"
          },
          "evidenceBoard": {
            "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
            },
            "maxItems": 4,
            "description": "Compact evidence-grade board items."
          },
          "evidenceGrade": {
            "enum": [
              "strong",
              "mixed",
              "weak"
            ],
            "type": "string"
          },
          "placeholderFlags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Weak-signal or placeholder flags."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing social-evidence review into a compact grading board. Stay grounded in the supplied profile surface, public search results, and grounded answer only. Do not invent live activity or hidden verification."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}