中国官方经济资讯
v1.0.0获取中国经济资讯。仅从官方权威媒体(中国政府网、新华网、人民网、国家统计局、央视财经、中国经济网)抓取高质量经济新闻,自动过滤广告和低质量内容。触发词:中国经济、经济资讯、经济新闻、财经新闻、经济政策、宏观经济、GDP、CPI、PMI、货币政策、财政政策、今日财经。
Security Scan
OpenClaw
Benign
medium confidencePurpose & Capability
Name/description, SKILL.md, and scripts/fetch_news.py are consistent: they fetch RSS and search results limited to the listed official domains and apply filtering rules. No unrelated credentials, binaries, or services are requested.
Instruction Scope
Runtime instructions limit sources to the six official domains and provide three strategies (web_search, web_fetch, or running the included script). This stays within scope. Implementation detail: the included script scrapes Bing search results and fetches RSS/homepages; it also disables TLS verification for RSS requests (requests.get(..., verify=False) and urllib3.disable_warnings), which weakens transport security and is worth noting.
Install Mechanism
No install spec; the skill is instruction-only with a bundled Python script. No external archives or download URLs are used.
Credentials
The skill declares no required environment variables, credentials, or config paths. The script likewise does not read secrets or external config.
Persistence & Privilege
always:false and no requests to modify agent/system configs. Autonomous invocation is allowed by default but not combined with elevated privileges or broad credential access.
Assessment
This skill appears coherent and does what it says: it aggregates official Chinese economic news via RSS and search and filters out ads. Before installing or running: 1) be aware the bundled Python script makes outbound network requests to the listed official sites and cn.bing.com; confirm this fits your environment/policy. 2) the script disables HTTPS verification for RSS fetches and suppresses related warnings — this reduces TLS safety and could hide network issues; consider running it in an isolated environment or modifying the code to enable verify=True. 3) scraping search HTML is brittle (may break if search markup changes). If you need extra assurance, review or run the script in a sandboxed environment and inspect its live requests/logs.Like a lobster shell, security has layers — review code before you run it.
latest
中国经济资讯 Skill
从官方权威媒体获取高质量中国经济资讯,自动过滤广告。
数据源(仅限官方媒体)
| 来源 | 域名 | 图标 | 侧重 |
|---|---|---|---|
| 中国政府网 | gov.cn | 🏛️ | 政策法规 |
| 新华网 | news.cn / xinhuanet.com | 📰 | 国家通讯社 |
| 人民网 | people.com.cn | 📢 | 深度分析 |
| 国家统计局 | stats.gov.cn | 📊 | 经济数据 |
| 央视财经 | cctv.com | 📺 | 热点解读 |
| 中国经济网 | ce.cn | 📈 | 综合财经 |
工作流程
Step 1: 多策略抓取(按优先级尝试)
策略 A — web_search(首选):如果 web_search 工具可用,直接用关键词搜索,结果最准确。
web_search: "中国经济 最新" / "经济政策" / 用户指定关键词
策略 B — 直接抓取官网页面:用 web_fetch 直接访问官方网站首页或频道页。
web_fetch: https://www.ce.cn/ (中国经济网首页,内容丰富)
web_fetch: http://finance.people.com.cn/ (人民网财经)
web_fetch: http://www.news.cn/fortune/ (新华网财经)
策略 C — 脚本工具(兜底):运行 scripts/fetch_news.py。
python3 scripts/fetch_news.py --limit 15 --keyword 经济
Step 2: 严格过滤
必须丢弃:
- 非以上 6 个官方域名的内容
- 标题含广告词:广告、推广、赞助、优惠券、折扣、限时、抢购、免费领、理财产品、稳赚、暴涨、代理、加盟、招商、揭秘、震惊
- 标题 < 8 字或 > 80 字
- 纯视频/图集/专题索引页
Step 3: 格式化输出
按来源分组,输出格式:
📅 **中国经济资讯** | 2026-03-05 20:00
### 🏛️ 中国政府网
1. 标题(链接)
2. 标题(链接)
### 📊 国家统计局
1. 标题(链接)
Step 4: 深度阅读(用户要求时)
用 web_fetch 抓取正文,提炼 3-5 个关键要点。
注意事项
- 永远不包含自媒体、营销号、商业网站的内容
- 搜索受阻时换策略,不要卡死在一种方式上
- 明确告知用户资讯的时效性
Comments
Loading comments...
