Sources: extracted from two upstream archives (skill-repo, skills-main),
merged with the following policy:
- 15 broken symlinks (pointing to /Users/jameslee/.cc-switch/skills or
../../.agents/skills on a foreign machine) discarded
- 3 real name collisions with identical content (ai-pair, ifind-http-api,
zhipu-websearch) kept as one copy
- Functional overlaps deduped keeping the strongest variant:
- docx family: kept docx (official, full toolchain) + docx-cn
(GB/T 9704 Chinese official-document constants),
dropped docx_writer (no scripts, name collided with docx)
- humanizer family: kept humanizer-zh (6 zh reference docs),
dropped humanizer (en, redundant for CN workflow)
- Skills that only ran in a foreign environment removed:
ablemind-ops, app-publish, hlb-design-system, openclaw-adj-skill,
claude-driver
- alphapai excluded from this public repo because its SKILL.md hard-coded
live credentials
Result: 25 skills, 572 files, ~7.5 MB.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
58 lines
1.1 KiB
Markdown
58 lines
1.1 KiB
Markdown
## 各渠道公募基金销售保有规模占比
|
||
----
|
||
|
||
接口:fund_sales_ratio
|
||
描述:获取各渠道公募基金销售保有规模占比数据,年度更新
|
||
限量:单次最大100行数据,数据从2015年开始公布,当前数据量很小
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
年份 | str | N | 年度
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输出参数**
|
||
|
||
名称 | 类型 | 默认显示 | 描述
|
||
--- | ---- | ---- | ----
|
||
year | int | Y | 年度
|
||
bank | float | Y | 商业银行(%)
|
||
sec_comp | float | Y | 证券公司(%)
|
||
fund_comp | float | Y | 基金公司直销(%)
|
||
indep_comp | float | Y | 独立基金销售机构(%)
|
||
rests | float | Y | 其他(%)
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**接口示例**
|
||
|
||
```python
|
||
|
||
pro = ts.pro_api()
|
||
|
||
df = pro.fund_sales_ratio()
|
||
|
||
|
||
```
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**数据示例**
|
||
|
||
year bank sec_comp fund_comp indep_comp rests
|
||
0 2015 25.22 10.01 61.90 2.14 0.73
|
||
1 2016 23.43 8.23 65.62 2.24 0.48
|
||
2 2017 24.41 6.05 65.38 3.84 0.32
|
||
3 2018 24.14 6.41 61.26 7.76 0.42
|
||
4 2019 23.59 7.59 57.29 11.03 0.49
|
||
|
||
|