Why pay for this?
This recipe turns roughly 6 separate tool operations into one paid endpoint call and saves about ~9k tokens saved.
Combines a public page scrape, search context, and a grounded question into a compact DePIN sensor-agent dossier.
Turn public device, telemetry, and control-surface claims into a compact dossier for one DePIN-style agent.
Endpoint: /v1/recipes/depin-sensor-agent-dossier/run
Capabilities: depin, sensor-agents, device-ops, operator-dossier
This recipe turns roughly 6 separate tool operations into one paid endpoint call and saves about ~9k tokens saved.
Combines a public page scrape, search context, and a grounded question into a compact DePIN sensor-agent dossier.
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 Firecrawl Scrape
Step id: page
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 DePIN evidence",
"request": {
"params": {
"count": 5,
"query": "{{ $.input.researchQuery }}"
},
"sourceId": "stableenrich_exa_search",
"deliveryFormat": "json"
}
}
{
"id": "page",
"kind": "fetch_transform",
"title": "Scrape agent surface",
"request": {
"params": {
"url": "{{ $.input.agentUrl }}",
"formats": [
"markdown",
"text"
],
"onlyMainContent": true
},
"sourceId": "stableenrich_firecrawl_scrape",
"deliveryFormat": "json"
}
}
{
"id": "answer",
"kind": "fetch_transform",
"title": "Ask grounded DePIN question",
"request": {
"params": {
"question": "{{ $.input.operatorQuestion }}"
},
"sourceId": "stableenrich_exa_answer",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build DePIN sensor agent dossier",
"request": {
"params": {
"input": {
"agentUrl": "{{ $.input.agentUrl }}",
"agentName": "{{ $.input.agentName }}",
"agentSurface": "{{ $.stepsById.page.output }}",
"searchContext": "{{ $.stepsById.search.output }}",
"groundedAnswer": "{{ $.stepsById.answer.output }}"
},
"prompt": "Build a DePIN sensor-agent dossier. Keep it bounded: at most 4 systemSections, 4 proofSignals, 4 operationalRisks, and 4 nextActions. Focus on device claims, telemetry posture, control-surface clarity, and operational risk.",
"responseSchema": {
"type": "object",
"required": [
"agentName",
"signalConfidence",
"summary",
"systemSections",
"proofSignals",
"operationalRisks",
"nextActions"
],
"properties": {
"summary": {
"type": "string",
"maxLength": 280
},
"agentName": {
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string",
"maxLength": 120
},
"maxItems": 4,
"description": "Recommended next actions."
},
"proofSignals": {
"type": "array",
"items": {
"type": "string",
"maxLength": 120
},
"maxItems": 4,
"description": "Signals that strengthen or weaken the device claims."
},
"systemSections": {
"type": "array",
"items": {
"type": "object",
"required": [
"section",
"detail"
],
"properties": {
"detail": {
"type": "string"
},
"section": {
"type": "string"
}
},
"additionalProperties": false
},
"maxItems": 4,
"description": "Compact DePIN or sensor workflow sections."
},
"operationalRisks": {
"type": "array",
"items": {
"type": "string",
"maxLength": 120
},
"maxItems": 4,
"description": "Main operational risks."
},
"signalConfidence": {
"enum": [
"high",
"medium",
"low"
],
"type": "string"
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing DePIN or sensor-agent review into a compact operator dossier. Stay grounded in the supplied public page, search context, and grounded answer only. Do not invent live telemetry feeds, devices, or safety controls."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}