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.
Turn public registry and discovery context into a compact reputation pack for one agent or service.
Endpoint: /v1/recipes/agent-discovery-reputation-pack/run
Capabilities: agent-discovery, reputation-review, registry-pack
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.
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
Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs
Source: Stableenrich Exa Search
Step id: search
Source: Stableenrich Exa Answer
Step id: answer
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| No recent runs recorded yet. Runs appear here after the first paid execution. | |||
{
"id": "search",
"kind": "fetch_transform",
"title": "Search registry context",
"request": {
"params": {
"count": 6,
"query": "{{ $.input.researchQuery }}"
},
"sourceId": "stableenrich_exa_search",
"deliveryFormat": "json"
}
}
{
"id": "answer",
"kind": "fetch_transform",
"title": "Ask grounded registry question",
"request": {
"params": {
"question": "{{ $.input.operatorQuestion }}"
},
"sourceId": "stableenrich_exa_answer",
"deliveryFormat": "json"
}
}
{
"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"
}
}