← All skills
Tencent SkillHub Β· Finance & Trading

Claw Trader Lite

Multi-platform market intelligence for OpenClaw agents. Monitor real-time prices, balances, and positions across Hyperliquid (DeFi) and LNMarkets (Bitcoin)....

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Multi-platform market intelligence for OpenClaw agents. Monitor real-time prices, balances, and positions across Hyperliquid (DeFi) and LNMarkets (Bitcoin)....

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
claw_lite.py, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.3

Documentation

ClawHub primary doc Primary doc: SKILL.md Open source page

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(): &nbsp; 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: &nbsp; 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.

Category context

Trading, swaps, payments, treasury, liquidity, and crypto-financial operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • claw_lite.py Scripts