← Back to Skills Marketplace
qingkongzhiqian

Groundapi Market Briefing

by qingkongzhiqian · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ Security Clean
184
Downloads
1
Stars
1
Active Installs
2
Versions
Install in OpenClaw
/install groundapi-market-briefing
Description
Generate A-share market briefing with indices, limit-up/down pools, sector rotation, IPO calendar, anomaly signals, gold/forex macro data, trending topics, a...
README (SKILL.md)

A 股每日市场简报

当用户询问今日行情、市场简报、盘后总结,或类似以下表达时自动触发:

  • "今天A股怎么样"、"市场简报"、"盘后总结"
  • "今天涨停的有哪些"、"连板股"、"跌停股"
  • "哪个板块强"、"板块轮动"
  • "最近有什么新股"
  • "今天有什么热搜"、"市场情绪怎么样"

前置条件

{
  "mcpServers": {
    "groundapi": {
      "url": "https://mcp.groundapi.net/mcp",
      "headers": {
        "X-API-Key": "sk_gapi_xxxxx"
      }
    }
  }
}

执行流程

Step 1 — 交易日判断

life_calendar() → 确认今天是否为交易日。非交易日时说明数据为最近一个交易日。

Step 2 — 市场全景

finance_market(scope="overview") 获取:

  • 5 大指数实时:上证/深证/创业板/科创50/北证50
  • 市场情绪:涨停数/跌停数/封板成功率/最高连板数

Step 3 — 宏观参考

并行获取宏观数据:

  • finance_gold_price() → 黄金实时价格(避险情绪参考)
  • finance_exchange_rate(from_currency="USD", to_currency="CNY") → 美元兑人民币汇率

Step 4 — 热点股池

finance_market(scope="hot", limit=20) 获取:

  • 涨停股池(含连板数、封板时间、行业)
  • 跌停股池
  • 强势股池(涨幅前列但未涨停)
  • 炸板股池(涨停后打开)
  • 次新股池

返回自带连板梯队统计(首板X家/2板Y家/3板+Z家)。

Step 5 — 板块排行

finance_market(scope="sectors") 获取概念和行业列表。

如果用户关注特定板块,下钻成分股: finance_market(scope="sectors", sector="AI") → AI概念全部成分股

Step 6 — 异动信号

finance_market(scope="signals") 获取:

  • 连续涨停股列表
  • 当日涨幅超15%的股票

Step 7 — 涨跌幅榜

finance_screen(sort_by="change_pct", order="desc", limit=5) → 涨幅Top5 finance_screen(sort_by="change_pct", order="asc", limit=5) → 跌幅Top5

Step 8 — 新股日历(可选)

finance_market(scope="ipo", limit=5) → 近期新股

Step 9 — 全网热搜 + 财经要闻 + 每日简报

  • info_trending() → 微博/抖音/知乎等平台热搜,筛选与财经相关的条目
  • info_news(category="finance", limit=10) → 今日财经新闻
  • info_bulletin() → 每日新闻简报摘要

Step 10 — 组装输出

## A 股市场简报 — {YYYY-MM-DD}({农历} {星期X})

### 大盘概览
| 指数 | 点位 | 涨跌幅 | 成交额 |
|------|------|--------|--------|
| 上证指数 | X,XXX | +X.XX% | XXXX亿 |
| 深证成指 | XX,XXX | +X.XX% | XXXX亿 |
| 创业板指 | X,XXX | +X.XX% | XXXX亿 |

市场情绪:涨停XX家 / 跌停XX家 / 封板成功率XX% / 最高XX板

### 宏观参考
- 黄金:¥XXX/克(+X.X%)
- 美元兑人民币:X.XXXX

### 连板梯队
| 板数 | 数量 | 代表股 |
|------|------|--------|
| 首板 | XX家 | XXX, XXX |
| 2板 | XX家 | XXX |
| 3板+ | XX家 | XXX |

### 热门板块
领涨:XXX概念 (+X.X%)、YYY概念 (+X.X%)
领跌:XXX概念 (-X.X%)

### 涨幅榜
1. XXX(代码)+XX.X%
2. ...

### 跌幅榜
1. XXX(代码)-XX.X%
2. ...

### 异动信号
- XXX 连续X日涨停
- XXX 今日涨幅XX%

### 热搜与舆情
(筛选全网热搜中与财经/股市相关的条目)
- 热搜1
- 热搜2

### 今日要闻
- 要闻1
- 要闻2

以上内容基于公开数据,不构成投资建议。

注意事项

  • 非交易时段说明数据为最近一个交易日收盘数据
  • 不要编造数据,如果某步获取失败则跳过并说明
  • 输出语言跟随用户
Usage Guidance
This skill appears coherent: it uses a single GroundAPI key to fetch market, macro, and trending data and assembles a briefing. Before installing, verify you trust https://groundapi.net (review their privacy/TOS and what data they log), provide a key with minimal scope/permissions, and rotate/revoke the key if needed. Because the skill calls external APIs, avoid putting highly sensitive data into prompts that the skill will forward. If you require tighter controls, request or enforce API-level restrictions (IP allowlist, rate limits) from GroundAPI.
Capability Analysis
Type: OpenClaw Skill Name: groundapi-market-briefing Version: 1.1.0 The skill bundle is a legitimate integration for generating Chinese A-share market reports using the GroundAPI service. It defines a structured workflow for an AI agent to fetch financial data, macro indicators, and news via an MCP server (https://mcp.groundapi.net/mcp). No evidence of data exfiltration, malicious execution, or harmful prompt injection was found; the use of the GROUNDAPI_KEY environment variable is consistent with the skill's stated purpose.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
Name/description (A‑share market briefing) match the declared requirement (GROUNDAPI_KEY) and the SKILL.md which documents calls to a GroundAPI MCP endpoint (finance_*, info_*, life_calendar()). No unrelated credentials, binaries, or system paths are requested.
Instruction Scope
SKILL.md is instruction-only and precisely describes calling GroundAPI functions (market overview, sectors, signals, gold/exchange rates, trending/news). It does not instruct reading local files, other env vars, or sending data to unexpected third parties. It explicitly says not to fabricate data and to skip failed calls.
Install Mechanism
No install spec or code files are present (instruction-only). No downloads or archive extraction are requested, so nothing is written to disk by the skill itself.
Credentials
Only one required environment variable (GROUNDAPI_KEY) is declared and used as the primary credential. That is proportional: an external API key is expected for this integration. SKILL.md does not reference other secrets or unrelated service credentials.
Persistence & Privilege
always is false and the skill does not request persistent system privileges or modify other skills' configs. It can be invoked autonomously (default), which is normal for skills and not by itself a concern.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install groundapi-market-briefing
  3. After installation, invoke the skill by name or use /groundapi-market-briefing
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.0
v1.1.0: Add gold price, forex rate, trending topics, daily bulletin, calendar (trading day check), update MCP endpoint
v1.0.0
Initial release of daily A-share market briefing skill: - Generates structured daily market summaries, including index data, sector rotation, top movers, and key financial news, powered by GroundAPI MCP tools. - Automatically triggers on user requests for market briefings or summaries (e.g., "今天A股怎么样", "market summary"). - Collects and outputs data on indices, market breadth, sectors, funds, macro indicators, top gainers/losers, and finance news. - Assembles all information in a clear, user-friendly format, in either Chinese or English based on user language. - Highlights "Tomorrow's Focus" based on sector and news data, explicitly stating no investment advice is given. - Handles non-trading day scenarios and gracefully skips missing data with user notification.
Metadata
Slug groundapi-market-briefing
Version 1.1.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 2
Frequently Asked Questions

What is Groundapi Market Briefing?

Generate A-share market briefing with indices, limit-up/down pools, sector rotation, IPO calendar, anomaly signals, gold/forex macro data, trending topics, a... It is an AI Agent Skill for Claude Code / OpenClaw, with 184 downloads so far.

How do I install Groundapi Market Briefing?

Run "/install groundapi-market-briefing" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Groundapi Market Briefing free?

Yes, Groundapi Market Briefing is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Groundapi Market Briefing support?

Groundapi Market Briefing is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Groundapi Market Briefing?

It is built and maintained by qingkongzhiqian (@qingkongzhiqian); the current version is v1.1.0.

💬 Comments