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>
50 lines
1.3 KiB
Markdown
50 lines
1.3 KiB
Markdown
## 券商每月荐股
|
||
----
|
||
|
||
接口:broker_recommend
|
||
描述:获取券商月度金股,一般1日~3日内更新当月数据
|
||
限量:单次最大1000行数据,可循环提取
|
||
积分:积分达到6000即可调用,具体请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=13)
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
month | str | Y | 月度(YYYYMM)
|
||
|
||
|
||
**输出参数**
|
||
|
||
名称 | 类型 | 默认显示 | 描述
|
||
--- | ---- | ---- | ----
|
||
month | str | Y | 月度
|
||
broker | str | Y | 券商
|
||
ts_code | str | Y | 股票代码
|
||
name | str | Y | 股票简称
|
||
|
||
|
||
**接口示例**
|
||
|
||
```python
|
||
|
||
#获取查询月份券商金股
|
||
df = pro.broker_recommend(month='202106')
|
||
|
||
```
|
||
|
||
|
||
**数据示例**
|
||
|
||
month broker ts_code name
|
||
0 202106 东兴证券 000066.SZ 中国长城
|
||
1 202106 东兴证券 000708.SZ 中信特钢
|
||
2 202106 东兴证券 002304.SZ 洋河股份
|
||
3 202106 东兴证券 003816.SZ 中国广核
|
||
4 202106 东兴证券 300196.SZ 长海股份
|
||
.. ... ... ... ...
|
||
263 202106 长城证券 600096.SH 云天化
|
||
264 202106 长城证券 600809.SH 山西汾酒
|
||
265 202106 长城证券 603596.SH 伯特利
|
||
266 202106 长城证券 603885.SH 吉祥航空
|
||
267 202106 长城证券 605068.SH 明新旭腾
|