← Back to list

analyzing-nft-rarity
by jeremylongshore
Hundreds of Claude Code plugins with embedded AI skills. Learn via interactive Jupyter tutorials.
⭐ 1,042🍴 135📅 Jan 23, 2026
SKILL.md
name: analyzing-nft-rarity description: | Calculate NFT rarity scores and rank tokens by trait uniqueness. Use when analyzing NFT collections, checking token rarity, or comparing NFTs. Trigger with phrases like "check NFT rarity", "analyze collection", "rank tokens", "compare NFTs". allowed-tools: Read, Bash(python3 *) version: 1.0.0 author: Jeremy Longshore jeremy@intentsolutions.io license: MIT
Analyzing NFT Rarity
Overview
NFT rarity analysis skill that:
- Fetches collection metadata from OpenSea API
- Parses and normalizes trait attributes
- Calculates rarity using multiple algorithms
- Ranks tokens by composite rarity score
- Exports data in JSON and CSV formats
Prerequisites
- Python 3.8+ with requests library
- Optional:
OPENSEA_API_KEYfor higher rate limits - Optional:
ALCHEMY_API_KEYfor direct metadata fetching
Instructions
1. Analyze a Collection
cd {baseDir}/scripts && python3 rarity_analyzer.py collection boredapeyachtclub
Options:
--limit 500: Fetch more tokens for analysis--top 50: Show top 50 tokens--traits: Include trait distribution--rarest: Show rarest traits--algorithm [statistical|rarity_score|average|information]
2. Check Specific Token
cd {baseDir}/scripts && python3 rarity_analyzer.py token pudgypenguins 1234
3. Compare Multiple Tokens
cd {baseDir}/scripts && python3 rarity_analyzer.py compare azuki 1234,5678,9012
4. View Trait Distribution
cd {baseDir}/scripts && python3 rarity_analyzer.py traits doodles
5. Export Rankings
JSON:
cd {baseDir}/scripts && python3 rarity_analyzer.py export coolcats > rankings.json
CSV:
cd {baseDir}/scripts && python3 rarity_analyzer.py export coolcats --format csv > rankings.csv
6. Manage Cache
cd {baseDir}/scripts && python3 rarity_analyzer.py cache --list
cd {baseDir}/scripts && python3 rarity_analyzer.py cache --clear
Rarity Algorithms
| Algorithm | Description | Best For |
|---|---|---|
rarity_score | Sum of 1/frequency (default) | General use, matches rarity.tools |
statistical | Same as rarity_score | Backward compatibility |
average | Mean of trait rarities | Balanced scoring |
information | Entropy-based (-log2) | Information theory approach |
Output
- Collection Summary: Name, supply, trait types
- Rankings: Tokens sorted by rarity score with percentile
- Token Detail: Full trait breakdown with contribution
- Comparison: Side-by-side trait comparison
Supported Collections
Works with any ERC-721/ERC-1155 collection that has:
- OpenSea listing
- Standard attributes array format
- Accessible metadata
Error Handling
See {baseDir}/references/errors.md for:
- API rate limiting
- IPFS gateway issues
- Collection not found
- Token ID not found
Examples
See {baseDir}/references/examples.md for:
- Collection analysis workflows
- Token comparison
- Export and caching
- Algorithm comparison
Resources
- OpenSea API - Metadata source
- Rarity Tools - Reference rankings
- IPFS - Decentralized metadata
Score
Total Score
85/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
✓人気
GitHub Stars 1000以上
+15
✓最近の活動
1ヶ月以内に更新
+10
✓フォーク
10回以上フォークされている
+5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

