openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Daily Market Insight

每日市场洞察报告生成系统。使用多Agent协作:新闻采集→分析→市场趋势预测→飞书文档报告。每天10:00自动运行。

数据与表格

作者:Rui Chen @a851445115

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 1 · 411 · 2 current installs · 2 all-time installs

1

安装量(当前) 2

🛡 VirusTotal :可疑 · OpenClaw :可疑

Package:a851445115/daily-market-insight

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :可疑

OpenClaw 评估

The skill's stated purpose (collect news → analyze → post a Feishu doc) is plausible, but its runtime instructions reference tools, local paths, and actions that are not declared in the metadata (notably an external CLI 'opencode', git usage, and writing into a home workspace), so the package is internally inconsistent and needs clarification before installing.

目的

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 storag…

说明范围

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 ex…

安装机制

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.

证书

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 a…

持久

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.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Daily Market Insight」。简介:每日市场洞察报告生成系统。使用多Agent协作:新闻采集→分析→市场趋势预测→飞书文档报告。每天10:00自动运行。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/a851445115/daily-market-insight/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: daily-market-insight
description: "每日市场洞察报告生成系统。使用多Agent协作:新闻采集→分析→市场趋势预测→飞书文档报告。每天10:00自动运行。"
metadata:
  openclaw:
    emoji: "📊"
    schedule: "0 10 * * *"
    requires: ["web_search", "web_fetch", "feishu_doc"]
---

# 每日市场洞察 - 多Agent系统

## 工作流程

当触发此技能时,按以下步骤执行:

### Step 1: 新闻采集 🔍

使用 `web_search` 搜索以下领域的最新新闻:

**宏观经济(重点):**
- query: "中国经济 宏观政策 今日"
- query: "美联储 利率决议 最新"
- query: "央行 货币政策 降准降息"

**科技行业(重点):**
- query: "人工智能 AI 行业动态 今日"
- query: "半导体芯片 行业新闻 最新"
- query: "新能源汽车 行业动态"

**其他领域:**
- query: "地缘政治 国际形势 最新"
- query: "大宗商品 原油 黄金 行情"

每类搜索取前3-5条,使用 `web_fetch` 获取详细内容。

### Step 2: 新闻分析 📊

将采集的新闻整理成结构化数据,调用 **opencode sisyphus** 进行分析:

```bash
opencode run --agent sisyphus "分析以下财经新闻..."
```

要求输出:
- 每条新闻的核心要点
- 市场情感判断(正面/中性/负面)
- 影响程度评估(高/中/低)
- 相关板块/市场

### Step 3: 市场趋势预测 🔮

基于新闻分析结果,调用 **opencode sisyphus** 进行预测:

针对 A股、港股、美股 分别分析:
- 短期趋势(1-2周)
- 中期趋势(1-3月)
- 重点关注的板块
- 风险提示
- 投资建议

### Step 4: 报告生成 📝

生成完整的 Markdown 报告,包含:
- 日期标题
- 新闻分析摘要
- 市场趋势预测
- 数据表格(如有)

### Step 5: 推送到飞书 📤

1. 使用 `feishu_doc` 创建新文档,标题:「每日市场洞察 - YYYY-MM-DD」
2. 将报告内容写入文档
3. 在当前飞书群发送消息:「✅ 今日市场洞察报告已生成!」

---

## 数据存储

- 本地报告:`~/.openclaw/workspace/projects/daily-market-insight/data/`
- 日志:`~/.openclaw/workspace/projects/daily-market-insight/logs/`

## 注意事项

1. opencode 需要 git 目录才能运行,先在目标目录执行 `git init`
2. 新闻采集使用免费渠道,数量有限制
3. 分析结果仅供参考,不构成投资建议