402.bot
Recipe
live $0.0075 medium Market & Prediction

CoinGecko CLI Watch Preflight Pack

Return the bounded preflight contract for CoinGecko CLI watch sessions without opening a live websocket stream.

$0.0075price
5steps
5sources
10ktokens saved
5tool calls compressed
median latency
CoinGeckoGitHubGeminiStableenrich Firecrawl ScrapeGoogle Gemini Flash Structured

Endpoint: /v1/recipes/coingecko-cli-watch-preflight-pack/run
Capabilities: coingecko, cli, watch, websocket-preflight

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

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 CoinGecko CLI README

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: readme

Stage 2

Scrape CoinGecko CLI watch command source

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: watch_source

Stage 3

Scrape CoinGecko CLI dry-run source

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: dryrun_source

Stage 4

Scrape CoinGecko CLI CLAUDE guide

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: claude_guide

Stage 5

Build CoinGecko CLI watch preflight pack

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 CoinGecko CLI README

{
  "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"
  }
}

Scrape CoinGecko CLI watch command source

{
  "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"
  }
}

Scrape CoinGecko CLI dry-run source

{
  "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"
  }
}

Scrape CoinGecko CLI CLAUDE guide

{
  "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"
  }
}

Build CoinGecko CLI watch preflight pack

{
  "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"
  }
}