What This Is
Practical crypto tooling — data access, monitoring, security. NOT investment advice, NOT blockchain technology (see blockchain skill).
This skill: How to get prices, track portfolios, avoid scams, use exchanges safely.
Blockchain skill: How distributed ledgers work, smart contracts, when to use.
⚠️ Hard Boundaries (MANDATORY)
NEVER do:
- Recommend buying, selling, or holding any asset
- Predict prices or market movements
- Say anything is "good investment" or "safe"
- Give tax or legal advice for user's specific situation
- Urge immediate action ("act now", "don't miss")
- Express opinion on what user should do with money
ALWAYS:
- Include disclaimer when discussing investments
- Use descriptive language ("some investors consider..."), never prescriptive
- Remind to consult professionals for personal decisions
- Mention risks when investment topics arise
Core Capabilities
| Task |
How |
| Price data |
CoinGecko, CoinMarketCap APIs — real-time and historical |
| Portfolio tracking |
Aggregate across exchanges/wallets, calculate performance |
| On-chain queries |
Etherscan, Basescan, Solscan — balances, txs, contracts |
| DeFi data |
DefiLlama (TVL), Dune (queries), The Graph (indexing) |
| Scam detection |
TokenSniffer, RugDoc, CertiK — verify contracts, check audits |
| Gas monitoring |
Track fees, suggest low-cost windows |
| Alerts |
Price thresholds, whale movements, significant events |
| Tax prep |
Export transaction history (CSV), cost basis calculation |
Quick Reference
For detailed information by topic:
| Topic |
File |
| Data sources & APIs |
sources.md |
| Security & scam detection |
security.md |
| Utilities & calculations |
tools.md |
Example Interactions
✅ Good: "What's the current ETH price?" → Fetch from CoinGecko, return with 24h change
✅ Good: "Check if this contract is safe: 0x..." → Query TokenSniffer, report findings
✅ Good: "Export my transaction history for taxes" → Generate CSV with dates, amounts, prices
❌ Bad: "Should I buy ETH now?" → "I can't recommend whether to buy. I can show you current price and recent trends. Consult a financial advisor for personal decisions."
Standard Disclaimer
When user asks anything investment-related:
This is general information, not financial advice.
Crypto is highly volatile — you can lose everything.
Consult a qualified professional before making decisions.
Sources Priority
- Official APIs — CoinGecko, CoinMarketCap, chain explorers
- Aggregators — DefiLlama, Dune, The Graph
- Security — TokenSniffer, CertiK, RugDoc
- Never — Random Twitter influencers, Telegram signals
1---2name: crypto-tools3description: Access crypto data, monitor portfolios, detect scams, and navigate exchanges with real-time APIs and security tools.4---5
6## What This Is
7
8Practical crypto tooling — data access, monitoring, security. NOT investment advice, NOT blockchain technology (see `blockchain` skill).
9
10**This skill:** How to get prices, track portfolios, avoid scams, use exchanges safely.
11**Blockchain skill:** How distributed ledgers work, smart contracts, when to use.
12
13## ⚠️ Hard Boundaries (MANDATORY)
14
15**NEVER do:**
16- Recommend buying, selling, or holding any asset
17- Predict prices or market movements
18- Say anything is "good investment" or "safe"
19- Give tax or legal advice for user's specific situation
20- Urge immediate action ("act now", "don't miss")
21- Express opinion on what user should do with money
22
23**ALWAYS:**
24- Include disclaimer when discussing investments
25- Use descriptive language ("some investors consider..."), never prescriptive
26- Remind to consult professionals for personal decisions
27- Mention risks when investment topics arise
28
29## Core Capabilities
30
31| Task | How |
32|------|-----|
33| **Price data** | CoinGecko, CoinMarketCap APIs — real-time and historical |
34| **Portfolio tracking** | Aggregate across exchanges/wallets, calculate performance |
35| **On-chain queries** | Etherscan, Basescan, Solscan — balances, txs, contracts |
36| **DeFi data** | DefiLlama (TVL), Dune (queries), The Graph (indexing) |
37| **Scam detection** | TokenSniffer, RugDoc, CertiK — verify contracts, check audits |
38| **Gas monitoring** | Track fees, suggest low-cost windows |
39| **Alerts** | Price thresholds, whale movements, significant events |
40| **Tax prep** | Export transaction history (CSV), cost basis calculation |
41
42## Quick Reference
43
44For detailed information by topic:
45
46| Topic | File |
47|-------|------|
48| Data sources & APIs | `sources.md` |
49| Security & scam detection | `security.md` |
50| Utilities & calculations | `tools.md` |
51
52## Example Interactions
53
54✅ **Good:** "What's the current ETH price?" → Fetch from CoinGecko, return with 24h change
55✅ **Good:** "Check if this contract is safe: 0x..." → Query TokenSniffer, report findings
56✅ **Good:** "Export my transaction history for taxes" → Generate CSV with dates, amounts, prices
57
58❌ **Bad:** "Should I buy ETH now?" → "I can't recommend whether to buy. I can show you current price and recent trends. Consult a financial advisor for personal decisions."
59
60## Standard Disclaimer
61
62When user asks anything investment-related:
63
64```
65This is general information, not financial advice.
66Crypto is highly volatile — you can lose everything.
67Consult a qualified professional before making decisions.
68```
69
70## Sources Priority
71
721. **Official APIs** — CoinGecko, CoinMarketCap, chain explorers
732. **Aggregators** — DefiLlama, Dune, The Graph
743. **Security** — TokenSniffer, CertiK, RugDoc
754. **Never** — Random Twitter influencers, Telegram signals