← 返回 Skills 市场
kooui

东方财富妙想skills套件/eastmoney MX skills suite

作者 kooui · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
181
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install eastmoney-mx-skills-suite
功能描述
东方财富妙想金融技能套件(mx-skills-suite),包含 5 个专业金融子技能: 1. eastmoney_fin_data - 金融数据查询(行情、财务、关联关系) 2. eastmoney_fin_search - 金融资讯搜索(新闻、公告、研报、政策) 3. mx_select_stock - 智能...
使用说明 (SKILL.md)

\r \r

mx-skills-suite - 东方财富妙想金融技能套件\r

\r 本技能套件基于东方财富妙想平台 API构建,提供一站式金融数据查询、资讯搜索、智能选股、自选股管理和模拟交易功能。所有子技能通过统一的 MX_APIKEY 认证,支持自然语言交互。\r \r

包含的子技能\r

\r | # | 技能名称 | 功能说明 | 详细文档 |\r |---|---------|---------|---------|\r | 1 | eastmoney_fin_data | 金融数据查询:股票/行业/板块/指数/基金/债券的实时行情、主力资金、估值、财务指标、股东结构等 | references/mx-data.md |\r | 2 | eastmoney_fin_search | 金融资讯搜索:新闻、公告、研报、政策、交易规则、事件分析等时效性信息 | references/mx-search.md |\r | 3 | mx_select_stock | 智能选股:基于行情/财务指标条件筛选股票、板块成分股查询、股票推荐 | references/mx-select-stock.md |\r | 4 | mx_self_select | 自选股管理:查询/添加/删除东方财富通行证账户下的自选股 | references/mx-selfselect.md |\r | 5 | eastmoney_stock_simulator | 模拟组合管理:持仓查询、买卖操作、撤单、委托查询、资金查询 | references/mx-stock-simulator.md |\r \r

首次使用 - 获取 API Key\r

\r 所有子技能都需要 MX_APIKEY 环境变量才能使用。 如果用户尚未配置,按以下步骤引导:\r \r

步骤 1:获取 API Key\r

\r 打开东方财富妙想平台注册页面:\r https://marketing.dfcfs.com/views/mktemplate/route1?activityId=738&appfenxiang=1\r \r

步骤 2:下载并安装东方财富 APP\r

\r

步骤 3:领取 API Key\r

\r 注册/登录后,在首页搜索 Skill,领取 API KEY\r \r

步骤 4:配置环境变量\r

\r 获取到 API Key 后,直接复制指引文字,或手动设置环境变量:\r \r

# Linux / macOS\r
export MX_APIKEY=你的API_KEY\r
\r
# Windows PowerShell\r
$env:MX_APIKEY = "你的API_KEY"\r
\r
# Windows CMD\r
set MX_APIKEY=你的API_KEY\r
```\r
\r
### 验证配置\r
\r
配置完成后,尝试调用任意子技能接口验证 Key 是否有效。如果返回 `114` 或 `116` 错误码,说明 Key 无效,需要重新获取。\r
\r
## 使用方式\r
\r
根据用户请求自动匹配对应子技能,按需加载 `references/` 下的详细文档:\r
\r
- **查行情/财务数据** → 加载 `references/mx-data.md`,调用金融数据查询接口\r
- **搜新闻/研报/公告** → 加载 `references/mx-search.md`,调用资讯搜索接口\r
- **筛选股票/选股** → 加载 `references/mx-select-stock.md`,调用智能选股接口\r
- **管理自选股** → 加载 `references/mx-selfselect.md`,调用自选股管理接口\r
- **模拟交易/查持仓** → 加载 `references/mx-stock-simulator.md`,调用模拟组合接口\r
\r
## API 基础信息\r
\r
- **API 域名**: `https://mkapi2.dfcfs.com/finskillshub`\r
- **认证方式**: HTTP Header `apikey: {MX_APIKEY}`\r
- **请求方法**: 所有接口均使用 `POST`\r
- **Content-Type**: `application/json`\r
\r
## 错误码说明\r
\r
| 错误码 | 含义 | 处理方式 |\r
|--------|------|---------|\r
| 113 | 调用次数达上限 | 提示用户等待或更新 API Key |\r
| 114 | API 密钥失效 | 提示用户重新获取 Key |\r
| 115 | 未携带密钥 | 提示用户配置 `MX_APIKEY` |\r
| 116 | 密钥不存在 | 提示用户检查 Key 是否正确 |\r
| 404 | 未绑定模拟组合 | 提示用户先在妙想页面创建模拟账户 |\r
\r
## 安全说明\r
\r
- 数据仅发送至东方财富官方 API 域名 `mkapi2.dfcfs.com`\r
- API Key 通过环境变量 `MX_APIKEY` 在服务端使用,不会在前端明文暴露\r
- 模拟交易功能仅用于学习练手,不涉及真实资金\r
安全使用建议
This package appears to do what it says (calls Eastmoney/MX APIs) and only asks for an MX_APIKEY. Before installing: (1) Confirm you trust the MX API key provider and the domain mkapi2.dfcfs.com; (2) Be aware the scripts write files to absolute paths (e.g., /root/.openclaw/workspace/mx_data/output) — check and change those paths if you don't want data written there; (3) mx_self_select.py will try to read a .env file one level above the scripts to locate MX_APIKEY — ensure that .env doesn't contain unrelated secrets you don't want the skill to read; (4) The simulator script reads an optional MX_API_URL env var (undocumented in SKILL.md) — be cautious if you set that to a custom endpoint; (5) If you have sensitive credentials in environment variables or .env files, run the skill in an isolated environment or inspect/modify the code to control exact behavior. If you want higher assurance, ask the maintainer for provenance (homepage/source repository) and verify the code locally before giving it an API key.
功能分析
Type: OpenClaw Skill Name: eastmoney-mx-skills-suite Version: 1.0.0 The eastmoney-mx-skills-suite is a comprehensive financial toolset providing data queries, news searches, stock screening, and mock trading via the official EastMoney API (mkapi2.dfcfs.com). The scripts (mx_data.py, mx_search.py, etc.) are well-structured, use environment variables for API keys, and include filename sanitization to prevent path traversal. No evidence of data exfiltration, malicious execution, or prompt injection was found; the bundle's behavior aligns perfectly with its stated purpose.
能力评估
Purpose & Capability
Name/description state this is an Eastmoney (妙想) financial skills suite and the code exclusively calls the documented MX API host (mkapi2.dfcfs.com) and requires MX_APIKEY — this is coherent and expected.
Instruction Scope
SKILL.md and README instruct use of MX_APIKEY and describe only API interactions. The shipped scripts, however, read/write files under fixed output directories (e.g., /root/.openclaw/workspace/mx_data/output) and one script will attempt to load a .env file in the skill tree to find MX_APIKEY. These filesystem reads/writes are not highlighted in SKILL.md and could cause unexpected local file creation or access.
Install Mechanism
There is no install spec (instruction-only from the platform POV). The package includes Python scripts and a requirements.txt (requests, pandas, openpyxl) which the README suggests installing with pip; no remote download URLs or unusual installers are used.
Credentials
The only required credential declared is MX_APIKEY, which matches the APIs used. Minor inconsistencies: scripts optionally read MX_API_URL (not declared in SKILL.md) and mx_self_select.py will try to read a .env file in the skill parent directory to find MX_APIKEY. These are low-privilege but worth noting because they expand where the skill looks for configuration.
Persistence & Privilege
always: false and agent-autonomy defaults are unchanged. The skill writes output files under fixed directories but does not request persistent platform privileges or modify other skills or global agent settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install eastmoney-mx-skills-suite
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /eastmoney-mx-skills-suite 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
mx-skills-suite 2.0.0 发布:集成东方财富妙想多子技能套件 - 全面升级为东方财富妙想金融技能套件(mx-skills-suite),一站式集成行情、资讯、选股、自选股和模拟交易五大子技能 - 支持统一 API Key 配置(MX_APIKEY),详细配置与获取说明 - 提供五个子技能的分模块调用及详细文档指引 - 统一安全与错误码说明,提升易用性和合规性 - 新增对进阶金融数据、智能选股、模拟炒股、资讯时效性搜索等复杂任务的原生支持
元数据
Slug eastmoney-mx-skills-suite
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

东方财富妙想skills套件/eastmoney MX skills suite 是什么?

东方财富妙想金融技能套件(mx-skills-suite),包含 5 个专业金融子技能: 1. eastmoney_fin_data - 金融数据查询(行情、财务、关联关系) 2. eastmoney_fin_search - 金融资讯搜索(新闻、公告、研报、政策) 3. mx_select_stock - 智能... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 181 次。

如何安装 东方财富妙想skills套件/eastmoney MX skills suite?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install eastmoney-mx-skills-suite」即可一键安装,无需额外配置。

东方财富妙想skills套件/eastmoney MX skills suite 是免费的吗?

是的,东方财富妙想skills套件/eastmoney MX skills suite 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

东方财富妙想skills套件/eastmoney MX skills suite 支持哪些平台?

东方财富妙想skills套件/eastmoney MX skills suite 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 东方财富妙想skills套件/eastmoney MX skills suite?

由 kooui(@kooui)开发并维护,当前版本 v1.0.0。

💬 留言讨论