AI/ML

connectors-available

hummingbot/skills · updated Apr 8, 2026

$npx skills add https://github.com/hummingbot/skills --skill connectors-available
summary

Test which exchange connectors are accessible from your location and search for tokens across all available exchanges. Shows trading rules including minimum order sizes, price increments, and supported order types.

skill.md

connectors-available

Test which exchange connectors are accessible from your location and search for tokens across all available exchanges. Shows trading rules including minimum order sizes, price increments, and supported order types.

Workflow

Step 1: Test Connectors

Ask user which connectors to test:

  • All connectors
  • Spot only
  • Perpetual only
  • Specific exchanges

Step 2: Run Tests & Save Rules

./scripts/test_all.sh --timeout 10

Fetches trading rules from each connector. If data returns, it's accessible. Results saved to data/trading_rules.json.

Step 3: Search for Tokens

When user asks about a token, search and display the trading rules table:

./scripts/search_token.sh --token BTC

Always show the full table to the user:

| Exchange | Pair | Min Order | Min Price Inc | Order Types |
|----------|------|-----------|---------------|-------------|
| hyperliquid_perpetual | BTC-USD | 0.00001 | 0.1 | Limit, Market |
| okx_perpetual | BTC-USDT | 0.0001 | 0.1 | Limit, Market |
| kraken | BTC-USD | 0.0001 | 0.1 | Limit, Market |
| coinbase_advanced_trade | BTC-USD | 0.0001 | 0.01 | Limit, Market |
| kucoin | BTC-USDT | 0.00001 | 0.1 | Limit, Market |
| gate_io | BTC-USDT | 0.0001 | 0.01 | Limit, Market |

Found 488 pairs containing BTC

Trading Rules Explained

  • Min Order: Minimum order size in base currency
  • Min Price Inc: Minimum price increment (tick size)
  • Order Types: Supported order types (Limit, Market)

Scripts

Test all connectors:

./scripts/test_all.sh --timeout 10

Test specific connectors:

./scripts/test_all.sh --connectors "kraken,okx,hyperliquid" --timeout 10

Search for a token:

./scripts/search_token.sh --token BTC
./scripts/search_token.sh --token SOL
./scripts/search_token.sh --token HBOT

Output Files

  • data/trading_rules.json - All trading pairs and rules from available exchanges

Requirements

  • Hummingbot API running (default: localhost:8000)
  • API credentials (default: admin/admin)

Environment Variables

export HUMMINGBOT_API_URL=http://localhost:8000
export API_USER=admin
export API_PASS=admin

Scripts check for .env in: ./hummingbot-api/.env~/.hummingbot/.env.env

general reviews

Ratings

4.510 reviews
  • Shikha Mishra· Oct 10, 2024

    connectors-available is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Piyush G· Sep 9, 2024

    Keeps context tight: connectors-available is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Chaitanya Patil· Aug 8, 2024

    Registry listing for connectors-available matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Sakshi Patil· Jul 7, 2024

    connectors-available reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Ganesh Mohane· Jun 6, 2024

    I recommend connectors-available for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Oshnikdeep· May 5, 2024

    Useful defaults in connectors-available — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Dhruvi Jain· Apr 4, 2024

    connectors-available has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Rahul Santra· Mar 3, 2024

    Solid pick for teams standardizing on skills: connectors-available is focused, and the summary matches what you get after install.

  • Pratham Ware· Feb 2, 2024

    We added connectors-available from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Yash Thakker· Jan 1, 2024

    connectors-available fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.