Why pay for this?
This recipe turns roughly 5 separate tool operations into one paid endpoint call and saves about ~10k tokens saved.
CoinGecko CLI watch docs + dry-run contract -> compact websocket preflight pack
Return the bounded preflight contract for CoinGecko CLI watch sessions without opening a live websocket stream.
Endpoint: /v1/recipes/coingecko-cli-watch-preflight-pack/run
Capabilities: coingecko, cli, watch, websocket-preflight
This recipe turns roughly 5 separate tool operations into one paid endpoint call and saves about ~10k tokens saved.
CoinGecko CLI watch docs + dry-run contract -> compact websocket preflight pack
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: Stableenrich Firecrawl Scrape
Step id: readme
Source: Stableenrich Firecrawl Scrape
Step id: watch_source
Source: Stableenrich Firecrawl Scrape
Step id: dryrun_source
Source: Stableenrich Firecrawl Scrape
Step id: claude_guide
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": "readme",
"kind": "fetch_transform",
"title": "Scrape CoinGecko CLI README",
"request": {
"params": {
"url": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/README.md",
"formats": [
"markdown",
"text"
],
"onlyMainContent": true
},
"sourceId": "stableenrich_firecrawl_scrape",
"deliveryFormat": "json"
}
}
{
"id": "watch_source",
"kind": "fetch_transform",
"title": "Scrape CoinGecko CLI watch command source",
"request": {
"params": {
"url": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/watch.go",
"formats": [
"markdown",
"text"
],
"onlyMainContent": true
},
"sourceId": "stableenrich_firecrawl_scrape",
"deliveryFormat": "json"
}
}
{
"id": "dryrun_source",
"kind": "fetch_transform",
"title": "Scrape CoinGecko CLI dry-run source",
"request": {
"params": {
"url": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/dryrun.go",
"formats": [
"markdown",
"text"
],
"onlyMainContent": true
},
"sourceId": "stableenrich_firecrawl_scrape",
"deliveryFormat": "json"
}
}
{
"id": "claude_guide",
"kind": "fetch_transform",
"title": "Scrape CoinGecko CLI CLAUDE guide",
"request": {
"params": {
"url": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/CLAUDE.md",
"formats": [
"markdown",
"text"
],
"onlyMainContent": true
},
"sourceId": "stableenrich_firecrawl_scrape",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build CoinGecko CLI watch preflight pack",
"request": {
"params": {
"input": {
"readmeDoc": "{{ $.stepsById.readme.output }}",
"readmeUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/README.md",
"commandName": "cg watch",
"claudeGuideDoc": "{{ $.stepsById.claude_guide.output }}",
"claudeGuideUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/CLAUDE.md",
"watchSourceDoc": "{{ $.stepsById.watch_source.output }}",
"watchSourceUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/watch.go",
"dryRunSourceDoc": "{{ $.stepsById.dryrun_source.output }}",
"dryRunSourceUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/dryrun.go"
},
"prompt": "Build a compact preflight pack for the CoinGecko CLI `watch` command. Keep it bounded: at most 4 preflightSteps, 4 symbolResolutionRules, and 3 riskNotes. Focus on dry-run inspection, symbol resolution, validation, output mode, and the paid websocket boundary.",
"responseSchema": {
"type": "object",
"required": [
"summary",
"preflightSteps",
"streamContract",
"symbolResolutionRules",
"links",
"riskNotes"
],
"properties": {
"links": {
"type": "object",
"required": [
"readmeUrl",
"watchSourceUrl",
"dryRunSourceUrl",
"claudeGuideUrl"
],
"properties": {
"readmeUrl": {
"type": "string"
},
"claudeGuideUrl": {
"type": "string"
},
"watchSourceUrl": {
"type": "string"
},
"dryRunSourceUrl": {
"type": "string"
}
},
"additionalProperties": false
},
"summary": {
"type": "string",
"maxLength": 280
},
"riskNotes": {
"type": "array",
"items": {
"type": "string",
"maxLength": 160
},
"maxItems": 3,
"description": "Risk notes."
},
"preflightSteps": {
"type": "array",
"items": {
"type": "object",
"required": [
"step",
"command",
"note"
],
"properties": {
"note": {
"type": "string",
"maxLength": 140
},
"step": {
"type": "string",
"maxLength": 60
},
"command": {
"type": "string",
"maxLength": 180
}
},
"additionalProperties": false
},
"maxItems": 4
},
"streamContract": {
"type": "object",
"required": [
"transport",
"outputMode",
"preflightRequests",
"paidOnly"
],
"properties": {
"paidOnly": {
"type": "boolean"
},
"transport": {
"type": "string",
"maxLength": 24
},
"outputMode": {
"type": "string",
"maxLength": 60
},
"preflightRequests": {
"type": "array",
"items": {
"type": "string",
"maxLength": 140
},
"maxItems": 3,
"description": "Expected preflight request types."
}
},
"additionalProperties": false
},
"symbolResolutionRules": {
"type": "array",
"items": {
"type": "string",
"maxLength": 150
},
"maxItems": 4,
"description": "Rules for resolving symbols before streaming."
}
},
"additionalProperties": false
},
"systemInstruction": "You are summarizing the official CoinGecko CLI watch command only. Stay grounded in the supplied docs and source. Do not imply that this recipe opens a websocket stream or guarantees any live market feed."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}