slides-generator

Reusable skills for AI agents to interact with Hummingbot trading infrastructure

설치
CLI
npx skills add https://github.com/hummingbot/skills --skill slides-generator

CLI를 사용하여 이 스킬을 설치하고 작업 공간에서 SKILL.md 워크플로 사용을 시작하세요.

최근 업데이트: 5/1/2026

Hummingbot Skills

AI agent skills for Hummingbot algorithmic trading infrastructure.

Built on the Agent Skills open standard.

Quick Start

npx skills add hummingbot/skills

This 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 skills

Available 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

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=admin

Repository 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 metadata
  • scripts/ - Shell scripts the agent can execute

Webapp

cd app
npm install
npm run dev

See app/README.md for deployment instructions.