Skip to main content

HyperVibes

Open-source Agentic Trading Harness for Hyperliquid

HyperVibes operator dashboard

FEATURES

Agents for the full trading loop.

  1. 01
    Run agents on candle close

    Schedule analysis exactly where your strategy starts: on the close of the candle that matters.

  2. 02
    Agent self-review and improvement

    Give agents a durable memory of their decisions, outcomes, and next adjustments.

  3. 03
    Custom strategy code generation

    Turn a trading idea into strategy code your agent can inspect and evolve.

  4. 04
    Trade via chat

    Ask questions, review context, and take action without leaving the conversation.

  5. 05
    Use 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
terminal
# 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