用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/openJiuwen-ai/agent-store --skill nft-valuation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | nft-valuation |
| description | NFT估值工具,基于特征稀有度评分、地板价趋势与可比销售法进行估值。适用于数字藏品定价机制学习与。为工具,估值结果不可作为投资或定价依据,不反映市场流动性风险。 |
| version | 1.0.0 |
| author | wangyi |
NFT 估值工具,实现稀有度评分(Rarity Score)、地板价分析、可比销售法估值与特征统计分析。仅使用 Python 标准库。
📌 说明:本工具基于简化模型实现和启发式方法。结果仅供学习参考,不构成投资建议或交易依据。
calculate_trait_frequency(collection_traits)计算集合中各特征值的出现频率。 必填: collection_traits
calculate_rarity_score(nft_traits, collection_traits)计算单个 NFT 的稀有度评分。 必填: nft_traits, collection_traits
rank_rarity(target_traits, collection_traits)在集合内对目标 NFT 进行稀有度排名。 必填: target_traits, collection_traits
analyze_floor_price(current_floor, historical_floors, period=30)分析地板价趋势。 必填: current_floor, historical_floors
comparable_sales_valuation(target_traits, comparable_sales, floor_price, market_sentiment=1.0)可比销售法估值。 必填: target_traits, comparable_sales, floor_price
value_nft(target_traits, collection_traits, floor_price, historical_floors=None, comparable_sales=None, market_sentiment=1.0)NFT 综合估值。 必填: target_traits, collection_traits, floor_price
python scripts/main.py \
--current-floor <current_floor> \
--historical-floors <historical_floors> \
--period <period> \