aggregating-crypto-news by jeremylongshore/claude-code-plugins-plus-skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill aggregating-crypto-news通过 RSS 源从 50 多个权威来源聚合加密货币新闻,具备实时扫描、代币/类别筛选和相关度评分功能。
pip install feedparser requests评估用户意图 - 确定所需的筛选条件:
使用适当的筛选条件运行聚合器:
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --coin BTC --period 4h
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --category defi --top 30
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --coin ETH --category defi --period 24h --top 15
导出结果以供后续处理:
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --format json --output news.json
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
向用户展示结果:
显示根据影响市场关键词检测、来源权威性和时效性进行相关度评分(0-100)排名的文章表格:
==============================================================================
CRYPTO NEWS AGGREGATOR Updated: 2026-01-14 15:30 # 2026 - 当前年份时间戳
==============================================================================
TOP CRYPTO NEWS (24h)
------------------------------------------------------------------------------
Rank Source Title Age Score
------------------------------------------------------------------------------
1 CoinDesk Bitcoin Breaks $100K ATH 2h 95.0
2 The Block SEC Approves ETH ETF 4h 92.5
3 Decrypt Solana DeFi TVL Surges 6h 78.3
------------------------------------------------------------------------------
Summary: 20 articles shown | Scanned: 50 sources | Matched: 187
==============================================================================
| 错误 | 原因 | 解决方案 |
|---|---|---|
| 网络超时 | RSS 源无法访问 | 使用缓存数据;跳过不可用的来源 |
| 解析错误 | RSS 格式错误 | 跳过条目;继续处理有效文章 |
| 无结果 | 筛选条件过于严格 | 建议放宽筛选条件 |
| 无效代币 | 未知符号 | 列出类似的有效符号 |
有关全面的错误处理,请参阅 ${CLAUDE_SKILL_DIR}/references/errors.md。
常见新闻监控场景的筛选模式:
# 最新加密货币新闻(默认)
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py
# 过去 4 小时的比特币新闻
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --coin BTC --period 4h
# DeFi 类别新闻
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --category defi
# 仅高相关度新闻
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --min-score 70 --top 10
# 多个代币
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --coins BTC,ETH,SOL
${CLAUDE_SKILL_DIR}/references/implementation.md - CLI 选项、类别、JSON 格式、高级筛选${CLAUDE_SKILL_DIR}/references/errors.md - 全面的错误处理${CLAUDE_SKILL_DIR}/references/examples.md - 详细使用示例${CLAUDE_SKILL_DIR}/config/sources.yaml - 完整来源注册表每周安装次数
139
代码仓库
GitHub 星标数
1.7K
首次出现时间
Jan 25, 2026
安全审计
安装于
codex121
gemini-cli117
opencode117
cursor117
github-copilot116
openclaw112
Aggregate cryptocurrency news from 50+ authoritative sources via RSS feeds with real-time scanning, coin/category filtering, and relevance scoring.
pip install feedparser requestsAssess user intent - determine filters needed:
Run the aggregator with appropriate filters:
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py
# Coin-specific scan
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --coin BTC --period 4h
# Category filter
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --category defi --top 30
# Multiple filters
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --coin ETH --category defi --period 24h --top 15
3. Export results for downstream processing:
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --format json --output news.json
4. Present results to the user:
* Show source, title, age, and relevance score
* Highlight market-moving keywords if present
* Provide links for full articles
* Summarize meta information (sources checked, articles found)
Table showing articles ranked by relevance score (0-100) based on market-moving keyword detection, source authority, and recency:
==============================================================================
CRYPTO NEWS AGGREGATOR Updated: 2026-01-14 15:30 # 2026 - current year timestamp
==============================================================================
TOP CRYPTO NEWS (24h)
------------------------------------------------------------------------------
Rank Source Title Age Score
------------------------------------------------------------------------------
1 CoinDesk Bitcoin Breaks $100K ATH 2h 95.0
2 The Block SEC Approves ETH ETF 4h 92.5
3 Decrypt Solana DeFi TVL Surges 6h 78.3
------------------------------------------------------------------------------
Summary: 20 articles shown | Scanned: 50 sources | Matched: 187
==============================================================================
| Error | Cause | Solution |
|---|---|---|
| Network timeout | RSS feed unreachable | Uses cached data; skips unavailable sources |
| Parse error | Malformed RSS | Skips entry; continues with valid articles |
| No results | Filters too strict | Suggest relaxing filters |
| Invalid coin | Unknown symbol | List similar valid symbols |
See ${CLAUDE_SKILL_DIR}/references/errors.md for comprehensive error handling.
Filtering patterns for common news monitoring scenarios:
# Latest crypto news (defaults)
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py
# Bitcoin news from past 4 hours
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --coin BTC --period 4h
# DeFi category news
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --category defi
# High-relevance news only
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --min-score 70 --top 10
# Multiple coins
python ${CLAUDE_SKILL_DIR}/scripts/news_aggregator.py --coins BTC,ETH,SOL
${CLAUDE_SKILL_DIR}/references/implementation.md - CLI options, categories, JSON format, advanced filtering${CLAUDE_SKILL_DIR}/references/errors.md - Comprehensive error handling${CLAUDE_SKILL_DIR}/references/examples.md - Detailed usage examples${CLAUDE_SKILL_DIR}/config/sources.yaml - Full source registryWeekly Installs
139
Repository
GitHub Stars
1.7K
First Seen
Jan 25, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
codex121
gemini-cli117
opencode117
cursor117
github-copilot116
openclaw112
Solana开发技能指南:dApp开发、钱包连接、交易构建、链上程序与安全审计
4,100 周安装
视觉质量检查工具:AI自动化UI审查,发现间距、对齐、颜色、响应式设计问题
137 周安装
Encore.ts 入门指南:快速上手 TypeScript 微服务开发与部署
137 周安装
Framer 代码组件与覆盖开发指南:React 组件、属性控件与最佳实践
137 周安装
多智能体编排策略指南:从597+真实调度提炼的元编排模式与提示词构建
137 周安装
Info Card Designer - 自动生成杂志质感信息卡,适配X/Twitter、小红书分享,支持内容密度分析与超长分割
137 周安装
头脑风暴助手 - 使用Gemini AI系统生成创意想法,支持SCAMPER、六顶思考帽等方法
137 周安装