Reusable skills for AI agents to interact with Hummingbot trading infrastructure
npx skills add https://github.com/hummingbot/skills --skill hummingbot-deployقم بتثبيت هذه المهارة باستخدام واجهة سطر الأوامر (CLI) وابدأ في استخدام سير عمل SKILL.md في مساحة عملك.
AI agent skills for Hummingbot algorithmic trading infrastructure.
Built on the Agent Skills open standard.
npx skills add hummingbot/skills
This 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:
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=admin
hummingbot/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 executecd app
npm install
npm run dev
See app/README.md for deployment instructions.