axe
Capabilities

Hyperliquid perps

First-class Hyperliquid commands, session framing, watches, and historical search inside the cockpit.

Axe is built so a Hyperliquid operator never has to leave the cockpit. Every state Hyperliquid exposes is a verb in your session.

Read the market

/markets                      # full market list
/price BTC                    # current mark and index
/book ETH depth 1%            # order book within 1% of mid
/funding BTC 24h              # funding rate history
/oi BTC 7d                    # open interest curve
/basis BTC                    # spot/perp basis

These commands return structured data — not a screenshot of a screen. The session can reason over the result, the watch system can fire on it, and the search harness can replay it.

Frame a session

/perps-open BTC perps; thesis is funding-led mean reversion

/perps-update Funding flipped negative for two consecutive prints; thesis confirmed; closing partial.

The opener and closer write a structured record into the local session ledger. Memory carries the thesis into future sessions. Provenance attaches to every quoted state.

Watch the world

/watch funding(BTC) > 0.02 for 2 prints
/watch oi(ETH) drop > 10% in 1h
/watch basis(BTC) > 50bps

A watch is a structured tripwire. It runs continuously, fires when its condition is met, and wakes the relevant session.

Investigate the past

The Hyperliquid module under Reference → Hyperliquid module provides a replayable search harness with provenance over historical Hyperliquid state. Use it when a session needs to ground a claim — funding regime, OI trajectory, fill behavior — in actual historical data, not a vibe.

Authenticated actions

Authenticated actions on Hyperliquid go through Axe's safety policy. Read-only public data needs no credential and is the default surface. Account-mutating actions require explicit approvals and are gated behind the staged rollout the harness enforces.

What is intentionally narrow

Axe does not try to be a Hyperliquid order client. There are good ones already. What Axe gives you is the cockpit around them: the session frame, the watches, the memory, the runbooks, the cross-venue thesis. The order client is a tool you can keep open in another pane.

On this page