402.bot
Recipe
live $0.0075 medium General Research

CoinGecko CLI JSON Automation Pack

Return the safest CoinGecko CLI patterns for JSON mode, dry-run inspection, piping, and machine-readable downstream use.

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

Endpoint: /v1/recipes/coingecko-cli-json-automation-pack/run
Capabilities: coingecko, cli, json-output, automation

Why pay for this?

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

CoinGecko CLI JSON and dry-run docs -> compact automation 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 root command source

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: root_source

Stage 3

Scrape CoinGecko CLI dry-run source

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: dryrun_source

Stage 4

Scrape CoinGecko CLI command catalog source

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: commands_source

Stage 5

Build CoinGecko CLI JSON automation 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 root command source

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

Build CoinGecko CLI JSON automation pack

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build CoinGecko CLI JSON automation pack",
  "request": {
    "params": {
      "input": {
        "readmeDoc": "{{ $.stepsById.readme.output }}",
        "readmeUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/README.md",
        "productName": "CoinGecko CLI",
        "rootSourceDoc": "{{ $.stepsById.root_source.output }}",
        "rootSourceUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/root.go",
        "dryRunSourceDoc": "{{ $.stepsById.dryrun_source.output }}",
        "dryRunSourceUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/dryrun.go",
        "commandsSourceDoc": "{{ $.stepsById.commands_source.output }}",
        "commandsSourceUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/commands.go"
      },
      "prompt": "Build a compact automation pack for the CoinGecko CLI's JSON and dry-run conventions. Keep it bounded: at most 4 commandPatterns, 4 outputRules, 4 dryRunPatterns, and 4 pipingNotes. Focus on machine-readable output, stderr separation, and dry-run inspection.",
      "responseSchema": {
        "type": "object",
        "required": [
          "summary",
          "commandPatterns",
          "outputRules",
          "dryRunPatterns",
          "pipingNotes",
          "links"
        ],
        "properties": {
          "links": {
            "type": "object",
            "required": [
              "readmeUrl",
              "rootSourceUrl",
              "dryRunSourceUrl",
              "commandsSourceUrl"
            ],
            "properties": {
              "readmeUrl": {
                "type": "string"
              },
              "rootSourceUrl": {
                "type": "string"
              },
              "dryRunSourceUrl": {
                "type": "string"
              },
              "commandsSourceUrl": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "outputRules": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 160
            },
            "maxItems": 4,
            "description": "Rules for JSON output and stderr separation."
          },
          "pipingNotes": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 160
            },
            "maxItems": 4,
            "description": "Piping and automation notes."
          },
          "dryRunPatterns": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 160
            },
            "maxItems": 4,
            "description": "Dry-run usage patterns."
          },
          "commandPatterns": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "goal",
                "command",
                "note"
              ],
              "properties": {
                "goal": {
                  "type": "string",
                  "maxLength": 60
                },
                "note": {
                  "type": "string",
                  "maxLength": 140
                },
                "command": {
                  "type": "string",
                  "maxLength": 180
                }
              },
              "additionalProperties": false
            },
            "maxItems": 4
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are summarizing the official CoinGecko CLI automation conventions only. Stay grounded in the supplied docs and source. Do not invent output guarantees beyond what the repo explicitly documents."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}