← 返回 Skills 市场
A Stock Daily Express
作者
rudagebil11-jpg
· GitHub ↗
· v1.0.0
· MIT-0
108
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install a-stock-daily-express
功能描述
📈 A股每日快报自动生成 - 自动获取今日大盘行情、涨跌排名、热点板块,一键生成小红书/公众号文章,直接就能发。炒股懒人必备,每天省你半小时整理时间。
使用说明 (SKILL.md)
📈 A 股每日快报 - 自动生成
自动获取今日 A 股行情 → 统计涨跌 → 分析热点板块 → 生成适合小红书/公众号的每日快报,直接复制就能发。炒股懒人必备,每天省半小时整理时间。
✨ 特色功能
| 功能 | 说明 |
|---|---|
| 📊 自动行情获取 | 自动获取今日大盘点位、涨跌幅、涨跌家数 |
| 🏆 涨跌排名 | 自动统计涨幅榜、跌幅榜前 10 |
| 🔥 热点板块 | 分析今日涨幅靠前板块 |
| 📝 一键生成 | 直接生成小红书/公众号格式文章 |
| ✅ 事实核查 | 内置数据验证,保证数据准确 |
| 📤 导出 | 支持 markdown / HTML 导出 |
🎨 输出格式支持
| 平台 | 风格 |
|---|---|
| 小红书 | 短句+emoji+分点清单+自动标签 |
| 公众号 | 标题+小标题+适合手机阅读 |
| 朋友圈 | 简洁短文+行情要点 |
🚀 使用方法
生成今日快报(小红书)
a-stock-daily-express 今日 A 股行情快报 --platform xiaohongshu
生成公众号版本
a-stock-daily-express 今日收盘总结 --platform wechat
手动指定日期
a-stock-daily-express 2026-03-28 --platform xiaohongshu
📋 工作流程
- 获取数据 - 调用 akshare / 东方财富接口获取今日行情
- 统计分析 - 计算涨跌分布、板块涨幅、排名
- 生成内容 - 根据平台风格生成对应格式
- 事实核查 - 验证关键数据一致性
- 导出成品 - 输出 markdown,直接复制发布
🔧 依赖
akshare- 财经数据接口(需要pip install akshare)ai-fact-checker- 可选,用于数据一致性验证- 不需要额外 API 密钥,数据免费获取
💡 示例输出(小红书)
# 📈 今日 A 股收盘总结 03/28
上证指数: 3050 +0.85% 📈
上涨: 3125 下跌: 1682
🔥 热门板块:
- AI 芯片 +3.2%
- 消费复苏 +2.1%
- 新能源 +1.5%
🏆 涨幅榜 TOP 3:
1. XXX +10% 涨停
2. YYY +9.5%
3. ZZZ +8.8%
💬 今日感想:
人工智能继续发力,板块轮动明显,控制仓位慢慢来~
#A股 #股票 #投资理财 #每日行情 #炒股
📦 安装
npx clawhub install a-stock-daily-express
pip install akshare
👨💻 Author
rudagebil11-jpg
📄 License
MIT
安全使用建议
What to check before installing:
- Verify Python is installed and comes from a trusted source; the skill calls the system 'python' and runs akshare (pip install akshare is required). Use a virtualenv or container to isolate that installation.
- akshare fetches/scrapes public Chinese finance sites (Eastmoney, etc.); expect network access. If you must limit network or third-party access, run in a restricted environment.
- The Node code uses child_process.execSync to run a Python -c string. Although the current code embeds a static Python snippet (no user input passed into the Python command), execSync increases risk if the skill is modified. Inspect scripts/daily-generator.js yourself; consider running it locally in a sandbox first.
- The SKILL.md was flagged for hidden unicode control characters. View the file in a hex/raw editor or re-download from a trusted source to ensure no invisible characters are present that could affect LLM processing.
- Author and homepage are unknown. If you need higher assurance, ask the author for provenance, or prefer a skill with a verifiable source (GitHub repo, maintainer identity).
If you decide to proceed: install akshare in an isolated environment, inspect the code, and run one test invocation rather than enabling it for broad autonomous use.
功能分析
Type: OpenClaw Skill
Name: a-stock-daily-express
Version: 1.0.0
The skill is a legitimate tool for generating A-share market reports for social media. It uses a Node.js script (scripts/daily-generator.js) to execute a hardcoded Python snippet that fetches financial data via the 'akshare' library. While it uses execSync to bridge Node.js and Python, the command string is constructed from static code and does not incorporate unsanitized user input, posing no immediate shell injection risk. The behavior aligns perfectly with the description in SKILL.md.
能力评估
Purpose & Capability
The skill's stated purpose is generating A‑share daily reports and the code indeed fetches market data and generates platform-specific text. However the manifest/metadata claim no required binaries or env vars while the implementation invokes the system 'python' interpreter and requires the Python package 'akshare' (SKILL.md mentions pip install akshare). Declaring Python (or a runtime requirement) in the metadata would be expected but is missing.
Instruction Scope
SKILL.md describes only fetching market data (akshare/Eastmoney), analyzing and generating reports — that matches the code. The runtime JS uses child_process.execSync to run an embedded Python snippet; the snippet does not use user-supplied input and only calls akshare functions. There is no obvious file-reading or credential access beyond network calls to retrieve market data. The pre-scan found unicode-control-chars in SKILL.md which could indicate hidden characters intended to manipulate LLM processing; this should be investigated.
Install Mechanism
There is no formal install spec in the registry, but SKILL.md tells users to pip install akshare and npx to install the skill. The code relies on a local Python interpreter and akshare from PyPI (standard but not declared). No third-party binary downloads or obscure URLs are used. Risk is moderate because execSync will run system 'python', so you should ensure that Python/akshare come from a trusted environment (virtualenv/container).
Credentials
The skill requests no environment variables, no credentials, and no config paths. That is proportional for a data-fetch-and-format tool. The only external dependency is akshare (which fetches market data from public sources).
Persistence & Privilege
The skill does not request persistent/always-on privileges, doesn't modify other skills, and has no special agent-wide settings. default autonomous invocation is allowed but not combined with other privilege concerns.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install a-stock-daily-express - 安装完成后,直接呼叫该 Skill 的名称或使用
/a-stock-daily-express触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: Automatically generates a concise daily report for China A-shares (A股) to streamline content creation for platforms like Xiaohongshu and WeChat.
- Fetches and analyzes real-time A股 market data, including index changes, top gainers/losers, and trending sectors.
- One-click generation of platform-specific articles (Xiaohongshu, WeChat, Moments) in ready-to-publish formats.
- Supports markdown/HTML exports and customizable output for different social platforms.
- Includes optional fact-checking to ensure data reliability.
- No paid data source required; works with free Akshare and optionally ai-fact-checker.
元数据
常见问题
A Stock Daily Express 是什么?
📈 A股每日快报自动生成 - 自动获取今日大盘行情、涨跌排名、热点板块,一键生成小红书/公众号文章,直接就能发。炒股懒人必备,每天省你半小时整理时间。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 108 次。
如何安装 A Stock Daily Express?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install a-stock-daily-express」即可一键安装,无需额外配置。
A Stock Daily Express 是免费的吗?
是的,A Stock Daily Express 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
A Stock Daily Express 支持哪些平台?
A Stock Daily Express 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 A Stock Daily Express?
由 rudagebil11-jpg(@rudagebil11-jpg)开发并维护,当前版本 v1.0.0。
推荐 Skills