Agent Types

Agent Marketplace

Pre-built agent templates for every trading strategy. Deploy instantly or customize to your needs.

Each agent is a standalone Rust binary that runs on edge hardware. Lightweight, fast, and fully customizable.

6

Agent Types

2

Live Now

<5MB

Binary Size

<10ms

Boot Time

LiveHigh RiskMin: $50

Sniper Agent

First to buy. Last to sell.

The fastest agent for memecoin sniping. Monitors new token launches and executes buy orders within <10ms after liquidity is added. Configurable take-profit and stop-loss.

Features & Capabilities

Monitors PumpFun, Raydium, and Meteora for new pairs

Configurable buy amount and slippage tolerance

Auto take-profit at target multipliers (2x, 5x, 10x)

Trailing stop-loss to lock in profits

Rug-pull detection for auto-exit

Technical Specifications

Binary Size

3.4MB

RAM Usage

<5MB

Boot Time

<10ms

Language

Rust

LiveMedium RiskMin: $500

Copy-Trade Agent

Mirror alpha wallets automatically.

Follow profitable wallets automatically. AI analyzes historical performance and adjusts position size based on confidence level. Not all trades are copied — only those meeting criteria.

Features & Capabilities

Track unlimited wallets with customizable priority

AI confidence scoring to filter low-quality trades

Proportional or fixed position sizing

Delay configuration to avoid front-run detection

Performance analytics per copied wallet

Technical Specifications

Binary Size

3.4MB

RAM Usage

<5MB

Boot Time

<10ms

Language

Rust

Coming SoonLow RiskMin: $250

Airdrop Farmer

Sleep and earn. Auto-claim everything.

Automate airdrop farming with automatic protocol interactions. Agent performs swaps, provides liquidity, bridges, and other activities that increase eligibility for upcoming protocol airdrops.

Features & Capabilities

Pre-configured farming paths for top protocols

Randomized transaction patterns to avoid sybil detection

Auto-claim when airdrops go live

Gas optimization to minimize farming costs

Multi-wallet support for scaled farming

Coming SoonLow RiskMin: $50

DCA Agent

Dollar-cost average with AI timing.

Smarter DCA. Not just buying every X hours — AI analyzes market conditions for optimal entry timing. Accumulate positions gradually with reduced volatility impact.

Features & Capabilities

Flexible intervals: hourly, daily, weekly

AI timing optimization based on volatility and trend

Support for multiple tokens in a single agent

Auto-rebalancing to target allocation

Tax-lot tracking for reporting

Coming SoonMedium RiskMin: $2,500

Arbitrage Agent

Cross-DEX arbitrage, automated.

Identify and exploit price differences between DEXs. Monitors multiple pools simultaneously and executes atomic arbitrage trades when profitable opportunities arise.

Features & Capabilities

Monitors 10+ DEXs across multiple chains

Sub-millisecond opportunity detection

Flash loan integration for capital efficiency

MEV protection via private mempools

Profit threshold configuration

Coming SoonVariable RiskMin: $5,000

Swarm Commander

Orchestrate the collective.

Meta-agent that coordinates multiple other agents. Allocates capital, manages risk across portfolio, and enables agent-to-agent communication for collaborative strategies.

Features & Capabilities

Centralized control for all agents

Portfolio-level risk management

Capital allocation optimization

Agent-to-agent signal sharing

Unified reporting dashboard

How Agents Work

The lifecycle of a HydraClaw agent from deployment to execution

01

Configure

Edit hydra.toml to set strategy, risk parameters, and target tokens. All configuration in one human-readable file.

02

Deploy

Run `hydraclaw deploy` to compile and start the agent. Binary is active within milliseconds.

03

Monitor

Agent runs 24/7 and sends updates to the dashboard. Real-time PnL tracking and alert notifications.

04

Evolve

Agent collects data and improves strategy over time. On-device ML for continuous optimization.

Coming Soon

Swarm Intelligence

Multiple agents can communicate and collaborate through a mesh network. Swarm Commander coordinates strategies for maximum efficiency.

  • Agent-to-agent encrypted communication via libp2p
  • Coordinated entry/exit to avoid slippage
  • Portfolio-level risk management across agents
  • Signal sharing for collective intelligence
  • Automatic failover if one agent goes down
CMD
A1
A2
A3
A4
A5

Build Your Own Agent

Not satisfied with pre-built agents? Build your own custom agent with our SDK.

custom_agent.rs
use hydraclaw_sdk::prelude::*;

#[agent]
pub struct CustomAgent {
    config: AgentConfig,
    strategy: Box<dyn Strategy>,
}

impl CustomAgent {
    pub fn new(config: AgentConfig) -> Self {
        Self {
            config,
            strategy: Box::new(MyCustomStrategy::new()),
        }
    }
}

#[async_trait]
impl Agent for CustomAgent {
    async fn on_new_token(&self, token: Token) -> Result<Action> {
        // Your custom logic here
        let analysis = self.strategy.analyze(&token).await?;

        if analysis.should_buy {
            Ok(Action::Buy {
                token: token.address,
                amount: self.config.max_position,
                slippage: self.config.slippage,
            })
        } else {
            Ok(Action::Skip)
        }
    }

    async fn on_price_change(&self, token: Token, change: f64) -> Result<Action> {
        // React to price movements
        if change > self.config.take_profit {
            Ok(Action::Sell { token: token.address, percentage: 100 })
        } else if change < -self.config.stop_loss {
            Ok(Action::Sell { token: token.address, percentage: 100 })
        } else {
            Ok(Action::Hold)
        }
    }
}

Ready to Deploy Your First Agent?

Start with Sniper Agent or Copy-Trade Agent that are already live. Setup in 5 minutes, no coding required.