Auto-discovered marketplace from oopslink/trading-skills
npx claudepluginhub oopslink/trading-skillsA-share market data query skills for tushare-cli: stock, index, concepts, sector rotation, financials, futures, forex
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Curated collection of 129 specialized Claude Code subagents organized into 10 focused categories
Comprehensive financial data CLI for Tushare Pro | 7+ trading skill modules | 52+ data tools | Production-ready
A professional-grade skill development and training project featuring comprehensive tools for financial data querying, analysis, and trading strategy development. Built with a modular skill architecture, complete CLI implementation, and extensive test coverage.
trading-skills/
โโโ skills/ # Trading skill modules (7 categories)
โ โโโ tushare-stock/ # Stock trading fundamentals and techniques
โ โโโ tushare-futures/ # Futures contracts and strategies
โ โโโ tushare-index/ # Index data and analysis
โ โโโ tushare-forex/ # Foreign exchange trading
โ โโโ tushare-alpha/ # Alpha factor generation
โ โโโ tushare-concepts/ # Key trading and financial concepts
โ โโโ tushare-financial/ # Financial statement analysis
โโโ tools/tushare_cli/ # CLI implementation
โ โโโ src/ # Python package
โ โ โโโ tushare_cli/ # Main CLI code
โ โ โโโ commands/ # Command modules by category
โ โ โโโ api.py # Tushare API wrapper
โ โ โโโ cache.py # Response caching layer
โ โ โโโ config.py # Configuration management
โ โ โโโ output.py # Output formatting (JSON, CSV, Table)
โ โ โโโ main.py # CLI entry point
โ โโโ pyproject.toml # Package configuration
โโโ tests/ # Test suite (992+ tests)
โ โโโ tushare_cli/ # CLI tests
โ โโโ test_cache.py # Cache functionality tests
โ โโโ test_commands_*.py # Command tests by category
โ โโโ test_config.py # Configuration tests
โ โโโ test_main.py # CLI entry point tests
โ โโโ test_output.py # Output format tests
โโโ docs/plans/ # Design and implementation plans
# Clone the repository
git clone git@github.com:oopslink/trading-skills.git
cd trading-skills
# Install the CLI in development mode
pip install -e tools/tushare_cli/
Get your token at Tushare Pro
# Option 1: Config file (recommended, persists across sessions)
tushare-cli config set-token YOUR_TOKEN
# Option 2: Environment variable
export TUSHARE_TOKEN=YOUR_TOKEN
# Option 3: Command-line flag
tushare-cli --token YOUR_TOKEN stock daily --ts-code 000001.SZ
If you want to use the trading skills in Claude Code:
/plugin marketplace add oopslink/trading-skills
/plugin install trading-skills@trading-skills
This will install all 7 trading skill modules, making them available as reference knowledge in Claude Code conversations.
# Get stock daily data
tushare-cli stock daily --ts-code 000001.SZ
# Get in JSON format
tushare-cli stock daily --ts-code 000001.SZ --format json
# Get with caching enabled
tushare-cli --cache stock daily --ts-code 000001.SZ
| Category | Skills | Commands | Data Tools |
|---|---|---|---|
| Stock | tushare-stock | 8+ commands | Daily, Adj, Weekly, Monthly, Quotes |
| Futures | tushare-futures | 7+ commands | Daily, Continuous, Margin |
| Index | tushare-index | 6+ commands | Daily, Weekly, Constituents |
| Forex | tushare-forex | 4+ commands | Daily, OHLC |
| Alpha | tushare-alpha | 5+ commands | Factors, Scoring, Backtesting |
| Concepts | tushare-concepts | 3+ commands | Concept Stocks, Updates |
| Financial | tushare-financial | 6+ commands | Income, Balance, Cashflow, Indicators |
# Daily prices for a stock
tushare-cli stock daily --ts-code 000001.SZ --start-date 20240101
# Weekly prices
tushare-cli stock weekly --ts-code 000001.SZ