← 返回 Skills 市场
imkiiki

基金新闻日报

作者 ymzhang · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
266
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install fundnews-search
功能描述
基金新闻日报。从五大财经平台抓取基金新闻,支持特定日期或一段时间查询,自动生成 Word 文档。
使用说明 (SKILL.md)

基金新闻日报

从五大财经平台抓取公募基金新闻。


✨ 技能亮点

  • 📊 五大数据源:证券时报、中国证券报、证券日报、上海证券报、中国基金报
  • 📄 Word 文档:过去七天或日期范围查询自动生成 Word 文档
  • 🎯 智能过滤:保留行业整体和监管政策,过滤单一产品/公司/事件
  • 🔍 联网搜索:自动抓取各平台最新新闻

🛠️ 技能功能

  1. 新闻抓取:从五大财经平台抓取基金新闻
  2. 时间查询:支持特定日期或一段时间的新闻查询
  3. 文档生成:过去七天或日期范围查询自动生成 Word 文档
  4. 内容过滤:根据规则自动过滤不符合要求的新闻

📥 输入

支持查询特定日期一段时间的基金新闻:

  • 特定日期:如"查 2026 年 3 月 10 日基金新闻"
  • 一段时间:如"查过去七天基金新闻"、"查 3 月 1 日至 3 月 10 日基金新闻"
  • 默认查询:如"基金新闻日报"(查询今日新闻)

📤 输出

文本回复(今日/指定日期查询):

【基金新闻专属汇总】
查询类型:□今日 □指定日期
汇总时间:YYYY 年 MM 月 DD 日 HH:MM

1. 证券时报
   • 新闻标题。内容概要
     新闻链接

Word 文档(过去七天/日期范围查询):

  • 按日期分组的结构化文档
  • 包含新闻标题、内容概要、官方链接
  • 自动命名:YYYYMMDD-YYYYMMDD 基金新闻.docx

🔧 依赖技能

  • mcporter:用于调用联网搜索 API(必需)
  • python-docx:用于生成 Word 文档(必需)

📰 新闻数据来源

  • 证券时报
  • 中国证券报
  • 证券日报
  • 上海证券报
  • 中国基金报

✅ 重点保留

  • 公募基金行业监管政策
  • 基金产品发行与规模的阶段性里程碑(如"年内新成立 251 只基金")
  • 基金出海(如"海南跨境资管试点落地")
  • ETF 市场规模与趋势
  • 机构自购整体情况
  • 发行市场整体动态

❌ 智能过滤

根据代码实际过滤逻辑,自动过滤以下内容:

过滤类型 示例
私募基金相关 私募、私募股权、私募债权等
单一产品发行 "XX 基金发行中"、"XXETF 联接发行"
单一产品公告 停牌、复牌、分红、限制申购等
基金经理变动 离任、离职、新任、变更等
短期涨跌报道 涨逾、跌幅、收益率、净值涨等
非中国公募 主权债券、海外市场、印尼等
基金公司活动 足球赛、邀请赛、营销活动等
单一事件报道 李鬼、连环套、诈骗等个案
投资峰会/会议 投资峰会、策略峰会等
非公募行业 产业基金、引导基金、房产基金等
单日资金流向 "3 月 X 日资金净流入 X 亿元"
访谈/评论 访谈、专访、对话等

安全使用建议
This skill appears to do what it says (fetch public news, filter, and create a Word report), but there are several things to check before installing: 1) The SKILL.md requires an external tool 'mcporter' (Exa search) installed via 'npm install -g mcporter', but the registry metadata lists no required binaries—confirm that mcporter is available and trustworthy (inspect the npm package, its homepage, and permissions). 2) The included Python script only formats and filters news; it does not fetch data itself, so the scraping relies on mcporter or another component you must provide—make sure that component does not exfiltrate data to unexpected endpoints. 3) Verify the package owner/metadata (the manifest ownerId/version differ slightly from registry info) and confirm authorship/trust. 4) If you install mcporter globally, review the package code or install in a sandbox to avoid executing untrusted install-time scripts. 5) If you need stronger assurance, ask the publisher for: a) the exact mcporter source URL and version used, b) a network-access policy (what endpoints the search tool contacts), and c) a runtime example showing how news_data is gathered. If those answers are satisfactory and mcporter is a known/reputable package, the skill is plausible; otherwise treat it as untrusted.
功能分析
Type: OpenClaw Skill Name: fundnews-search Version: 1.0.1 The skill bundle is a legitimate tool for aggregating and filtering public fund news from major Chinese financial platforms (e.g., stcn.com, cs.com.cn) and generating structured Word reports. The Python script (scripts/fund_news_word.py) implements transparent filtering logic and document generation using the standard python-docx library. No evidence of data exfiltration, malicious execution, or harmful prompt injection was found; the instructions and code are strictly aligned with the stated purpose of financial news research.
能力评估
Purpose & Capability
The skill's name/description (fund-news scraping + Word output) matches the included Python document-generation script and filtering rules. However, the runtime relies on an external search tool/skill called 'mcporter' (Exa) to perform network searches; that dependency is mentioned in SKILL.md but not declared in the registry's required binaries or env fields. Also the script's source ordering lists only three platforms while docs list five—minor implementation mismatch.
Instruction Scope
SKILL.md explicitly instructs the agent to perform web searches (site: queries) against five news domains and then run three-layer filtering and generate a Word document. The included Python script only handles filtering/formatting and has no network fetch logic, so the skill expects external search execution (mcporter/Exa) to supply news_data. The instructions do not request credentials or ask to read unrelated local files, which is good, but they depend on an external search tool that will perform network requests.
Install Mechanism
No formal install spec is present in the registry (instruction-only), but SKILL.md recommends installing 'mcporter' via 'npm install -g mcporter' and 'python-docx' via pip. Global npm installs can run arbitrary package code at install time; the package 'mcporter' is not vetted here and is required for network search functionality. The absence of an explicit install spec in the registry makes it unclear how/when mcporter will be installed or which trust boundary applies.
Credentials
The skill declares no required environment variables, no credentials, and the code does not read environment variables or secrets. That is proportionate to the stated purpose of public web scraping and document generation.
Persistence & Privilege
The skill is not forced-always and does not request elevated or persistent system-wide privileges. It generates output files (Word docs) locally; the test run in the script writes to /tmp. No modifications to other skills or global agent configs are present.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install fundnews-search
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /fundnews-search 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
更新版本历史记录,统一为 V1.0.0 初版
v1.0.0
- 首次发布基金新闻日报技能:自动抓取五大财经平台公募基金相关新闻 - 支持按日期或时间范围查询新闻,并自动进行内容过滤 - 提供文本即时回复及 Word 文档导出功能 - 重点保留行业重大新闻,自动过滤无关个案与短期波动 - 依赖 mcporter 实现联网搜索,使用 python-docx 生成文档
元数据
Slug fundnews-search
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

基金新闻日报 是什么?

基金新闻日报。从五大财经平台抓取基金新闻,支持特定日期或一段时间查询,自动生成 Word 文档。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 266 次。

如何安装 基金新闻日报?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install fundnews-search」即可一键安装,无需额外配置。

基金新闻日报 是免费的吗?

是的,基金新闻日报 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

基金新闻日报 支持哪些平台?

基金新闻日报 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 基金新闻日报?

由 ymzhang(@imkiiki)开发并维护,当前版本 v1.0.1。

💬 留言讨论