Give any AI agent real-time cryptocurrency market intelligence
An open-source Agent Skill that gives AI coding assistants the ability to fetch live crypto data, analyze trends, and compare coins โ all outputting structured JSON that agents can parse directly.
Fetch real-time prices for any cryptocurrency with market cap, volume, and 24h change data.
python scripts/fetch_prices.py --coins bitcoin,ethereum
Get a snapshot of the top coins by market cap with global market statistics.
python scripts/market_overview.py --top 10 --global-stats
Historical price data with built-in trend detection, volatility scoring, and direction analysis.
python scripts/price_history.py --coin bitcoin --days 30 --analysis
Compare multiple coins side-by-side across price, volume, market cap, and performance metrics.
python scripts/coin_compare.py --coins bitcoin,ethereum,solana
git clone https://github.com/JStrait515/crypto-agent-skill.git
pip install -r crypto-market/scripts/requirements.txt
Copy the crypto-market/ folder into your agent's skills directory. The agent will automatically discover it via the SKILL.md file.
Claude Code: Place in ~/.claude/skills/
Cursor: Place in .cursor/skills/
"What's the current price of Bitcoin?"
"Give me a market overview of the top 10 coins"
"How has Ethereum performed over the last 30 days?"
"Compare BTC, ETH, and SOL"
{
"bitcoin": {
"price": 98234.56,
"market_cap": 1930000000000,
"volume_24h": 45000000000,
"change_24h_pct": 2.34
},
"ethereum": {
"price": 3421.78,
"market_cap": 411000000000,
"volume_24h": 18000000000,
"change_24h_pct": 1.87
}
}
Agent reads SKILL.md metadata and knows when to activate
When user asks about crypto, agent loads full instructions
Agent runs the right script and returns structured JSON