← 返回 Skills 市场
608
总下载
1
收藏
3
当前安装
1
版本数
在 OpenClaw 中安装
/install daily-market-insight
功能描述
每日市场洞察报告生成系统。使用多Agent协作:新闻采集→分析→市场趋势预测→飞书文档报告。每天10:00自动运行。
使用说明 (SKILL.md)
每日市场洞察 - 多Agent系统
工作流程
当触发此技能时,按以下步骤执行:
Step 1: 新闻采集 🔍
使用 web_search 搜索以下领域的最新新闻:
宏观经济(重点):
- query: "中国经济 宏观政策 今日"
- query: "美联储 利率决议 最新"
- query: "央行 货币政策 降准降息"
科技行业(重点):
- query: "人工智能 AI 行业动态 今日"
- query: "半导体芯片 行业新闻 最新"
- query: "新能源汽车 行业动态"
其他领域:
- query: "地缘政治 国际形势 最新"
- query: "大宗商品 原油 黄金 行情"
每类搜索取前3-5条,使用 web_fetch 获取详细内容。
Step 2: 新闻分析 📊
将采集的新闻整理成结构化数据,调用 opencode sisyphus 进行分析:
opencode run --agent sisyphus "分析以下财经新闻..."
要求输出:
- 每条新闻的核心要点
- 市场情感判断(正面/中性/负面)
- 影响程度评估(高/中/低)
- 相关板块/市场
Step 3: 市场趋势预测 🔮
基于新闻分析结果,调用 opencode sisyphus 进行预测:
针对 A股、港股、美股 分别分析:
- 短期趋势(1-2周)
- 中期趋势(1-3月)
- 重点关注的板块
- 风险提示
- 投资建议
Step 4: 报告生成 📝
生成完整的 Markdown 报告,包含:
- 日期标题
- 新闻分析摘要
- 市场趋势预测
- 数据表格(如有)
Step 5: 推送到飞书 📤
- 使用
feishu_doc创建新文档,标题:「每日市场洞察 - YYYY-MM-DD」 - 将报告内容写入文档
- 在当前飞书群发送消息:「✅ 今日市场洞察报告已生成!」
数据存储
- 本地报告:
~/.openclaw/workspace/projects/daily-market-insight/data/ - 日志:
~/.openclaw/workspace/projects/daily-market-insight/logs/
注意事项
- opencode 需要 git 目录才能运行,先在目标目录执行
git init - 新闻采集使用免费渠道,数量有限制
- 分析结果仅供参考,不构成投资建议
安全使用建议
Before installing, get answers to these questions: 1) Where does 'opencode sisyphus' come from? Confirm whether 'opencode' is a platform-provided tool or a third‑party CLI; ask for its homepage/source and an install spec. Running unknown CLIs can execute arbitrary code. 2) Will the agent have Feishu credentials? The skill will create docs and post messages to a Feishu group; ensure you understand which account/group will be used and that credentials/permissions are appropriate. 3) The SKILL.md instructs creating a git repo and writing files under ~/.openclaw/workspace/… — confirm you’re comfortable with the skill creating persistent files there (and review what data will be stored). 4) Ask the publisher for a homepage or source repository and for an install manifest that declares required binaries and any required environment variables. 5) If you want to test, run it in a sandboxed account/environment with limited Feishu permissions and inspect the files it creates. Because the instructions include running an external CLI and persisting data, treat this as potentially risky until the missing details are provided.
功能分析
Type: OpenClaw Skill
Name: daily-market-insight
Version: 1.0.0
The 'daily-market-insight' skill aims to generate and distribute market reports, which is a benign purpose. However, the SKILL.md file contains a direct instruction for the AI agent to execute a shell command (`git init`). While `git init` itself is not malicious and appears to be a setup step for the `opencode` command, this demonstrates a significant vulnerability where the agent can be instructed to execute arbitrary shell commands via markdown. This capability, if exploited, could lead to remote code execution, making the skill bundle suspicious due to the inherent risk, despite the lack of explicit malicious intent in the provided command.
能力评估
Purpose & Capability
The skill says it will collect web news, run analysis, and push a Feishu document, which matches the declared openclaw requires: web_search, web_fetch, feishu_doc. However the SKILL.md additionally instructs running an external CLI ('opencode run --agent sisyphus') and to initialize a git repo; neither 'opencode' nor git are listed as required binaries or provided by an install spec. The SKILL.md also specifies local workspace paths for storage (~/.openclaw/workspace/...), but 'required config paths' is empty. These gaps are inconsistent with the stated purpose.
Instruction Scope
Instructions tell the agent to: perform web searches and fetches (expected), execute 'opencode' with an agent name (executes arbitrary analysis code), run 'git init' in the target directory, and write reports/logs to a specific home-directory path. The use of an external CLI to perform analysis (without declaring or providing it) and the explicit file system write locations expand the skill's scope beyond a simple web->report flow and could execute or persist code/data unexpectedly.
Install Mechanism
There is no install spec (instruction-only) which is lowest risk in principle. But the SKILL.md's reliance on 'opencode' and git implies external binaries must be present; the absence of declared required binaries or an install step is an inconsistency: either the skill expects platform-provided tools or it will fail/attempt to run unknown binaries.
Credentials
The skill pushes content to Feishu (feishu_doc) but declares no env vars or credentials. If the platform supplies Feishu credentials transparently, that may be OK; otherwise the skill omits required secrets. It also writes to ~/.openclaw/workspace/... (access to the user's home), which is a form of persistent storage not declared as a required config path. The skill does not request unrelated credentials, but it does require write access and an external CLI that may require network or tokens—these are not documented.
Persistence & Privilege
always:false (good). The metadata contains a cron schedule ('0 10 * * *'), so the skill is intended to run daily at 10:00 automatically. The skill will create files and a git repo under the user's workspace path and keep logs — that persistent disk presence is expected for a report generator but should be noted. There is no indication it modifies other skills or agent-wide settings.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install daily-market-insight - 安装完成后,直接呼叫该 Skill 的名称或使用
/daily-market-insight触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the Daily Market Insight skill.
- Automates daily multi-agent workflow for market news collection, analysis, trend forecasting, and report publishing to Feishu.
- Runs every day at 10:00, covering macroeconomics, tech, geopolitics, and commodities.
- Delivers structured market reports with sentiment analysis, trend outlook, and actionable insights.
元数据
常见问题
Daily Market Insight 是什么?
每日市场洞察报告生成系统。使用多Agent协作:新闻采集→分析→市场趋势预测→飞书文档报告。每天10:00自动运行。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 608 次。
如何安装 Daily Market Insight?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install daily-market-insight」即可一键安装,无需额外配置。
Daily Market Insight 是免费的吗?
是的,Daily Market Insight 完全免费(开源免费),可自由下载、安装和使用。
Daily Market Insight 支持哪些平台?
Daily Market Insight 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Daily Market Insight?
由 Rui Chen(@a851445115)开发并维护,当前版本 v1.0.0。
推荐 Skills