402.bot
Recipe
live $0.0075 medium General Research

CoinGecko CLI Command Catalog Pack

Return a compact machine-friendly map of the CoinGecko CLI command surface, output modes, and API route parity.

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

Endpoint: /v1/recipes/coingecko-cli-command-catalog-pack/run
Capabilities: coingecko, cli, command-catalog, automation

Why pay for this?

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

CoinGecko CLI command metadata + README -> compact command catalog 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 command catalog source

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: commands_source

Stage 3

Scrape CoinGecko CLI CLAUDE guide

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: claude_guide

Stage 4

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

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

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build CoinGecko CLI command catalog pack",
  "request": {
    "params": {
      "input": {
        "repoUrl": "https://github.com/coingecko/coingecko-cli",
        "readmeDoc": "{{ $.stepsById.readme.output }}",
        "readmeUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/README.md",
        "oasRepoUrl": "https://github.com/coingecko/coingecko-api-oas",
        "productName": "CoinGecko CLI",
        "claudeGuideDoc": "{{ $.stepsById.claude_guide.output }}",
        "commandsSourceDoc": "{{ $.stepsById.commands_source.output }}",
        "commandsSourceUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/commands.go"
      },
      "prompt": "Build a compact command catalog pack for the CoinGecko CLI. Keep it bounded: at most 8 commandRows, 6 apiMappings, 4 routingNotes, and 3 riskNotes. Focus on valid command selection, transport type, auth needs, paid-only boundaries, and the API route parity that an agent should know.",
      "responseSchema": {
        "type": "object",
        "required": [
          "summary",
          "commandRows",
          "apiMappings",
          "routingNotes",
          "links",
          "riskNotes"
        ],
        "properties": {
          "links": {
            "type": "object",
            "required": [
              "repoUrl",
              "readmeUrl",
              "commandsSourceUrl",
              "oasRepoUrl"
            ],
            "properties": {
              "repoUrl": {
                "type": "string"
              },
              "readmeUrl": {
                "type": "string"
              },
              "oasRepoUrl": {
                "type": "string"
              },
              "commandsSourceUrl": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "riskNotes": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 160
            },
            "maxItems": 3,
            "description": "Risk notes."
          },
          "apiMappings": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "command",
                "endpoint"
              ],
              "properties": {
                "command": {
                  "type": "string",
                  "maxLength": 80
                },
                "endpoint": {
                  "type": "string",
                  "maxLength": 120
                },
                "oasOperationId": {
                  "type": "string",
                  "maxLength": 80
                }
              },
              "additionalProperties": false
            },
            "maxItems": 6
          },
          "commandRows": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "name",
                "purpose",
                "transport",
                "requiresAuth",
                "paidOnly",
                "outputFormats"
              ],
              "properties": {
                "name": {
                  "type": "string",
                  "maxLength": 80
                },
                "purpose": {
                  "type": "string",
                  "maxLength": 120
                },
                "paidOnly": {
                  "type": "boolean"
                },
                "transport": {
                  "type": "string",
                  "maxLength": 24
                },
                "requiresAuth": {
                  "type": "boolean"
                },
                "outputFormats": {
                  "type": "array",
                  "items": {
                    "type": "string",
                    "maxLength": 40
                  },
                  "maxItems": 3,
                  "description": "Supported output formats."
                }
              },
              "additionalProperties": false
            },
            "maxItems": 8
          },
          "routingNotes": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 150
            },
            "maxItems": 4,
            "description": "Notes for routing operator tasks to the right command."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are summarizing the official CoinGecko CLI command surface for agent use. Stay grounded in the supplied docs and source only. Do not invent commands, flags, or unsupported output formats."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}