finance-daily-report

Generate a modular, configurable global finance daily report (全球财经日报). Default 9 modules. External LLM collectors. Output to chat (auto-chunked). Use when: user asks for 财经日报,finance daily report, daily market briefing. Also handles module management (新增/删除/启用/禁用日报模块). Also handles setup/install: when user says "配置日报" / "设置日报定时" / "setup finance report" / "每天推送日报". NOT for: real-time trading, individual stock analysis, or investment advice.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "finance-daily-report" with this command: npx skills add xyangryr-cyber/finance-daily-report

Finance Daily Report

First-time Setup (IM 引导)

When user mentions configuring daily auto-push for the first time (e.g., "配置日报", "每天推送日报"):

Step 1: Check existing cron jobs Run openclaw cron list --json to see if a finance-daily-report job already exists.

Step 2: Guide user interactively If no existing job, proactively offer to set up with a warm greeting to 汤汤:

"汤汤好!👋 我是许阳专门为你定制的财经日报助手。检测到你还没有设置每日日报推送,需要我帮你配置吗?只需告诉我你希望几点收到日报(例如:8:00),我来自动配置,每天准时把全球财经日报送到你这里 📰"

Step 3: Extract preferred time and register cron When user provides a time (e.g., "8 点", "08:00", "早上 8 点"):

  1. Parse the time (default 08:00 if ambiguous)
  2. Calculate trigger time = user time - 20 minutes (generation takes 5-10 min)
  3. Run openclaw cron add with the calculated cron expression

Example command (user wants 08:00 delivery, trigger at 07:40):

openclaw cron add \
  --name "finance-daily-report" \
  --description "每日全球财经日报自动生成与推送" \
  --cron "40 7 * * *" \
  --tz "Asia/Shanghai" \
  --message "生成今日全球财经日报" \
  --session main \
  --announce \
  --timeout-seconds 720

Step 4: Confirm setup Tell user:

"✅ 搞定啦汤汤!每天 ${DISPLAY_TIME} 准时推送财经日报,${TRIGGER_TIME} 开始生成(提前 20 分钟确保准时到)。随时说 '修改日报时间' 或 '停止日报推送' 来调整。"

Generate Report

Spawn a single subagent to execute the 3-phase workflow. This keeps all file reads and data processing out of the main conversation context.

sessions_spawn(
  task="""Execute the finance daily report workflow in:
~/.openclaw/skills/finance-daily-report/references/workflow.md

Base dir: ~/.openclaw/skills/finance-daily-report

Output: Return the final report markdown text for chat delivery.
Save files to: /root/.openclaw/workspace/finance-reports/YYYY-MM-DD.md""",
  runtime="subagent",
  mode="run",
  runTimeoutSeconds=600
)

Then sessions_yield(). When subagent returns, send its output to chat.

Module Management

IntentCommand
新增模块python3 ~/.openclaw/skills/finance-daily-report/scripts/manage_modules.py add --name "XX" --keywords "k1,k2" --prompt "..."
删除模块... remove --name "XX"
禁用模块... disable --name "XX"
启用模块... enable --name "XX"
列出模块... list
调整顺序... reorder --name "XX" --priority N

For add: generate 3-5 keywords (CN+EN with {date}) and a domain-specific collector prompt before calling.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

A股每日简报

A股每日简报生成器。基于东方财富免费公开数据,一键生成大盘指数、板块涨跌、涨跌幅榜等简报。 中文优先,无需API Key,开箱即用。 当用户说"A股"、"今日行情"、"大盘指数"、"股票"、"今日A股"时触发。 Keywords: A股, 股票, 行情, 大盘, 涨跌, 东方财富, 简报.

Registry SourceRecently Updated
1690Profile unavailable
General

破晓

🌅 全时段股市资讯生成器。根据当前时间自动判断生成早报/午评/收盘报告,支持交易日检测、模块化新闻抓取、微信友好格式输出。专为投资人设计,助力快速决策。

Registry SourceRecently Updated
940Profile unavailable
General

Daily Finance Pro

每日财经推送专家版。当用户说"今日财经"、"财经日报"、"每日金融推送"、"设置财经推送"、"取消财经推送"时触发。特色:浓精简(3条精华)、市场情绪指标( bearish/bullish/neutral)、定时推送飞书。比 daily-finance 更精炼,比 daily-trending 更专业。

Registry SourceRecently Updated
1180Profile unavailable
General

Daily Finance

获取每日财经热榜与投资资讯。当用户提到今日财经、每日金融、股市热榜、投资资讯、金融日报、每日行情、财经热榜、or daily finance/market news时触发。专门抓取华尔街见闻、雪球、第一财经、百度财经、新浪财经等平台的财经热搜,帮助用户快速了解今日投资焦点。不包含实时行情数据(K线等),那是aks...

Registry SourceRecently Updated
1730Profile unavailable
finance-daily-report | V50.AI