402.bot
Recipe
live $0.0075 medium Market & Prediction

CoinGecko CLI Price Command Pack

Return the fastest safe CoinGecko CLI command patterns for live price lookups by ID, symbol, and target currency.

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

Endpoint: /v1/recipes/coingecko-cli-price-command-pack/run
Capabilities: coingecko, cli, price, commands

Why pay for this?

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

CoinGecko CLI price docs -> compact ID and symbol command 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 price command source

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: price_source

Stage 3

Scrape CoinGecko CLI dry-run source

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: dryrun_source

Stage 4

Build CoinGecko CLI price command 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 price command source

{
  "id": "price_source",
  "kind": "fetch_transform",
  "title": "Scrape CoinGecko CLI price command source",
  "request": {
    "params": {
      "url": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/price.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"
  }
}

Build CoinGecko CLI price command pack

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build CoinGecko CLI price command pack",
  "request": {
    "params": {
      "input": {
        "readmeDoc": "{{ $.stepsById.readme.output }}",
        "readmeUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/README.md",
        "commandName": "cg price",
        "priceSourceDoc": "{{ $.stepsById.price_source.output }}",
        "priceSourceUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/price.go",
        "dryRunSourceDoc": "{{ $.stepsById.dryrun_source.output }}",
        "dryRunSourceUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/dryrun.go"
      },
      "prompt": "Build a compact command pack for the CoinGecko CLI `price` command. Keep it bounded: at most 3 commandModes, 4 followUps, and 3 riskNotes. Explain when to use IDs versus symbols, what JSON mode returns, and how dry-run helps.",
      "responseSchema": {
        "type": "object",
        "required": [
          "summary",
          "commandModes",
          "outputContract",
          "followUps",
          "links",
          "riskNotes"
        ],
        "properties": {
          "links": {
            "type": "object",
            "required": [
              "readmeUrl",
              "priceSourceUrl",
              "dryRunSourceUrl"
            ],
            "properties": {
              "readmeUrl": {
                "type": "string"
              },
              "priceSourceUrl": {
                "type": "string"
              },
              "dryRunSourceUrl": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "followUps": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 140
            },
            "maxItems": 4,
            "description": "Suggested follow-up commands."
          },
          "riskNotes": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 160
            },
            "maxItems": 3,
            "description": "Risk notes."
          },
          "commandModes": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "mode",
                "command",
                "whenToUse"
              ],
              "properties": {
                "mode": {
                  "type": "string",
                  "maxLength": 40
                },
                "command": {
                  "type": "string",
                  "maxLength": 160
                },
                "whenToUse": {
                  "type": "string",
                  "maxLength": 140
                }
              },
              "additionalProperties": false
            },
            "maxItems": 3
          },
          "outputContract": {
            "type": "object",
            "required": [
              "format",
              "primaryFields",
              "dryRunSupport"
            ],
            "properties": {
              "format": {
                "type": "string",
                "maxLength": 40
              },
              "dryRunSupport": {
                "type": "boolean"
              },
              "primaryFields": {
                "type": "array",
                "items": {
                  "type": "string",
                  "maxLength": 40
                },
                "maxItems": 4,
                "description": "Primary output fields."
              }
            },
            "additionalProperties": false
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are summarizing the official CoinGecko CLI price command only. Stay grounded in the supplied docs and source. Do not invent fields or claim support for unsupported currencies or flags."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}