skills/coingecko-historical/SKILL.md
Use to open CoinGecko historical-data pages in the default browser for a coin/date or to show historical price on date X.
npx skillsauth add paulrberg/agent-skills coingecko-historicalInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Open the CoinGecko historical-data page for a coin in the user's default browser, centered on a one-day window around a target date.
bitcoin, ethereum, solana). This is the same ID used by the CoinGecko API and the cg CLI — not the ticker symbol. If the user provides only a symbol or name, resolve it first (e.g., cg search <term> -o json or https://api.coingecko.com/api/v3/search?query=<term>).YYYY-MM-DD format.Compute DATE-1 (the day before date) and DATE+1 (the day after date), then open:
https://coingecko.com/en/coins/<coin-id>/historical_data?start=<DATE-1>&end=<DATE+1>
Use the macOS open command:
open "https://coingecko.com/en/coins/<coin-id>/historical_data?start=<DATE-1>&end=<DATE+1>"
Use GNU/BSD date to compute the surrounding days. BSD date (default on macOS) syntax:
start=$(date -j -v-1d -f "%Y-%m-%d" "$DATE" +%Y-%m-%d)
end=$(date -j -v+1d -f "%Y-%m-%d" "$DATE" +%Y-%m-%d)
User invokes: /coingecko-historical bitcoin 2024-03-14
Run:
open "https://coingecko.com/en/coins/bitcoin/historical_data?start=2024-03-13&end=2024-03-15"
open is macOS-only. On Linux substitute xdg-open; on Windows use start.date is missing or malformed.testing
Use ONLY to check or update the project-scoped agent skills installed under .agents/skills so they match the current state of the repo. Do not trigger for creating, finding, or installing skills, or for README/AGENTS.md updates.
testing
Use when CSV, TSV, or Excel (.xlsx) is the primary input/output: inspect, clean, transform, dedupe, merge, validate, convert, recalc formulas, or create/fix spreadsheets. Do not trigger when tabular data is incidental.
development
This skill should be used when the user asks to consult Codex/GPT for planning or code review, or wants a second opinion on code. Trigger phrases include "ask Codex", "consult Codex", "second opinion on code", "consult the oracle". NOT for implementation tasks.
databases
This skill should be used when the user asks to create a monochrome technical diagram, schematic, or systems/architecture diagram in black-and-white line-art style. Trigger phrases include "create a diagram", "monochrome diagram", "systems diagram", "draw a schematic".