AI agent skills for Hummingbot algorithmic trading infrastructure
npm install @hummingbot/skillsAI agent skills for Hummingbot algorithmic trading infrastructure.
Built on the Agent Skills open standard.
``bash`
npx skills add hummingbot/skills
This installs Hummingbot skills to your AI agents (Claude Code, Cursor, etc.).
`bash`
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 |
|-------|-------------|
| hummingbot-deploy | Deploy Hummingbot infrastructure |
| lp-agent | CLMM liquidity provision agent |
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:`bash`
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 execute
`bash``
cd app
npm install
npm run dev
See app/README.md for deployment instructions.
- Skills Webapp
- Hummingbot
- Hummingbot API
- Agent Skills Spec