nft-market-analyzer – Solana NFT Collection Risk Analysis Skill - #270
Closed
nftpoetrist wants to merge 2 commits into
Closed
nft-market-analyzer – Solana NFT Collection Risk Analysis Skill#270nftpoetrist wants to merge 2 commits into
nftpoetrist wants to merge 2 commits into
Conversation
Merged
20 tasks
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.
Overview
This PR introduces
nft-market-analyzer, a production-grade Hermes Skill that performsread-only risk analysis on Solana NFT collections by combining Magic Eden marketplace data
with Helius on-chain data. All seven risk metrics are computed deterministically in shell
(
jq+bc) before being passed to the Hermes LLM for narrative interpretation — the LLMnever fetches data or calculates numbers.
What This Skill Does
floor_price_sol— current floor price in SOLvolume_7d_sol/volume_30d_sol— trading volumetop10_holder_percentage— whale concentration riskwash_trading_ratio— suspicious buy/sell loop detectionvolume_volatility_ratio— volume stability vs 30-day averagefinal_risk_score— weighted composite score clamped to [0–100]Architecture
scripts/analyze.shprompts/interpret_analysis.mddocs/output_schema.jsontests/test_metrics.shCore design principle: Shell computes all numbers. LLM writes only the narrative.
Security
^[a-z0-9_-]{1,64}$to prevent shell injectionattempt × 10sstdout= JSON only ·stderr= structured logs (clean separation)trapTesting
Files Added
skill.yamlSKILL.mdscripts/analyze.shprompts/interpret_analysis.mddocs/output_schema.jsondocs/api_reference.mdtests/test_metrics.shREADME.mdPlatforms Tested
Breaking Changes
None. New skill addition.