返回顶部
n

news-sentiment-scanner

Scan news sources and RSS feeds for events that could move prediction market prices. Score headlines for market impact, flag urgent stories, and cross-reference with active markets. Use when asked about breaking news, market-moving events, or news sentiment.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.1.0
安全检测
已通过
77
下载量
0
收藏
概述
安装方式
版本历史

news-sentiment-scanner

# News Sentiment Scanner Scan news and RSS feeds for market-moving events, score headline sentiment, and flag prediction market trading opportunities. ## When to Use Use this skill when the user asks about: - Breaking news that could affect prediction markets - Scanning news for trading opportunities - Sentiment analysis of current headlines - Market-moving events in sports, politics, or economics - News-driven trading signals - Whether any recent news affects open positions ## RSS Feed Sources Default feeds covering key prediction market verticals: | Vertical | Feed URL | |----------|----------| | General Breaking | https://feeds.apnews.com/rss/apf-topnews | | World News | https://feeds.reuters.com/reuters/topNews | | US Politics | https://feeds.apnews.com/rss/apf-politics | | Sports | https://www.espn.com/espn/rss/news | | Economics | https://feeds.reuters.com/reuters/businessNews | | Crypto | https://cointelegraph.com/rss | The agent may add or substitute feeds based on context (e.g., if the user trades sports markets, prioritize ESPN). ## Operations ### 1. Scan RSS Feeds for Headlines Fetch the latest headlines from all configured feeds: ```bash for FEED_URL in \ "https://feeds.apnews.com/rss/apf-topnews" \ "https://feeds.reuters.com/reuters/topNews" \ "https://feeds.apnews.com/rss/apf-politics" \ "https://www.espn.com/espn/rss/news" \ "https://feeds.reuters.com/reuters/businessNews" \ "https://cointelegraph.com/rss"; do curl -s "$FEED_URL" | python3 -c " import sys, xml.etree.ElementTree as ET from datetime import datetime, timezone try: tree = ET.parse(sys.stdin) root = tree.getroot() source = root.find('.//channel/title') src = source.text if source is not None else 'Unknown' for item in root.findall('.//item')[:10]: title = item.find('title') link = item.find('link') pub = item.find('pubDate') t = title.text if title is not None else '' l = link.text if link is not None else '' p = pub.text if pub is not None else '' print(f'{src}|{t}|{l}|{p}') except: pass " done ## About Built by [AgentBets](https://agentbets.ai) — full tutorial at [agentbets.ai/guides/openclaw-news-sentiment-scanner-skill/](https://agentbets.ai/guides/openclaw-news-sentiment-scanner-skill/). Part of the [OpenClaw Skills series](https://agentbets.ai/guides/#openclaw-skills) for the [Agent Betting Stack](https://agentbets.ai/guides/agent-betting-stack/).

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 news-sentiment-scanner-1776028649 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 news-sentiment-scanner-1776028649 技能

通过命令行安装

skillhub install news-sentiment-scanner-1776028649

下载 Zip 包

⬇ 下载 news-sentiment-scanner v1.1.0

文件大小: 1.88 KB | 发布时间: 2026-4-13 11:12

v1.1.0 最新 2026-4-13 11:12
Add attribution links to agentbets.ai guides

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部