Tushare Pro 是中国领先的金融数据平台,提供股票、基金、期货、债券、外汇、数字货币等全品类金融大数据。
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiontushare-apiExecute the skills CLI command in your project's root directory to begin installation:
Fetches tushare-api from daydreammy/tushare-openclaw-skill and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate tushare-api. Access via /tushare-api in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
13
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
13
stars
Tushare Pro 是中国领先的金融数据平台,提供股票、基金、期货、债券、外汇、数字货币等全品类金融大数据。
官网: https://tushare.pro API 文档: https://tushare.pro/document/2
所有股票代码都需要带后缀:
| 交易所 | 后缀 | 示例 |
|---|---|---|
| 上海证券交易所 | .SH | 600000.SH |
| 深圳证券交易所 | .SZ | 000001.SZ |
| 北京证券交易所 | .BJ | 835305.BJ |
| 香港证券交易所 | .HK | 00001.HK |
stock_basic - 股票基础信息trade_cal - 交易日历stock_company - 上市公司基本信息new_share - IPO 新股列表daily - 日线行情weekly - 周线行情monthly - 月线行情adj_factor - 复权因子daily_basic - 每日指标(PE/PB/市值等)income - 利润表balance_sheet - 资产负债表cashflow - 现金流量表forecast - 业绩预告express - 业绩快报dividend - 分红送股fina_indicator - 财务指标moneyflow - 个股资金流向limit_list - 每日涨跌停股票top_list - 龙虎榜数据block_trade - 大宗交易import tushare as ts
# 设置 token(需要用户自行申请)
pro = ts.pro_api('your_token_here')
# 获取股票列表
df = pro.stock_basic(exchange='', list_status='L', fields='ts_code,symbol,name,area,industry,list_date')
# 获取日线行情
df = pro.daily(ts_code='000001.SZ', start_date='20240101', end_date='20240201')
# 获取财务数据
df = pro.income(ts_code='600000.SH', start_date='20230101', end_date='20231231')
curl -X POST https://api.tushare.pro \
-H "Content-Type: application/json" \
-d '{
"api_name": "daily",
"token": "your_token",
"params": {"ts_code": "000001.SZ", "start_date": "20240101"},
"fields": "ts_code,trade_date,open,high,low,close,vol"
}'
更多接口详情见 references/api-reference.md
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
jwynia/agent-skills
mindrally/skills
kostja94/marketing-skills
github/awesome-copilot
wispbit-ai/skills
shubhamsaboo/awesome-llm-apps
Solid pick for teams standardizing on skills: tushare-api is focused, and the summary matches what you get after install.
tushare-api is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: tushare-api is the kind of skill you can hand to a new teammate without a long onboarding doc.
I recommend tushare-api for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
I recommend tushare-api for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Keeps context tight: tushare-api is the kind of skill you can hand to a new teammate without a long onboarding doc.
Useful defaults in tushare-api — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend tushare-api for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Keeps context tight: tushare-api is the kind of skill you can hand to a new teammate without a long onboarding doc.
Registry listing for tushare-api matched our evaluation — installs cleanly and behaves as described in the markdown.
showing 1-10 of 40