← 返回 Skills 市场
753
总下载
1
收藏
10
当前安装
1
版本数
在 OpenClaw 中安装
/install clouddream-a-data
功能描述
获取A股市场资金流向、新闻、筹码分布、龙虎榜及涨停板等多维度数据,支持单只股票详情查询。
使用说明 (SKILL.md)
云梦A股数据获取Skill
功能介绍
这是一个用于OpenClaw框架的A股市场数据获取技能,可以获取以下数据:
- 个股资金流向 - 获取指定股票的资金流向数据
- 个股新闻 - 查询指定股票的最新新闻
- 个股筹码分布 - 获取指定股票的筹码分布数据
- 当天龙虎榜 - 获取当日龙虎榜数据
- 当日涨停板行情 - 获取当日涨停板股票数据
- 昨日涨停板股池 - 获取昨日涨停板股票数据
- 盘口异动 - 获取盘口异动数据
- 板块异动 - 获取板块异动数据
- 单只股票详细信息 - 获取股票的详细信息,包括换手率、成交量、盘口情况、均线情况和上升通道判断
安装方法
pip install -e .
依赖项
- pandas
- requests
- beautifulsoup4
使用方法
基本用法
from clouddream_quant import (
get_stock_fund_flow,
get_stock_news,
get_stock_chip_distribution,
get_dragon_tiger_list,
get_limit_up_stocks,
get_yesterday_limit_up_stocks,
get_market_anomalies,
get_sector_anomalies,
get_stock_details,
run_all
)
# 获取个股资金流向
result = get_stock_fund_flow("000001")
print(result)
# 获取单只股票详细信息
result = get_stock_details("000001")
print(result)
# 运行所有数据获取方法
result = run_all()
print(result)
返回格式
所有方法都返回标准的OpenClaw格式:
{
"success": true,
"data": [...],
"message": ""
}
注意事项
- 本技能使用东方财富和新浪财经的API获取数据,请确保网络连接正常
- 由于API访问限制,可能会出现请求失败的情况,技能已内置重试机制
- 数据获取速度可能会受到网络状况和API限制的影响
- 当网络连接恢复后,技能将能够正常获取真实的A股市场数据
版本信息
- 版本:1.0.0
- 作者:云梦
- 描述:获取A股市场各类数据,包括行情、资金流向、龙虎榜等
安全使用建议
This skill appears coherent and implements what it claims: it scrapes/fetches A‑share data from EastMoney and Sina using standard Python libraries and does not request secrets. Before installing: (1) review or run the code in a sandbox to confirm it only calls the documented endpoints and to see where CSV files are written (README mentions a results/ directory); (2) be aware it will perform network requests—do not run it in environments with strict data/network policies; (3) note minor packaging oddities (package.json present, entry_point name may not match packaging layout) — you may want to inspect run_all and file‑write behavior in index.py to confirm file locations and frequency. If you plan to allow autonomous invocation by agents, consider the usual caution: the skill can make outbound network calls and write files, so limit its permissions or run in an isolated environment if you have sensitive data on the host.
功能分析
Type: OpenClaw Skill
Name: clouddream-a-data
Version: 1.0.0
The skill bundle provides legitimate functionality for fetching Chinese A-share market data (fund flows, news, and technical indicators) from public financial APIs like Eastmoney and Sina Finance. The implementation in `index.py` uses standard libraries such as `requests`, `pandas`, and `BeautifulSoup` without any evidence of data exfiltration, unauthorized file access, or malicious command execution. While there is a minor discrepancy in `index.py` where the `save_to_csv` function is a placeholder that does not actually write to disk despite the `README.md` claims, this appears to be an unfinished feature or a functional bug rather than a malicious indicator.
能力评估
Purpose & Capability
Name/description match the code and SKILL.md. The Python code issues HTTP requests to EastMoney and Sina endpoints (expected sources for A‑share data) and implements the functions described (fund flow, news, chip distribution,龙虎榜, 涨停板, etc.).
Instruction Scope
SKILL.md instructs standard install/use patterns and documents network dependence. It does not ask the agent to read unrelated system files or to access credentials; behavior described (and implemented) stays within the data‑collection scope.
Install Mechanism
No remote arbitrary download/install is used; packaging is standard Python (pip editable install, setup.py). Dependencies are common PyPI libraries (pandas, requests, beautifulsoup4). The presence of a package.json is odd (Node metadata in a Python package) but not a security risk by itself.
Credentials
The skill requires no environment variables, no credentials, and references only public HTTP APIs. No sensitive system paths or unrelated service credentials are requested.
Persistence & Privilege
Flags show always: false (not forced into every agent run) and model invocation is allowed (the normal default). The package installs an entry point/console script but does not attempt to modify other skills or system configurations.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install clouddream-a-data - 安装完成后,直接呼叫该 Skill 的名称或使用
/clouddream-a-data触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
首次上传云梦A股数据获取Skill
元数据
常见问题
云梦A股数据获取Skill 是什么?
获取A股市场资金流向、新闻、筹码分布、龙虎榜及涨停板等多维度数据,支持单只股票详情查询。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 753 次。
如何安装 云梦A股数据获取Skill?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install clouddream-a-data」即可一键安装,无需额外配置。
云梦A股数据获取Skill 是免费的吗?
是的,云梦A股数据获取Skill 完全免费(开源免费),可自由下载、安装和使用。
云梦A股数据获取Skill 支持哪些平台?
云梦A股数据获取Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 云梦A股数据获取Skill?
由 冢猫(@glory904649854)开发并维护,当前版本 v1.0.0。
推荐 Skills