Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Multi-platform market intelligence for OpenClaw agents. Monitor real-time prices, balances, and positions across Hyperliquid (DeFi) and LNMarkets (Bitcoin)....
Multi-platform market intelligence for OpenClaw agents. Monitor real-time prices, balances, and positions across Hyperliquid (DeFi) and LNMarkets (Bitcoin)....
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
To create the file yourself: # Create the directory mkdir -p ~/.openclaw/workspace/skills/claw-trader-lite # Create the file cat > ~/.openclaw/workspace/skills/claw-trader-lite/SKILL.md << 'EOF' name: claw-trader-lite description: | Β Free read-only market monitoring for Hyperliquid and LN Markets. Β Track real-time prices, view public balances, and monitor positions Β across DeFi and Bitcoin derivatives platforms. Zero private keys required. env: Β HYPERLIQUID_ACCOUNT_ADDRESS: Β description: "Optional: Your Hyperliquid wallet address to view balance/positions (e.g., 0x...)" Β required: false # Claw Trader Lite **Free read-only market intelligence for Hyperliquid and LN Markets.** Monitor real-time prices, track your portfolio, and view positions across DeFi and Bitcoin derivatives platforms. Perfect for keeping tabs on your trades without execution risk. ## What It Does Claw Trader Lite provides **read-only** access to market data and account information. It can view prices, balances, and positions but **cannot execute trades**βmaking it safe to use anywhere. ### Platforms Supported - **Hyperliquid** - DeFi perpetuals (ETH, SOL, AVAX, and 100+ altcoins) - **LN Markets** - Bitcoin derivatives via Lightning Network ## Key Features β **Real-Time Price Feeds** - Live market data for BTC, ETH, SOL, and major assets β **Portfolio Overview** - View balances and open positions at a glance β **Zero Risk** - Read-only access, no private keys or API secrets needed β **Lightweight** - Minimal dependencies, runs anywhere β **Free Forever** - No costs, no limits, no catch ## Installation pip install requests Quick Start from claw\_lite import create\_monitor \# Create monitor monitor = create\_monitor() \# Check current prices btc\_price = monitor.get\_price("BTC", "lnmarkets") eth\_price = monitor.get\_price("ETH", "hyperliquid") sol\_price = monitor.get\_price("SOL", "hyperliquid") print(f"BTC: ${btc\_price:,.2f}") print(f"ETH: ${eth\_price:,.2f}") print(f"SOL: ${sol\_price:,.2f}") Usage Examples Get Single Asset Price \# Bitcoin price from LN Markets btc\_price = monitor.get\_price("BTC", "lnmarkets") \# Ethereum price from Hyperliquid eth\_price = monitor.get\_price("ETH", "hyperliquid") Get Multiple Prices assets = \["BTC", "ETH", "SOL", "AVAX"] prices = monitor.get\_prices(assets, "hyperliquid") for asset, price in prices.items(): print(f"{asset}: ${price:,.2f}") View Account Balance (Hyperliquid) Note: Requires setting your public wallet address export HYPERLIQUID\_ACCOUNT\_ADDRESS="0xYourAddressHere" balance = monitor.get\_balance("hyperliquid") print(f"Account Value: ${balance:,.2f}") View Open Positions (Hyperliquid) positions = monitor.get\_positions("hyperliquid") for pos in positions: print(f"{pos\['coin']}: {pos\['size']} @ ${pos\['entryPx']}") Platform-Specific Notes Hyperliquid β’ Supports 100+ altcoins β’ Balance/positions require HYPERLIQUID\_ACCOUNT\_ADDRESS env var β’ Uses public API endpoints (no authentication needed for prices) LN Markets β’ Bitcoin-focused β’ Price data is public β’ Balances/positions require authenticated API (not included in Lite version) API Reference create\_monitor() Factory function to create a new MarketMonitor instance. Returns: MarketMonitor object MarketMonitor.get\_price(asset, platform) Get current price for an asset. Parameters: β’ asset (str): Asset symbol (e.g., "BTC", "ETH", "SOL") β’ platform (str): Platform name ("hyperliquid" or "lnmarkets") Returns: float - Current price in USD MarketMonitor.get\_prices(assets, platform) Get prices for multiple assets at once. Parameters: β’ assets (List\[str]): List of asset symbols β’ platform (str): Platform name Returns: Dict\[str, float] - Mapping of asset symbols to prices MarketMonitor.get\_balance(platform) Get account balance. Parameters: β’ platform (str): Platform name Returns: float - Account balance in USD Claw π¦, \[2/18/2026 2:55 PM] Note: Requires HYPERLIQUID\_ACCOUNT\_ADDRESS for Hyperliquid MarketMonitor.get\_positions(platform) Get open positions. Parameters: β’ platform (str): Platform name Returns: List\[Dict] - List of position dictionaries Note: Requires HYPERLIQUID\_ACCOUNT\_ADDRESS for Hyperliquid Environment Variables | Variable | Required | Description | | --------------------------- | -------- | ---------------------------------------------------------- | | HYPERLIQUID\_ACCOUNT\_ADDRESS | Optional | Your Hyperliquid wallet address to view balances/positions | Limitations This is a Lite read-only version: β’ β View prices, balances, positions β’ β Cannot execute trades β’ β Cannot place orders β’ β Cannot manage positions For trading execution, build your own integration or use platform-specific SDKs. Troubleshooting "Error fetching price" β’ Check internet connection β’ Verify asset symbol is correct (case-sensitive on some platforms) β’ Try again (may be temporary API issue) "HYPERLIQUID\_ACCOUNT\_ADDRESS not set" β’ Export your wallet address: export HYPERLIQUID\_ACCOUNT\_ADDRESS="0x..." β’ Or pass directly in code (not recommended for shared environments) Balance shows 0 for LN Markets β’ LN Markets requires authentication for balance data β’ Lite version only provides public price feeds for LN Markets Technical Details Dependencies: β’ requests - HTTP library for API calls Data Sources: β’ Hyperliquid Public API (https://api.hyperliquid.xyz) β’ LN Markets Public API (https://api.lnmarkets.com) License: MIT About Built for traders who want simple, free market monitoring without complexity or risk. π¦ Free forever. No signup. No API keys.
Trading, swaps, payments, treasury, liquidity, and crypto-financial operations.
Largest current source with strong distribution and engagement signals.