← 返回 Skills 市场
364
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install check-hot-altcoins
功能描述
生成加密货币早报PDF,包含行业动态、FDV排名、热点赛道和风险提示。数据来源于CoinGecko API。
使用说明 (SKILL.md)
查看每日热门山寨代币
生成一份专业的加密货币早报PDF,发送到飞书。
执行步骤
第一步:获取数据
从CoinGecko API获取实时数据。必须分两次请求(API限制):
请求1 - 前10大山寨币:
curl -s "https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&ids=solana,binancecoin,ripple,cardano,dogecoin,chainlink,avalanche-2,polygon,polkadot,stellar&order=market_cap_desc&sparkline=false" > /tmp/coins_part1.json
请求2 - 热点赛道币:
curl -s "https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&ids=fetch-ai,render-token,ocean-protocol,uniswap,aave,near,aptos,pepe,optimism,ondo,kite-ai,world-liberty-financial&order=market_cap_desc&sparkline=false" > /tmp/coins_part2.json
第二步:处理数据
用Python合并数据,按market_cap降序排序。
第三步:生成HTML
将数据填入以下HTML模板,然后保存为PDF。
必须包含的内容(6个板块)
板块1:昨日行业动态(文字板块)
从知识库读取当日行业重要新闻。如果没有新闻,可以写:
- SEC监管动态
- ETF相关消息
- 市场整体走势
板块2:前10大山寨币FDV排名
表格列:
- 排名(1-10)
- 币种(如SOL、BNB、XRP)
- 当前价格(如$88.54)
- 24h涨跌(如-5.23%,绿色下跌红色上涨)
- 24h区间(如$86.33-$90.74)
- FDV(如$53.0B)
币种列表(按市值):
- XRP
- BNB
- SOL
- DOGE
- ADA
- LINK
- XLM
- AVAX
- SOL
- UNI
(排除BTC、ETH、USDT、USDC)
板块3:热点赛道
表格列:
- 赛道
- 币种
- 价格
- 24h涨跌
- FDV
- 简评
必须包含的赛道:
| 赛道 | 币种 | 简评 |
|---|---|---|
| AI/代理 | FET | AI代理龙头 |
| AI/计算 | RENDER | GPU渲染 |
| AI/数据 | OCEAN | 数据市场 |
| DeFi | UNI | DEX龙头 |
| DeFi | AAVE | 借贷龙头 |
| L1 | NEAR | AI+TON协同 |
| L1 | APT | 高性能L1 |
| Layer2 | OP | Layer2龙头 |
| RWA | ONDO | RWA叙事 |
板块4:长期关注项目
表格列:
- 项目名
- 价格(或"TGE待定")
- 24h涨跌
- FDV
- 关注理由
必须包含:
| 项目 | 价格 | 理由 |
|---|---|---|
| KITE | $0.24 | AI支付首个应用 |
| WLFI | $0.11 | Trump家族背书 |
| Backpack | TGE待定 | 20%股权给持币者,潜在IPO |
板块5:风险提示
必须包含4项:
- 宏观风险:美联储政策不确定性
- 监管风险:SEC执法行动持续
- 解锁风险:多项目面临代币解锁
- 技术风险:L1/L2竞争加剧
板块6:免责声明
本报告仅供参考,不构成投资建议。加密资产风险极高,投资前请自行研究。
格式要求
HTML样式
\x3Cstyle>
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; padding: 30px; max-width: 900px; margin: 0 auto; font-size: 11pt; line-height: 1.6; }
h1 { color: #1a1a1a; border-bottom: 3px solid #0066cc; padding-bottom: 12px; }
h2 { color: #333; margin-top: 25px; border-bottom: 1px solid #eee; padding-bottom: 8px; }
table { border-collapse: collapse; width: 100%; margin: 15px 0; }
th, td { border: 1px solid #ddd; padding: 8px; text-align: left; font-size: 9pt; }
th { background: #0066cc; color: white; }
.up { color: #16a34a; }
.down { color: #dc2626; }
.warning { background: #fff3cd; padding: 12px; border-radius: 4px; }
.news-box { background: #f0fdf4; padding: 15px; border-radius: 4px; margin: 10px 0; border-left: 4px solid #16a34a; }
\x3C/style>
转换PDF
用浏览器打开HTML然后导出为PDF:
# 用浏览器打开
open file:///tmp/早报.html
# 然后用浏览器的"导出为PDF"功能
发送到飞书
使用message工具发送PDF文件到用户。
注意事项(重要!)
- 只显示FDV,不显示市值 - 这是用户偏好
- 数据必须从CoinGecko API获取 - 不能用估算或假设
- 发送前复查数据准确性 - 确认数字正确
- 未上线项目标注"TGE待定" - 如Backpack
- 不显示数据来源 - 用户不需要知道数据从哪里来
- 格式简洁 - 避免过多* # 等符号
- 使用中文 - 用户用中文交流
- 价格格式 - 如$88.54,不要写成$88.5
- 涨跌颜色 - 上涨绿色,下跌红色
- FDV单位 - 大于10亿用B(如$53.0B),小于10亿用M(如$240M)
安全使用建议
What to check before installing or running: 1) Implementation vs instructions: the scripts fetch data and produce an HTML file, but they do not split API calls, do not read a news knowledge base, do not convert HTML to PDF, and do not send anything to Feishu — you (or the agent runtime) will need to implement PDF export and delivery. 2) Data accuracy & formatting: SKILL.md enforces FDV-only display, specific price formatting, and color rules; verify the code's rounding/units meet those rules (the code currently formats FDV as B or M in some places but uses a fixed B for the top-10). 3) Delivery: if you want automatic Feishu posting, ensure the integration is added intentionally and that credentials are provided securely (do not hardcode tokens in skill files). 4) Network scope: the skill calls only api.coingecko.com; this is expected, but ensure your environment's curl/python runtime won't be repurposed to exfiltrate other data. 5) Testing: run the scripts in a sandbox to confirm outputs (HTML, values, FDV units) match your requirements. Because there are multiple inconsistencies between the documentation and the code, treat this as untrusted until you confirm the missing behaviors and delivery method.
功能分析
Type: OpenClaw Skill
Name: check-hot-altcoins
Version: 1.0.0
The skill bundle is benign. It fetches public cryptocurrency data from the CoinGecko API, processes it, and generates a local HTML file for a daily report, which is then intended to be converted to PDF and sent via a messaging tool. All file operations (`/tmp/coins.json`, `/tmp/早报.html`) and network calls (to `api.coingecko.com`) are directly aligned with the stated purpose of generating a cryptocurrency report. The `SKILL.md` instructions are task-specific and do not contain any prompt injection attempts to subvert the agent's behavior, exfiltrate data, or perform unauthorized actions. Minor discrepancies between `SKILL.md` and the scripts (e.g., one vs. two API calls, hardcoded news vs. 'knowledge base') are functional deviations, not security concerns.
能力评估
Purpose & Capability
The declared purpose (generate a daily altcoin PDF report from CoinGecko) matches the code's main behavior: fetch data and produce an HTML report. However there are inconsistencies: SKILL.md requires two separate curl requests due to API limits, but fetch-data.sh uses a single combined request; SKILL.md says 'read news from the knowledge base', while generate-report.py embeds static/hardcoded news. Also SKILL.md enumerates a specific top-10 list with duplicate SOL and a particular ordering; the code derives the top-10 dynamically, which may produce different output than the doc expects.
Instruction Scope
SKILL.md instructs multiple runtime actions that are not implemented in code: splitting API requests into two, reading today's news from the knowledge base, opening a browser and exporting HTML to PDF, and sending the PDF to Feishu via a 'message tool'. generate-report.py only writes HTML to /tmp/早报.html and does not perform PDF conversion or delivery. This mismatch grants the agent or integrator broad discretion to implement missing steps, which should be reviewed before allowing autonomous invocation.
Install Mechanism
No install spec and no external binary downloads. The skill is instruction + two small scripts that run locally. The only outbound network call is curl to api.coingecko.com and the Python code reads/writes /tmp files—no hidden downloads or archive extraction detected.
Credentials
The skill does not request environment variables, secrets, or config paths. The SKILL.md mentions sending to Feishu but does not request any Feishu credentials; as implemented, no credentials are required by the included files. If you enable delivery to Feishu, you should expect to provideFeishu credentials separately and verify how they are stored.
Persistence & Privilege
The skill does not request persistent presence (always: false). There is no code that modifies other skills or system-wide settings. Autonomous invocation is allowed by platform default but does not combine with elevated privileges or credential access in the provided files.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install check-hot-altcoins - 安装完成后,直接呼叫该 Skill 的名称或使用
/check-hot-altcoins触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
常见问题
查看每日热门山寨代币 是什么?
生成加密货币早报PDF,包含行业动态、FDV排名、热点赛道和风险提示。数据来源于CoinGecko API。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 364 次。
如何安装 查看每日热门山寨代币?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install check-hot-altcoins」即可一键安装,无需额外配置。
查看每日热门山寨代币 是免费的吗?
是的,查看每日热门山寨代币 完全免费(开源免费),可自由下载、安装和使用。
查看每日热门山寨代币 支持哪些平台?
查看每日热门山寨代币 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 查看每日热门山寨代币?
由 nihaovand(@nihaovand)开发并维护,当前版本 v1.0.0。
推荐 Skills