HyperVibes
Open-source Agentic Trading Harness for Hyperliquid

FEATURES
Agents for the full trading loop.
- 01Run agents on candle close
Schedule analysis exactly where your strategy starts: on the close of the candle that matters.
- 02Agent self-review and improvement
Give agents a durable memory of their decisions, outcomes, and next adjustments.
- 03Custom strategy code generation
Turn a trading idea into strategy code your agent can inspect and evolve.
- 04Trade via chat
Ask questions, review context, and take action without leaving the conversation.
- 05Use any model
Choose any model from any AI provider.
QUICK START
Self-host on your own server.
HyperVibes is designed to run locally in a container stack. Pull the image, configure your environment, then connect your wallet and provider from the operator interface.
Get Started# Download the latest Compose file
$ umask 077 && curl -fsSLo podman-compose.yaml https://raw.githubusercontent.com/idft/hypervibes/master/podman-compose.yaml
# Generate local secrets, then start the stack
$ KEY=$(openssl rand -hex 32) && CTRL=$(openssl rand -hex 32) && OC=$(openssl rand -hex 32) && DB=$(openssl rand -hex 32) && sed -i -e "s/REPLACE_KEY/$KEY/" -e "s/REPLACE_CTRL/$CTRL/" -e "s/REPLACE_OC/$OC/" -e "s/REPLACE_DB/$DB/" podman-compose.yaml
$ podman-compose up -d
Hyperliquid