AI agent skills for Hummingbot algorithmic trading infrastructure.
Built on the Agent Skills open standard.
npx skills add hummingbot/skillsThis installs Hummingbot skills to your AI agents (Claude Code, Cursor, etc.).
npx skills add hummingbot/skills # Install all skills
npx skills add hummingbot/skills --skill hummingbot-deploy # Install specific skill
npx skills list # List installed skills
npx skills remove # Remove installed skills| Skill | Description | Installs |
|---|---|---|
| hummingbot-deploy | Deploy Hummingbot API server, MCP server, and Condor Telegram bot | 55 |
| lp-agent | Automated liquidity provision on CLMM DEXs (Meteora/Solana) | 49 |
| connectors-available | Check exchange availability and search token trading rules | 41 |
| slides-generator | Create Hummingbot-branded PDF slides from markdown | 30 |
| find-arbitrage-opps | Find arbitrage opportunities across exchanges for fungible pairs | 8 |
| hummingbot | Hummingbot CLI commands via API | 4 |
| hummingbot-developer | Build and run Hummingbot stack from source | — |
After installing, ask your AI agent:
- "Deploy Hummingbot API"
- "Open a liquidity position on Meteora"
Skills interact with the Hummingbot API server. Use the hummingbot-deploy skill to deploy it.
Configure credentials via .env file:
API_URL=http://localhost:8000
API_USER=admin
API_PASS=adminhummingbot/skills/
├── skills/ # Skill definitions (SKILL.md + scripts/)
├── app/ # Next.js webapp (skills.hummingbot.org)
└── .github/ # CI/CD workflows
| Component | Description | Docs |
|---|---|---|
| skills/ | Trading skill definitions | Each skill has its own README |
| app/ | Skills browser webapp | app/README.md |
Each skill is a folder with:
SKILL.md- Skill definition with frontmatter metadatascripts/- Shell scripts the agent can execute
cd app
npm install
npm run devSee app/README.md for deployment instructions.