402.bot
Recipe
live $0.0075 medium Provider Monitoring

Agent Discovery Reputation Pack

Turn public registry and discovery context into a compact reputation pack for one agent or service.

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

Endpoint: /v1/recipes/agent-discovery-reputation-pack/run
Capabilities: agent-discovery, reputation-review, registry-pack

Why pay for this?

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

Combines public search and a grounded question into a compact agent discovery and reputation 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 registry context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 2

Ask grounded registry question

fetch_transform

Source: Stableenrich Exa Answer
Step id: answer

Stage 3

Build agent discovery reputation 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 registry context

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

Ask grounded registry question

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

Build agent discovery reputation pack

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build agent discovery reputation pack",
  "request": {
    "params": {
      "input": {
        "subjectName": "{{ $.input.subjectName }}",
        "registryFocus": "{{ $.input.registryFocus }}",
        "searchContext": "{{ $.stepsById.search.output }}",
        "groundedAnswer": "{{ $.stepsById.answer.output }}"
      },
      "prompt": "Build an agent discovery reputation pack. Keep it bounded: at most 4 registrySignals, 4 reputationNotes, and 4 nextActions. Focus on whether the subject looks discoverable, reputable, and practically routable from the visible evidence.",
      "responseSchema": {
        "type": "object",
        "required": [
          "subjectName",
          "routingFit",
          "summary",
          "registrySignals",
          "reputationNotes",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "routingFit": {
            "enum": [
              "high",
              "medium",
              "low"
            ],
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Recommended next actions."
          },
          "subjectName": {
            "type": "string"
          },
          "registrySignals": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "registry",
                "signal",
                "operatorNote"
              ],
              "properties": {
                "signal": {
                  "type": "string",
                  "maxLength": 120
                },
                "registry": {
                  "type": "string",
                  "maxLength": 80
                },
                "operatorNote": {
                  "type": "string",
                  "maxLength": 120
                }
              },
              "additionalProperties": false
            },
            "maxItems": 4
          },
          "reputationNotes": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Reputation or trust notes."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing registry and reputation review into a compact operator pack. Stay grounded in the supplied search context and grounded answer only. Do not invent hidden registry scores or private trust evidence."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}