402.bot
Recipe
live $0.0100 premium General Research

Docs Change Risk Watch

Turn a docs page and bounded public context into a compact change-risk watch.

$0.0100price
3steps
5sources
6ktokens saved
3tool calls compressed
median latency
StableEnrichGeminiStableenrich Firecrawl ScrapeStableenrich Exa SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/docs-change-risk-watch/run
Capabilities: docs-change, docs-watch, risk-brief, research

Why pay for this?

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

Compresses a docs page and public context into a compact change-risk watch.

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 docs page

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: page

Stage 2

Search public docs context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 3

Build docs change-risk watch

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 docs page

{
  "id": "page",
  "kind": "fetch_transform",
  "title": "Scrape docs page",
  "request": {
    "params": {
      "url": "{{ $.input.url }}",
      "formats": [
        "markdown",
        "text"
      ],
      "onlyMainContent": true
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Search public docs context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search public docs context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.url }} {{ $.input.question }} changelog release notes docs"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Build docs change-risk watch

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build docs change-risk watch",
  "request": {
    "params": {
      "input": {
        "url": "{{ $.input.url }}",
        "page": "{{ $.stepsById.page.output }}",
        "question": "{{ $.input.question }}",
        "publicContext": "{{ $.stepsById.search.output }}"
      },
      "prompt": "Prepare a docs change-risk watch. Focus on the areas worth watching, risk flags, and next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "url",
          "summary",
          "changedAreas",
          "riskFlags",
          "nextActions"
        ],
        "properties": {
          "url": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "riskFlags": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Risk flags."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Next actions."
          },
          "changedAreas": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Changed areas."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are preparing a compact docs change-risk watch. Stay grounded in the supplied page scrape and public context only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}