stock-announcements
Stock Announcements retrieves official disclosure notices from Chinese A-share listed companies via East Money data, enabling investors to filter by stock code and keywords for critical events like earnings reports and corporate changes. Real-time updates cover all listed companies with reliable, authoritative data sourced through AkShare.
Stock Announcements fetches real-time A-share company announcements to help investors monitor key disclosures and make informed decisions.
AI-generated summary based on this skill's SKILL.md
Install
netease-youdao/LobsterAI/stock-announcements · repository language: TypeScript
git clone https://github.com/netease-youdao/LobsterAI
cp -r LobsterAI/SKILLs/stock-announcements ~/.claude/skills/stock-announcementsnpx skillfed install netease-youdao/LobsterAI/stock-announcementsFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
What is stock-announcements and what can it do?
Stock Announcements retrieves official disclosure notices from Chinese A-share listed companies via East Money data, enabling investors to filter by stock code and keywords for critical events like earnings reports and corporate changes. Real-time updates cover all listed companies with reliable, authoritative data sourced through AkShare.
How do I query A-share company announcements with stock-announcements?
Stock Announcements supports filtering by stock code, keyword, and date range to retrieve announcements. You can search for specific companies (e.g., by code like 600519 or 000858), track major corporate events such as earnings, restructuring, and shareholder changes, and access real-time official disclosure data from Eastern Wealth.
Can stock-announcements extract and summarize PDF announcement content?
Yes, Stock Announcements can extract and summarize PDF announcement content for analysis. This feature helps investors quickly process detailed disclosure documents and identify key information relevant to their investment decisions without manually reviewing entire PDFs.
What types of corporate events does stock-announcements track?
Stock Announcements tracks major corporate events including earnings reports, business restructuring, shareholder composition changes, and other significant disclosures. These real-time monitored events help investors stay informed about developments that may impact their investment decisions.
How current is the data in stock-announcements?
Stock Announcements provides real-time official disclosure data from Eastern Wealth, ensuring you access the latest A-share company announcements as they are published. The skill monitors and retrieves announcements continuously to support timely investment decision-making.
What is the license for stock-announcements?
Stock Announcements is released under the MIT license, allowing free use, modification, and distribution in both commercial and personal projects with minimal restrictions.
SKILL.md
rendered from the published skill — quoted content, verbatim
Stock Announcement Fetcher
获取A股上市公司的官方公告信息(真实数据),帮助投资者及时掌握重要信息披露。
真实数据保证
- 数据来源: 东方财富网(通过AkShare开源库)
- 更新频率: 实时(当日公告)
- 覆盖范围: 全部A股上市公司
- 数据质量: 官方权威数据
Dependencies
Python packages (install once):
pip install akshare pandas requests PyPDF2
When to Use This Skill
触发条件(用户提及以下任一场景时激活):
- 查询特定公司公告 — "查看五粮液最近的公告"、"002368有什么新公告?"
- 监控特定事件 — "哪些公司今天发布了业绩预告?"
- 投资决策辅助 — "公司有利好消息吗?"
Usage
IMPORTANT: Always use the $SKILLS_ROOT environment variable to locate scripts.
基础查询
export PYTHONIOENCODING=utf-8
python "$SKILLS_ROOT/stock-announcements/scripts/announcements.py" 000858
查询最近7天
export PYTHONIOENCODING=utf-8
python "$SKILLS_ROOT/stock-announcements/scripts/announcements.py" 600519 --days 7
关键词筛选
export PYTHONIOENCODING=utf-8
python "$SKILLS_ROOT/stock-announcements/scripts/announcements.py" 600519 --keyword 业绩
JSON格式输出
```bash export PYTHONIOENCODING=utf-8 python
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 2 files
SKILLs/stock-announcements/SKILL.md
SKILLs/stock-announcements/scripts/announcements.py