402.bot
Recipe
live $0.0075 medium General Research

Docs To Runbook Brief

Turn one docs site crawl into a compact runbook brief with sections, guardrails, and next actions.

$0.0075price
2steps
4sources
5ktokens saved
2tool calls compressed
median latency
CloudflareGeminiCloudflare CrawlGoogle Gemini Flash Structured

Endpoint: /v1/recipes/docs-to-runbook-brief/run
Capabilities: docs-runbook, operator-packet, runbook-brief

Why pay for this?

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

Crawls one docs site and compresses it into a compact runbook packet with guardrails 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

Crawl docs site

fetch_transform

Source: Cloudflare Crawl
Step id: crawl

Stage 2

Build docs to runbook 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

Crawl docs site

{
  "id": "crawl",
  "kind": "fetch_transform",
  "title": "Crawl docs site",
  "request": {
    "params": {
      "url": "{{ $.input.docsUrl }}",
      "depth": 2,
      "limit": 6
    },
    "sourceId": "cloudflare_crawl",
    "deliveryFormat": "json"
  }
}

Build docs to runbook brief

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build docs to runbook brief",
  "request": {
    "params": {
      "input": {
        "crawl": "{{ $.stepsById.crawl.output }}",
        "docsUrl": "{{ $.input.docsUrl }}"
      },
      "prompt": "Build a docs-to-runbook brief. Focus on the compact runbook sections, the guardrails, and the next actions an operator should take.",
      "responseSchema": {
        "type": "object",
        "required": [
          "docsUrl",
          "summary",
          "runbookSections",
          "guardrails",
          "nextActions"
        ],
        "properties": {
          "docsUrl": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "guardrails": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Important guardrails or cautions."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "runbookSections": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "section",
                "detail"
              ],
              "properties": {
                "detail": {
                  "type": "string"
                },
                "section": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Compact runbook sections."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing a docs crawl into a bounded runbook packet. Stay grounded in the supplied crawl only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}