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.
Turn one docs site crawl into a compact runbook brief with sections, guardrails, and next actions.
Endpoint: /v1/recipes/docs-to-runbook-brief/run
Capabilities: docs-runbook, operator-packet, runbook-brief
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.
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: Cloudflare Crawl
Step id: crawl
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": "crawl",
"kind": "fetch_transform",
"title": "Crawl docs site",
"request": {
"params": {
"url": "{{ $.input.docsUrl }}",
"depth": 2,
"limit": 6
},
"sourceId": "cloudflare_crawl",
"deliveryFormat": "json"
}
}
{
"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"
}
}