@hummingbot/skills
v1.0.12
Published
AI agent skills for Hummingbot algorithmic trading infrastructure
Readme
Hummingbot Skills
AI agent skills for Hummingbot algorithmic trading infrastructure.
Built on the Agent Skills open standard.
Quick Start
npx skills add hummingbot/skillsThis installs Hummingbot skills to your AI agents (Claude Code, Cursor, etc.).
Commands
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 skillsAvailable Skills
| Skill | Description | |-------|-------------| | hummingbot-deploy | Deploy Hummingbot infrastructure | | lp-agent | CLMM liquidity provision agent |
Usage
After installing, ask your AI agent:
- "Deploy Hummingbot API"
- "Open a liquidity position on Meteora"
Prerequisites
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=adminRepository Structure
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 |
Development
Skills
Each skill is a folder with:
SKILL.md- Skill definition with frontmatter metadatascripts/- Shell scripts the agent can execute
Webapp
cd app
npm install
npm run devSee app/README.md for deployment instructions.
