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.
Agent Types
Live Now
Binary Size
Boot Time
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
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
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
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
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
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
Configure
Edit hydra.toml to set strategy, risk parameters, and target tokens. All configuration in one human-readable file.
Deploy
Run `hydraclaw deploy` to compile and start the agent. Binary is active within milliseconds.
Monitor
Agent runs 24/7 and sends updates to the dashboard. Real-time PnL tracking and alert notifications.
Evolve
Agent collects data and improves strategy over time. On-device ML for continuous optimization.
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
Build Your Own Agent
Not satisfied with pre-built agents? Build your own custom agent with our SDK.
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.