402.bot
Recipe
live $0.0100 premium General Research

DePIN Sensor Agent Dossier

Turn public device, telemetry, and control-surface claims into a compact dossier for one DePIN-style agent.

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

Endpoint: /v1/recipes/depin-sensor-agent-dossier/run
Capabilities: depin, sensor-agents, device-ops, operator-dossier

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.

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

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 2

Scrape agent surface

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: page

Stage 3

Ask grounded DePIN question

fetch_transform

Source: Stableenrich Exa Answer
Step id: answer

Stage 4

Build DePIN sensor agent dossier

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

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

Scrape agent surface

{
  "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"
  }
}

Ask grounded DePIN question

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

Build DePIN sensor agent dossier

{
  "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"
  }
}