Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Vo1ganin/crypto-claude-skills --skill solscangit clone --depth 1 https://github.com/Vo1ganin/crypto-claude-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/vo1ganin/crypto-claude-skills/solscan)<a href="https://agentmods.dev/skills/vo1ganin/crypto-claude-skills/solscan"><img src="https://agentmods.dev/badge/skills/vo1ganin/crypto-claude-skills/solscan/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/vo1ganin/crypto-claude-skills/solscan"><img src="https://agentmods.dev/badge/skills/vo1ganin/crypto-claude-skills/solscan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00175 | $0.02139 |
| Opus 5 | $0.00088 | $0.01069 |
| Sonnet 5 | $0.00035 | $0.00428 |
| Haiku 4.5 | $0.00017 | $0.00214 |
Grade A, and why
solscan scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 181 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Solscan Pro API Skill
You have access to the Solscan Pro API v2 for Solana data.
Read reference files when you need depth:
references/endpoints.md— full endpoint catalog with all parametersreferences/limits.md— CU model, rate limits, page_size gotchasreferences/batch-patterns.md— MCP vs script decision, multi-endpoints, export endpointsreferences/examples/— ready-to-run Python scripts for common batch tasks
🚨 Rule #1: scripts for batch, MCP for exploration
The #1 way this API gets wasted is calling MCP tools in a loop. Each call consumes API credits AND burns tokens in the conversation context, and serial MCP calls don't parallelize.
| Task size | Tool |
|---|---|
| 1–10 API calls, exploratory | MCP tools directly |
| 10–30 calls | Script preferred, especially if same shape of request repeats |
| > 30 calls | Always write a script |
| Any batch where responses are parsed, aggregated, or filtered | Always a script |
When writing a script: async aiohttp + asyncio.Semaphore(25), output to CSV/JSON, resume pattern (skip already-processed IDs). See references/examples/ for working templates.
🚨 Rule #2: use multi-endpoints and exports
Solscan charges 100 CU per request flatly, so batch endpoints are 50× cheaper than per-item loops:
| Instead of | Use |
|---|---|
50 × transaction/detail (5000 CU) |
1 × transaction/detail/multi (100 CU) |
50 × token/meta |
1 × token/meta/multi |
50 × account/metadata |
1 × account/metadata/multi |
Paginating account/defi/activities past 10k rows |
account/defi/activities/export |
Paginating account/transfer for full history |
account/transfer/export |
Before writing a loop, check if a multi-endpoint exists (see references/endpoints.md).
🚨 Rule #3: page_size is DISCRETE
Allowed values: 10, 20, 30, 40, 60, 100.
page_size=50→ fails silently or returns errorpage_size=100→ works, use this for batchpage_size=200+→ fails
What ships with it
7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 181 lines · 175 tokens per session scan A 4658d21d8aa1
solscan is a skill published in the GitHub repository Vo1ganin/crypto-claude-skills (2 stars, last pushed 21d ago), licensed MIT. It adds 175 tokens to every session and 2,139 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
crypto-mining-setup
Setup and optimize cryptocurrency mining operations — AI-powered mining (soul.md protocol), parallel agent deployment, accumulation strategies, and performance optimization.
agent-wallet
Operate a non-custodial blockchain wallet on-chain (EVM and Bitcoin), no exchange or MetaMask. Create or import a wallet, balances, send native/ERC-20/BTC, swap tokens, compile/deploy/call Solidity. Trigger on wallet, crypto, ETH, BTC, ERC-20, token, send, transfer, swap, trade, Solidity, contract, on-chain, testnet…
agent-solidity
Write, audit and deploy Solidity smart contracts through a gated multi-step workflow (spec, threat model, design, implementation, in-process EVM proof, security audit, deployment), with a local EVM sandbox that needs no Foundry, Hardhat, anvil, node or funds. Trigger on Solidity, smart contract, .sol, ERC-20, ERC-721…
aelf-node-skill
AElf node querying and contract execution skill for agents.
tokenomist-fundraising-lookup
Look up fundraising rounds, investors, and valuation data for tokens. Use when finding who invested, at what valuation, or analyzing investor portfolios.
tokenomist-unlock-analysis
Analyze token unlock events — upcoming unlocks, historical events, and allocation breakdowns. Use when checking unlock impact on market cap or reviewing unlock schedules.