← Back to Skills Marketplace
yzswk

A Share Event

by yzswk · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
150
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install a-share-event
Description
A股事件驱动分析/公告解读/政策影响评估。当用户说"事件分析"、"公告解读"、"政策影响"、"并购"、"增发"、"回购"、"股权激励"、"XX出了什么公告"、"这个政策对XX有什么影响"、"解禁"、"定增"、"事件驱动"、"event analysis"、"公告分析"、"重组"、"资产注入"、"战略合作"、"利好...
README (SKILL.md)

数据源

SCRIPTS="$SKILLS_ROOT/cn-stock-data/scripts"

# 实时行情(事件发生后的市场反应)
python "$SCRIPTS/cn_stock_data.py" quote --code [CODE]

# K线(事件前后股价走势对比)
python "$SCRIPTS/cn_stock_data.py" kline --code [CODE] --freq daily --start [事件前30日]

# 财务指标(评估事件对基本面的影响)
python "$SCRIPTS/cn_stock_data.py" finance --code [CODE]

# 资金流向(机构对事件的反应)
python "$SCRIPTS/cn_stock_data.py" fund_flow --code [CODE] --days 30

补充 web 搜索:公告原文、政策全文、分析师点评、历史类似事件案例。

Workflow (5 steps):

Step 1: 事件识别与分类

事件类型 子类 典型影响方向
公司公告 业绩预告/快报 取决于超/低预期
分红方案 通常正面
增发/配股 短期偏负面(摊薄)
回购 正面(公司认为低估)
大股东增持 正面信号
大股东减持/解禁 负面信号
股权激励 通常正面(绑定管理层)
并购重组 取决于标的质量和价格
关联交易 需评估是否损害小股东利益
政策事件 行业政策(利好) 板块普涨
行业政策(利空) 板块普跌
货币/财政政策 系统性影响
监管政策 取决于具体内容
市场事件 指数调整(纳入/剔除) 纳入正面,剔除负面
北向资金大幅增减 信号意义
融券/做空 负面压力

Step 2: 事件详情获取

  1. Web 搜索事件详情(公告原文/政策全文)
  2. cn-stock-data 获取事件前后行情数据
  3. Web 搜索分析师/媒体的初步解读

Step 3: 影响评估

定量评估

  • 事件对 EPS 的影响(增发摊薄多少/并购增厚多少)
  • 事件对资产负债表的影响(回购减少现金/增发增加净资产)
  • 事件对估值的影响(新业务带来的估值重塑)

定性评估

  • 影响范围:公司级 / 行业级 / 市场级
  • 影响持续性:一次性 / 短期(1-3月)/ 中期(3-12月)/ 长期(>1年)
  • 影响确定性:高(已落地)/ 中(已公告待执行)/ 低(传闻/预期)
  • 市场预期差:事件是否已被预期?超出预期程度?

综合评级

维度 评分
影响方向 正面 / 中性 / 负面
影响程度 重大 / 中等 / 轻微
持续时间 一次性 / 短期 / 中长期
确定性 高 / 中 / 低

Step 4: 历史类比(可选) Web 搜索类似事件的历史案例:

  • 同公司类似事件的历史反应
  • 同行业类似事件的市场反应
  • 提供参考但不做简单类推

Step 5: 输出

风格说明

维度 formal(机构事件点评) brief(个人事件笔记)
篇幅 2-4 页 半页
事件描述 完整(含公告/政策原文引用) 一段话概述
定量影响 详细计算(EPS/净资产影响) 核心数字
定性评估 完整评级表 一句话判断
历史类比 2-3 个案例 无或 1 个
结论 客观分析正反面 可加操作建议
免责声明 需要 不需要

关键规则

  1. 先看公告原文:所有分析基于公告/政策原文,不基于二手解读
  2. 区分"预期内"和"超预期":市场已充分预期的事件影响有限
  3. 短期反应 ≠ 长期影响:股价短期反应可能过度,长期取决于基本面实质变化
  4. 关注细节:增发价格/回购价格区间/减持比例/激励条件等细节决定影响程度
  5. 不做简单类推:历史类似事件仅供参考,不能直接预测本次结果
  6. 与其他 skill 联动:事件分析后可用 a-share-earnings-analysis 评估财务影响,用 a-share-thesis 更新投资论点

使用示例

示例 1: 基本使用

# 调用 skill
result = run_skill({
    "param1": "value1",
    "param2": "value2"
})

示例 2: 命令行使用

python scripts/run_skill.py --input data.json
Usage Guidance
This skill appears coherent and focused on event-driven stock analysis. Before installing or enabling it: (1) Verify the referenced cn-stock-data scripts ($SKILLS_ROOT/cn-stock-data/scripts/cn_stock_data.py) exist and inspect their code for network access, credential use, or file I/O you don't expect — the skill instructs the agent to run those scripts but does not include them. (2) Confirm that web searches and any market-data access comply with your data policies and licensing. (3) Be aware the skill will run local Python commands when triggered by many keywords (the SKILL.md uses a wide 'MUST USE' trigger list); if you want to limit automatic runs, restrict invocation or review the agent's skill-invocation policies. If you cannot review the external scripts, treat the skill as higher risk and avoid granting it autonomous execution.
Capability Analysis
Type: OpenClaw Skill Name: a-share-event Version: 1.0.0 The skill bundle is designed for A-share market event analysis, providing a structured workflow for interpreting corporate announcements, policy changes, and M&A activities. It utilizes a local script dependency (cn_stock_data.py) and web searches to gather financial data and news. The instructions in SKILL.md and the analysis templates in references/event-analysis-guide.md are entirely consistent with the stated financial analysis purpose, with no evidence of malicious intent, data exfiltration, or harmful prompt injection.
Capability Assessment
Purpose & Capability
Name/description (A股事件驱动分析、公告解读、政策影响评估) match the instructions: get announcement/policy text, perform quantitative/qualitative impact assessment, and fetch market/financial data. Requested artifacts (web search + cn-stock-data script calls) are coherent with the stated purpose.
Instruction Scope
Instructions are focused on event analysis and cite two data sources: web search and running python scripts under $SKILLS_ROOT/cn-stock-data/scripts. They do not ask to read unrelated system files or environment secrets. Caveat: the skill instructs running external python scripts (not included in this package); those scripts could themselves access network, credentials, or files — so scope depends on the trustworthiness of the referenced cn-stock-data scripts.
Install Mechanism
No install spec and no bundled code beyond documentation; lowest install risk. The skill is instruction-only and will not write files or download code by itself.
Credentials
The skill declares no required env vars, credentials, or config paths. That is appropriate for a documentation/instruction-only analysis skill. Note: runtime commands reference $SKILLS_ROOT and call local python scripts, which may require interpreter presence and access to filesystem/network; such needs are proportional if the referenced scripts are legitimate.
Persistence & Privilege
always is false and the skill does not request elevated or persistent privileges. disable-model-invocation is false (normal). The skill does not claim to modify other skills or global agent settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install a-share-event
  3. After installation, invoke the skill by name or use /a-share-event
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of a-share-event skill for A股事件驱动分析。 - Enables event-driven analysis, announcement interpretation, and policy impact assessment for A股股票. - Automatically triggers on user inquiries about event analysis, corporate actions, or policy effects. - Integrates with cn-stock-data for real-time quotes, price trends, financials, and fund flow. - Supports both institutional (formal) and personal (brief) analysis output styles. - Outlines a clear, stepwise workflow for event recognition, data gathering, impact evaluation, and result generation. - Emphasizes reliance on primary sources (original announcements, full policies) and careful distinction between short-term and long-term effects.
Metadata
Slug a-share-event
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is A Share Event?

A股事件驱动分析/公告解读/政策影响评估。当用户说"事件分析"、"公告解读"、"政策影响"、"并购"、"增发"、"回购"、"股权激励"、"XX出了什么公告"、"这个政策对XX有什么影响"、"解禁"、"定增"、"事件驱动"、"event analysis"、"公告分析"、"重组"、"资产注入"、"战略合作"、"利好... It is an AI Agent Skill for Claude Code / OpenClaw, with 150 downloads so far.

How do I install A Share Event?

Run "/install a-share-event" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is A Share Event free?

Yes, A Share Event is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does A Share Event support?

A Share Event is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created A Share Event?

It is built and maintained by yzswk (@yzswk); the current version is v1.0.0.

💬 Comments