connectors-available
Check which exchanges work from your location and search for tokens with trading rules (min order size, price increment, order types).
Why use this skill?
Verify exchange connectivity, check trading rules, and manage order parameters easily with the OpenClaw connectors-available skill.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/fengtality/connectors-availableWhat This Skill Does
The connectors-available skill is a diagnostic and discovery tool for OpenClaw users, designed to interface with the Hummingbot API to verify exchange connectivity and retrieve specific trading parameters. This skill performs two core functions: it tests the accessibility of various exchange connectors (spot or perpetual) based on your current network location and creates a centralized registry of trading rules. By generating a comprehensive data/trading_rules.json file, the skill ensures that subsequent trading strategies operate with accurate knowledge regarding minimum order sizes, price increments, and supported order types (Limit vs. Market). It acts as a prerequisite for any automated trading deployment, preventing "order rejected" errors by validating exchange-specific constraints before execution begins.
Installation
To install this skill, use the ClawHub CLI inside your OpenClaw environment:
clawhub install openclaw/skills/skills/fengtality/connectors-available
Ensure your Hummingbot API is active (defaulting to localhost:8000). You must configure your environment variables to allow the scripts to authenticate. Create or update your .env file with the following keys:
HUMMINGBOT_API_URL(default: http://localhost:8000)API_USERAPI_PASSThe skill will automatically search for these credentials in local project directories and your home folder during execution.
Use Cases
- Pre-deployment Audits: Verify which exchanges are reachable from your server location before setting up a strategy.
- Asset Discovery: Quickly look up how a specific token is traded across multiple exchanges to compare liquidity and order constraints.
- Risk Management: Validate the 'Min Order' and 'Min Price Increment' values to ensure your position sizing logic complies with exchange requirements.
Example Prompts
- "Run a diagnostic on all available perpetual connectors to see what is accessible from here."
- "Search for all trading rules for SOL on the connected exchanges."
- "Only test the Kraken and Hyperliquid connectors and update my local trading rules file."
Tips & Limitations
- Timeout Sensitivity: The
--timeoutparameter is crucial; if you are on a slow connection or behind a restrictive VPN, consider increasing the timeout value in the script command. - Local Cache: Remember that
data/trading_rules.jsonis a snapshot. If you notice an exchange is not appearing, re-run thetest_all.shscript to refresh your local cache. - Scope: This skill relies entirely on the Hummingbot API. If the API is not responding or your credentials are invalid, the skill will fail to retrieve any data.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-fengtality-connectors-available": {
"enabled": true,
"auto_update": true
}
}
}Tags(AI)
Flags: network-access, file-write, file-read, external-api, code-execution
Related Skills
slides-generator
Create Hummingbot-branded PDF slides from markdown with Mermaid diagram support. Use for presentations, decks, and technical documentation with professional diagrams.
hummingbot
Agent skill that faithfully reproduces Hummingbot CLI commands (connect, balance, create, start, stop, status, history) via Hummingbot API. V1 focuses on core trading workflows. For DEX/LP strategies on Solana, use lp-agent instead.
hummingbot-deploy
Deploy Hummingbot trading infrastructure including API server, MCP server, and Condor Telegram bot. Use this skill when the user wants to install, deploy, set up, or configure Hummingbot.
find-arbitrage-opps
Find arbitrage opportunities across exchanges by comparing prices for fungible token pairs like BTC/WBTC and USDT/USDC.
hummingbot-developer
Developer skill for running Hummingbot and Gateway from source, building wheel and Docker images, and testing against Hummingbot API running from source. Use this skill when a developer wants to build, run, or test Hummingbot components locally.