Loading...
Loading...
Skill Index and Orchestration Center — Automatically routes to the correct skill combination and orchestrates execution order based on user intent. Triggered when users ask questions involving stock quotes, cryptocurrencies, technical indicators, financial news, research report generation, or any scenario that requires skill invocation. Also triggered when users ask "Where does the data come from?", "What can you do?", or "What features do you have?"
npx skill4agent add hubblevision/hubble-data-service-skill skill-routerAll interfaces are V2 version ()./api/v2/...
The index and orchestration center for all skills. Parses user intent to determine which skills to call and the execution order.
| Skill | Capabilities |
|---|---|
| Full A-share market: real-time quotes, K-lines, fundamental data, finance, shareholders, market mechanisms, indices, technical indicators |
| Full Hong Kong stock market: real-time quotes, K-lines, fundamental data, Hong Kong Stock Connect, technical indicators |
| Full US stock market: real-time quotes, K-lines, fundamental data, finance, market information, technical indicators |
| Full cryptocurrency market: K-lines, positions, liquidations, funding rates, long-short ratios, CVD, ETFs, market indicators, news, whales, rankings |
| Skill | Market | Dimension | Capabilities |
|---|---|---|---|
| A-shares | Real-time quotes | Batch real-time quotes (securities) |
| A-shares | K-lines | Daily/Weekly/Monthly K-lines (stocks) |
| A-shares | Fundamental data | Company information, PE/PB, stock lists, name change history |
| A-shares | Market mechanisms | Price limits, trading halts/resumptions, IPOs, trading calendars, adjustment factors |
| A-shares | Indices | SSE/SZSE indices, Shenwan industry classification, component stock weights |
| Hong Kong stocks | Real-time quotes | Batch real-time quotes (securities) |
| Hong Kong stocks | K-lines | Daily/Weekly/Monthly K-lines (stocks, ⚠️ Use date instead of limit) |
| Hong Kong stocks | Fundamental data | Hong Kong stock lists, trading calendars |
| Hong Kong stocks | Hong Kong Stock Connect | Top 10 Hong Kong Stock Connect stocks, daily trading volume, positions |
| US stocks | Real-time quotes | Batch real-time quotes (securities) |
| US stocks | K-lines | Daily K-lines (stocks) |
| US stocks | Fundamental data | US stock lists, trading calendars |
| Cryptocurrencies | Full data | K-lines, positions, liquidations, funding rates, long-short ratios, CVD, ETFs, indicators, news, whales |
| Cryptocurrencies | Technical indicators | 27 indicators (exchange + symbol) |
| Cross-market | Technical indicators | 27 indicators (use |
| User Intent Signal | Market |
|---|---|
| Mentions A-shares/Shanghai-Shenzhen/GEM/Beijing Stock Exchange/SSE/SZSE/Shenwan | |
Mentions specific A-share codes ( | |
| Mentions Hong Kong stocks/HKEX/Hang Seng/Hong Kong Stock Connect/Northbound/Southbound | |
Mentions specific Hong Kong stock codes ( | |
| Mentions US stocks/NYSE/NASDAQ | |
Mentions specific US stock tickers ( | |
| Mentions BTC/ETH/cryptocurrency/Bitcoin/Ethereum/SOL/contract/funding rate/liquidation/position | |
| Mentions funds/ETFs (A-shares) | |
| Mentions gold/crude oil/copper/commodities | |
| Mentions SPX/DJI/global indices | |
| Only mentions technical indicator names without specifying market | Need to ask user for market |
| Dimension Signal | Routing Target |
|---|---|
| Real-time price/current price/quote/market data | |
| K-line/daily/weekly/monthly/trend | |
| Company information/PE/PB/turnover rate/stock list | |
| Price limits/trading halts/resumptions/IPO/trading calendar/adjustment | |
| Index/SSE/SZSE/Shenwan/component stocks | |
| Hong Kong Stock Connect/Northbound Capital/Southbound Holdings | |
| Financial statements/income statement/balance sheet/cash flow statement/dividends | |
| RSI/MACD/KDJ/Bollinger Bands/technical indicators | |
| Funding rate/liquidation/open interest/OI | |
| Fear & Greed Index/AHR999/GrayScale/ETF inflow | |
| Market | Aggregation Skill |
|---|---|
| A-shares | |
| Hong Kong stocks | |
| US stocks | |
| Cryptocurrencies | |
| Market | Handling |
|---|---|
| Futures/derivatives (excluding cryptocurrency contracts) | Clearly inform users it is not supported yet |
| Others | Clearly inform users it is not supported yet |
User asks: "Analyze Tencent, analyze Ping An Bank"
✅ Correct:
├── Parallel: Tencent K-line + real-time quotes (hk-kline + hk-realtime-quote)
├── Parallel: Ping An Bank K-line + real-time quotes (cn-kline + cn-realtime-quote)
→ Aggregate and output
❌ Incorrect: Process sequentially one by onePOST /api/v2/indicators/batchPOST /api/v2/crypto/indicators/batchcn-realtime-quote (real-time quotes)
∥ cn-kline (K-lines)
∥ cn-fundamental (daily indicators + company information)
→ Comprehensive outputcn-realtime-quote ∥ cn-kline ∥ cross-market-indicators → Clustering→Analysis→Assemblycn-realtime-quote (A-share stock)
∥ hk-realtime-quote (Hong Kong stock)
∥ us-realtime-quote (US stock)
→ Comparative outputcn-index (all indices in parallel)
→ Market summaryhk-connect (ggt-top10 + ggt-daily + hold in parallel)
→ Capital flow analysiscrypto-market (price + funding-rate + open-interest + liquidation + fear-greed)
∥ crypto-indicators (RSI + MACD + BOLL)
→ Comprehensive outputcrypto-market (fear-greed ∥ ahr999 ∥ btc-dominance ∥ etf-btc-flow ∥ ranking)
→ Market overview summarycross-market-indicators (cn: Kweichow Moutai RSI)
∥ crypto-indicators (binance: BTCUSDT RSI)
∥ cross-market-indicators (us: AAPL RSI)
→ Cross-market technical comparison