402.bot
Recipe
live $0.0075 medium General Research

CoinGecko CLI Error Triage Board

Return the main CoinGecko CLI error classes, likely causes, and the smallest safe recovery path for operators.

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

Endpoint: /v1/recipes/coingecko-cli-error-triage-board/run
Capabilities: coingecko, cli, error-triage, ops

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 error model + auth and status docs -> compact triage board

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 CLAUDE guide

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: claude_guide

Stage 3

Scrape CoinGecko CLI auth command source

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: auth_source

Stage 4

Scrape CoinGecko CLI status command source

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: status_source

Stage 5

Build CoinGecko CLI error triage board

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

Scrape CoinGecko CLI auth command source

{
  "id": "auth_source",
  "kind": "fetch_transform",
  "title": "Scrape CoinGecko CLI auth command source",
  "request": {
    "params": {
      "url": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/auth.go",
      "formats": [
        "markdown",
        "text"
      ],
      "onlyMainContent": true
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Scrape CoinGecko CLI status command source

{
  "id": "status_source",
  "kind": "fetch_transform",
  "title": "Scrape CoinGecko CLI status command source",
  "request": {
    "params": {
      "url": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/status.go",
      "formats": [
        "markdown",
        "text"
      ],
      "onlyMainContent": true
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Build CoinGecko CLI error triage board

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build CoinGecko CLI error triage board",
  "request": {
    "params": {
      "input": {
        "readmeDoc": "{{ $.stepsById.readme.output }}",
        "readmeUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/README.md",
        "productName": "CoinGecko CLI",
        "authSourceDoc": "{{ $.stepsById.auth_source.output }}",
        "authSourceUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/auth.go",
        "claudeGuideDoc": "{{ $.stepsById.claude_guide.output }}",
        "claudeGuideUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/CLAUDE.md",
        "statusSourceDoc": "{{ $.stepsById.status_source.output }}",
        "statusSourceUrl": "https://raw.githubusercontent.com/coingecko/coingecko-cli/main/cmd/status.go"
      },
      "prompt": "Build a compact error triage board for the CoinGecko CLI. Keep it bounded: at most 4 errorRows, 4 diagnostics, 4 safeRecoverySteps, and 3 riskNotes. Focus on auth misconfiguration, plan restrictions, rate limiting, and bad command usage.",
      "responseSchema": {
        "type": "object",
        "required": [
          "summary",
          "errorRows",
          "diagnostics",
          "safeRecoverySteps",
          "links",
          "riskNotes"
        ],
        "properties": {
          "links": {
            "type": "object",
            "required": [
              "readmeUrl",
              "claudeGuideUrl",
              "authSourceUrl",
              "statusSourceUrl"
            ],
            "properties": {
              "readmeUrl": {
                "type": "string"
              },
              "authSourceUrl": {
                "type": "string"
              },
              "claudeGuideUrl": {
                "type": "string"
              },
              "statusSourceUrl": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "errorRows": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "errorClass",
                "likelyCause",
                "fix"
              ],
              "properties": {
                "fix": {
                  "type": "string",
                  "maxLength": 140
                },
                "errorClass": {
                  "type": "string",
                  "maxLength": 60
                },
                "likelyCause": {
                  "type": "string",
                  "maxLength": 140
                }
              },
              "additionalProperties": false
            },
            "maxItems": 4
          },
          "riskNotes": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 160
            },
            "maxItems": 3,
            "description": "Risk notes."
          },
          "diagnostics": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 150
            },
            "maxItems": 4,
            "description": "Diagnostic checks."
          },
          "safeRecoverySteps": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 150
            },
            "maxItems": 4,
            "description": "Safe recovery steps."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are summarizing the official CoinGecko CLI error and setup model only. Stay grounded in the supplied docs and source. Do not invent undocumented retry rules or support channels."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}