402.bot
Recipe
live $0.0075 medium Provider Monitoring

Provider Docs Delta Brief

Compare the current provider docs scrape against an optional previous snapshot and return only the meaningful deltas.

$0.0075price
2steps
4sources
5ktokens saved
2tool calls compressed
median latency
StableEnrichGeminiStableenrich Firecrawl ScrapeGoogle Gemini Flash Structured

Endpoint: /v1/recipes/provider-docs-delta-brief/run
Capabilities: docs-delta, provider-monitoring, change-detection

Why pay for this?

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

Scrapes provider docs once and returns only the meaningful changes, unchanged assumptions, and next actions.

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

Scrape provider docs

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: docs

Stage 2

Build provider docs delta brief

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

Scrape provider docs

{
  "id": "docs",
  "kind": "fetch_transform",
  "title": "Scrape provider docs",
  "request": {
    "params": {
      "url": "{{ $.input.docsUrl }}"
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Build provider docs delta brief

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build provider docs delta brief",
  "request": {
    "params": {
      "input": {
        "docs": "{{ $.stepsById.docs.output }}",
        "docsUrl": "{{ $.input.docsUrl }}",
        "previousSnapshot": "{{ $.input.previousSnapshot }}"
      },
      "prompt": "Build a provider docs delta brief. Compare the current docs scrape against any previous snapshot, then return only meaningful changes, unchanged assumptions, and next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "docsUrl",
          "summary",
          "currentSnapshot",
          "whatChanged",
          "unchangedAssumptions",
          "nextActions"
        ],
        "properties": {
          "docsUrl": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "whatChanged": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "label",
                "change",
                "significance"
              ],
              "properties": {
                "label": {
                  "type": "string"
                },
                "change": {
                  "type": "string"
                },
                "significance": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Meaningful changes relative to the previous snapshot."
          },
          "currentSnapshot": {
            "type": "object",
            "description": "Current bounded docs snapshot.",
            "additionalProperties": true
          },
          "unchangedAssumptions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Important assumptions that still appear unchanged."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing docs drift into a bounded delta brief. If no previous snapshot is provided, return the current-state packet with an empty or minimal change section."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}