Market Briefing

v1.0.0

Provides scheduled briefings with filtered, deduplicated news on A-shares, HK, US markets, macro policies, and geopolitics via Feishu messaging.

0· 281·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for fishisnow/market-briefing.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Market Briefing" (fishisnow/market-briefing) from ClawHub.
Skill page: https://clawhub.ai/fishisnow/market-briefing
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install market-briefing

ClawHub CLI

Package manager switcher

npx clawhub@latest install market-briefing
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The declared purpose (scheduled market briefings via Feishu using Tavily/search + web fetch) matches the runtime instructions. However, the registry metadata lists no required binaries or env vars while SKILL.md explicitly requires the mcporter CLI (tavily-remote-mcp) and a Feishu message tool — a metadata/manifest mismatch that should be resolved.
Instruction Scope
SKILL.md stays within the stated purpose: detect time, run Tavily searches, optionally fetch public news sites, deduplicate against a local log, compose a briefing, and send it via a Feishu messaging tool. It reads and appends to a workspace memory file (reported-news-YYYY-MM-DD.txt) — appropriate for deduplication but worth noting because it gives the skill read/write access to that workspace path.
Install Mechanism
This is instruction-only (no install spec, no code files). That minimizes install risk. There is no download/extract step in the skill itself. The skill expects external tools (mcporter, Feishu tool) to already be present.
Credentials
The skill does not request environment variables or credentials in the registry, yet it relies on external tools that typically require credentials (e.g., a Feishu bot/token configured in the agent/tooling and mcporter pointing at a Tavily MCP). This is likely an oversight in metadata rather than malicious intent — but you should confirm where Feishu credentials and mcporter configuration live and ensure they are not stored in broadly-shared files.
Persistence & Privilege
always is false and the skill does not request permanent/agent-wide privileges. It writes only to a per-workspace memory log and does not modify other skills or global agent config. Autonomous invocation is allowed (platform default) — be aware of the normal blast radius if you enable autonomous runs.
Assessment
This skill appears to do what it says (periodic market-news briefs) but the package metadata omitted required tools. Before installing: (1) Confirm the source/author (homepage unknown). (2) Ensure mcporter and the tavily MCP are intentionally configured and trusted. (3) Verify how the Feishu message tool is configured and where its token/credentials are stored (avoid placing tokens in shared files). (4) Choose a dedicated workspace/memory path and review its contents/permissions since the skill will read and append the reported-news log. (5) If you plan to schedule autonomous runs, consider testing manually first and inspect a few generated messages to ensure no sensitive data is leaked. If anything is unclear, ask the publisher to update the registry metadata to list required binaries and any env vars/config paths.

Like a lobster shell, security has layers — review code before you run it.

latestvk9792pys5d6wcv50zg26sjwsan82q5rk
281downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Market Briefing

Time-aware market intelligence workflow. Detects current time → selects briefing mode → searches news → deduplicates → delivers via Feishu.

Prerequisites

  • mcporter CLI with tavily-remote-mcp MCP server configured
  • Feishu message tool available
  • Workspace memory/ directory writable

Step 1 — Detect Time & Select Mode

Get current Beijing time and select mode:

TimeMode
09:00Morning briefing — overnight US markets + today's investment direction
10:00–15:00Incremental update — new items only, skip duplicates
16:00Closing daily report — full-day recap + tomorrow's outlook

Step 2 — Read Today's Dedup Log

cat /path/to/your/workspace/memory/reported-news-$(date +%Y-%m-%d).txt 2>/dev/null || echo "First run today"

⚠️ Use absolute paths, not ~: cron jobs run in an isolated environment where ~ may expand to an unexpected home directory. Always use the full absolute path to your workspace (e.g. /Users/yourname/.openclaw/workspace-invest/memory/).

This file contains summaries of already-pushed items. Use it to filter duplicates in Step 4.

Step 3 — Search Latest News

Run all 6 searches sequentially (Tavily rate limits make parallel risky):

mcporter call tavily-remote-mcp.tavily_search query="A股 今日行情 最新" time_range=day
mcporter call tavily-remote-mcp.tavily_search query="港股 恒生指数 今日" time_range=day
mcporter call tavily-remote-mcp.tavily_search query="特朗普 最新动态" time_range=day
mcporter call tavily-remote-mcp.tavily_search query="中国军事 地缘政治 最新" time_range=day
mcporter call tavily-remote-mcp.tavily_search query="美股 道指 纳指 标普 最新" time_range=day
mcporter call tavily-remote-mcp.tavily_search query="中国经济政策 最新" time_range=day

Supplement with web_fetch for real-time data:

  • https://www.cls.cn/telegraph — 财联社电报
  • https://www.jin10.com/ — 金十数据

Step 4 — Deduplicate

Compare results against Step 2 log. Skip items where core facts/keywords overlap >70% with already-reported items. Only keep genuinely new information.

If running incremental mode (10:00–15:00) and nothing new: reply 「本时段暂无重要增量信息,市场平稳运行中。」 and skip delivery.

Step 5 — Compose Briefing by Mode

See references/briefing-template.md for full format templates. Summary:

Morning (09:00): Overnight US markets → key overnight news → today's investment direction (sectors to watch, risks, 1–2 stock references)

Incremental (10:00–15:00): Only new items, grouped by category (A股/港股/特朗普政策/军事地缘). No repeats.

Closing (16:00): Full-day recap for A股+港股+US markets + Trump/policy/military summaries → tomorrow's outlook with 2–3 stock references.

Step 6 — Update Dedup Log

Append pushed items to the log (one line per item):

# Use absolute path — avoid ~ in cron environments
echo "[HH:MM] 消息摘要(30字以内)" >> /path/to/workspace/memory/reported-news-$(date +%Y-%m-%d).txt

Step 7 — Deliver via Feishu

Send to the configured Feishu target using the message tool. Target is either a direct user or a group chat — configure in your workspace MEMORY.md or TOOLS.md.

channel: feishu
target: chat:<chat_id>   # or omit for default DM
message: <briefing content>

Configuration

SettingWhereNotes
Feishu target chatworkspace MEMORY.mdGroup chat ID or omit for DM
Topics / search queriesreferences/topics.mdAdd/remove/translate topics
Briefing templatesreferences/briefing-template.mdFormat per mode
Scheduleopenclaw cron addRecommended: cron 0 9-16 * * 1-5 (Asia/Shanghai)

Fallback

If mcporter / Tavily unavailable, use web_fetch:

  • https://finance.sina.com.cn — A股
  • https://www.aastocks.com — 港股
  • https://www.caixin.com — 宏观/政策

Notes

  • Never include personal portfolio holdings or account tokens in shared configs.
  • All content is for reference only; does not constitute investment advice (⚠️ always append disclaimer).

Comments

Loading comments...