/install ftshare-fund-data
FT 基金数据 Skills
本 skill 是 FTShare-fund-data 的统一路由入口。
根据用户问题,从下方「能力总览」或「询问方式与子 skill 对应表」匹配对应子 skill,然后通过 run.py 执行并解析响应。
所有接口均以
https://market.ft.tech为基础域名。
调用方式(唯一规则)
run.py 与本文件(SKILL.md)位于同一目录。执行时:
- 取本文件的绝对路径,将末尾
/SKILL.md替换为/run.py,得到\x3CRUN_PY>。 - 调用:
python \x3CRUN_PY> \x3C子skill名> [参数...]
# 示例(\x3CRUN_PY> 为实际绝对路径)
python \x3CRUN_PY> fund-basicinfo-single-fund --institution-code 000001
python \x3CRUN_PY> fund-cal-return-single-fund-specific-period --institution-code 159619 --cal-type 1Y
python \x3CRUN_PY> fund-nav-single-fund-paginated --institution-code 000001 --page 1 --page-size 50
python \x3CRUN_PY> fund-overview-all-funds-paginated --page 1 --page-size 20
python \x3CRUN_PY> fund-support-symbols-all-funds-paginated --page 1 --page-size 20
run.py内部通过__file__自定位,无论安装在何处都能正确找到各子 skill 的脚本。
基金 — 询问方式与子 skill 对应表
| 询问方式(用户常说的词) | 子 skill |
|---|---|
| 基金基本信息、某只基金详情、基金管理人/基金经理、基金类型/投资目标 | fund-basicinfo-single-fund |
| 基金累计收益率、近1年/近3个月收益、YTD 收益、基金收益曲线 | fund-cal-return-single-fund-specific-period |
| 基金净值、单位净值/累计净值、日增长率、基金净值历史 | fund-nav-single-fund-paginated |
| 基金概览、所有基金信息、基金列表概况 | fund-overview-all-funds-paginated |
| 支持的基金列表、基金代码清单、所有基金标的 | fund-support-symbols-all-funds-paginated |
能力总览
fund-basicinfo-single-fund:查询指定基金基础信息(名称、管理人、经理、类型、投资目标等)。必填:--institution-code(6 位基金代码)。若用户仅给基金名称,先通过fund-support-symbols-all-funds-paginated或fund-overview-all-funds-paginated映射代码再查。fund-cal-return-single-fund-specific-period:查询指定基金在指定区间的累计收益率时间序列。必填:--institution-code、--cal-type(1M/3M/6M/1Y/3Y/5Y/YTD)。建议先完成名称到代码映射后再调用。fund-nav-single-fund-paginated:查询指定基金净值历史(分页)。必填:--institution-code;可选:--page、--page-size。建议先完成名称到代码映射后再调用。fund-overview-all-funds-paginated:查询所有基金概览信息(分页)。可选:--page、--page-size。fund-support-symbols-all-funds-paginated:查询所有支持基金的标的列表(分页)。可选:--page、--page-size。
使用流程
- 记录本文件绝对路径,将
/SKILL.md替换为/run.py得到\x3CRUN_PY>。 - 理解用户意图,从「询问方式与子 skill 对应表」或「能力总览」匹配子 skill 名称。
- 若用户给的是基金名称而非代码:先调用
fund-support-symbols-all-funds-paginated或fund-overview-all-funds-paginated获取候选,确定 6 位institution-code。 - (可选)读取
sub-skills/\x3C子skill名>/SKILL.md了解接口与参数。 - 执行:
python \x3CRUN_PY> \x3C子skill名> [参数...],获取 JSON 输出(详情/净值/收益统一使用--institution-code)。 - 解析并输出:以表格或要点形式展示给用户;若候选不唯一,先让用户确认再查询指标。
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install ftshare-fund-data - After installation, invoke the skill by name or use
/ftshare-fund-data - Provide required inputs per the skill's parameter spec and get structured output
What is Skills of A-share fund data released by ft.tech.?
基金数据技能集(market.ft.tech)。覆盖基金基本信息、净值历史、累计收益率、基金概览列表、支持基金标的列表。用户询问基金详情、基金净值、基金收益、基金列表时使用。 It is an AI Agent Skill for Claude Code / OpenClaw, with 274 downloads so far.
How do I install Skills of A-share fund data released by ft.tech.?
Run "/install ftshare-fund-data" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Skills of A-share fund data released by ft.tech. free?
Yes, Skills of A-share fund data released by ft.tech. is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Skills of A-share fund data released by ft.tech. support?
Skills of A-share fund data released by ft.tech. is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Skills of A-share fund data released by ft.tech.?
It is built and maintained by Shawn92 (@shawn92); the current version is v1.0.0.