feat(skills): add Solana blockchain skill#212
Merged
teknium1 merged 1 commit intoNousResearch:mainfrom Mar 9, 2026
Merged
Conversation
teknium1
added a commit
that referenced
this pull request
Mar 9, 2026
…t output Enhancements to the Solana blockchain skill (PR #212 by gizdusum): - CoinGecko price integration (free, no API key) - Wallet shows tokens with USD values, sorted by value - Token info includes price and market cap - Transaction details show USD amounts for balance changes - Whale detector shows USD alongside SOL amounts - Stats includes SOL price and market cap - New `price` command for quick lookups by symbol or mint - Smart wallet output - Tokens sorted by USD value (highest first) - Default limit of 20 tokens (--limit N to adjust) - Dust filtering (< $0.01 tokens hidden, count shown) - --all flag to see everything - --no-prices flag for fast RPC-only mode - NFT summary (count + first 10) - Portfolio total in USD - Token name resolution - 25+ well-known tokens mapped (SOL, USDC, BONK, JUP, etc.) - CoinGecko fallback for unknown tokens - Abbreviated mint addresses for unlabeled tokens - Reliability - Retry with exponential backoff on 429 rate-limit (RPC + CoinGecko) - Graceful degradation when price data unavailable - Capped API calls to respect CoinGecko free-tier limits - Updated SKILL.md with all new capabilities and flags
Contributor
|
Merged and enhanced! The skill has been:
Thanks for the solid foundation @gizdusum! 🎉 |
Contributor
Author
|
Thanks for reviewing and merging thisglad you found the Solana skill valuable @teknium1 I’ll keep building on Hermes ❤️ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Converts the Solana blockchain oracle from a Tool (tools/blockchain_oracle/) to a
Skill (skills/blockchain/solana/), as requested by @teknium1 in #164.
Changes
skills/blockchain/solana/SKILL.md— full skill documentation with frontmatter,7 query procedures, raw curl examples, pitfalls, and verification steps
skills/blockchain/solana/scripts/solana_client.py— standalone CLI helper usingonly Python standard library (urllib + argparse, no external deps)
7 Capabilities
statswallettxtokenactivitynftwhalesUsage
No external packages required. Uses public mainnet-beta RPC by default.
Set
SOLANA_RPC_URLenv var to use a private endpoint (Helius, QuickNode, etc.).Closes #164