This repository contains OpenClaw agent skills that you can install from ClawHub (the public skill registry for OpenClaw).
ClawHub listings:
clawhub install |
ClawHub listing | Description |
|---|---|---|
| bitcoin-price-feed | bitquery-crypto-price-stream | Real-time streaming Bitcoin price feed over WebSocket: OHLC ticks, volume, and derived metrics (moving averages, % change) from the Bitquery API. |
| crypto-chart-usd | crypto-chart-usd | Real-time streaming multi-token crypto chart feed with 1-second OHLC ticks and USD pricing: OHLC, volume (Base/Quote/USD), and moving averages from the Bitquery Trading.Tokens API. |
| pumpfun-usd-price-stream | pumpfun-usd-price-stream | Real-time streaming PumpFun token feed on Solana with live USD pricing: OHLC, volume, moving averages, and tick-to-tick % change from the Bitquery API. |
| polymarket-real-time-trades | polymarket-real-time-trades | Real-time streaming Polymarket prediction trades on Polygon (matic): outcome trades, buyer/seller, collateral in USD, market question, outcome labels, and transaction details from the Bitquery API. |
| stablecoin-payments | solana-stablecoin-payments-tracking | Real-time streaming Solana SPL USDC and USDT transfers over WebSocket (mint filter; excludes program methods containing "swap"), with amounts, USD values, sender/receiver, block time/slot, transaction signature/fees, and program method from Bitquery. |
clawhub install |
ClawHub listing | Folder |
|---|---|---|
bitcoin-price-feed |
bitquery-crypto-price-stream | bitquery-bitcoin-price-skill/ · SKILL.md |
crypto-chart-usd |
crypto-chart-usd | crypto-chart-usd-skill/ · SKILL.md |
pumpfun-usd-price-stream |
pumpfun-usd-price-stream | pumpfun-skill/ · SKILL.md |
polymarket-real-time-trades |
polymarket-real-time-trades | polymarket-skill/ · SKILL.md |
stablecoin-payments |
solana-stablecoin-payments-tracking | stablecoin-payments-skill/ · SKILL.md |
- OpenClaw (ClawHub CLI is included with OpenClaw), or install the ClawHub CLI alone
- Node.js 18.0 or higher (for ClawHub CLI)
- Git (for ClawHub authentication when publishing)
- Python 3 and pip (required to run the streaming scripts used by these skills)
If you don’t have OpenClaw yet, install OpenClaw (which includes ClawHub):
# macOS / Linux
curl -sSL https://openclaw.ai/install | bash
# Verify
openclaw --version
clawhub --versionOr install only the ClawHub CLI:
npm i -g clawhub
# or
pnpm add -g clawhubLogin is optional for installing public skills but needed for publishing and some features:
clawhub login
clawhub whoamiclawhub search "bitcoin price feed"
clawhub search "crypto chart"
clawhub search "pumpfun price"
clawhub search "polymarket"
clawhub search "stablecoin solana"Install one or more skills by name (slug):
# Bitcoin price feed — real-time streaming BTC OHLC/volume from Bitquery
clawhub install bitcoin-price-feed
# PumpFun token feed — real-time streaming PumpFun tokens on Solana (USD) from Bitquery
clawhub install pumpfun-usd-price-stream
# Polymarket prediction trades — real-time streaming on Polygon (matic) from Bitquery
clawhub install polymarket-real-time-trades
# Crypto chart USD — real-time 1-second multi-token OHLC/volume/USD from Bitquery
clawhub install crypto-chart-usd
# Stablecoin payments — real-time Solana USDC/USDT transfers from Bitquery
clawhub install stablecoin-payments
# Install multiple at once
clawhub install bitcoin-price-feed crypto-chart-usd pumpfun-usd-price-stream polymarket-real-time-trades stablecoin-paymentsclawhub install bitcoin-price-feed@1.0.0
clawhub install pumpfun-usd-price-stream --version 1.0.0
clawhub install polymarket-real-time-trades@1.0.0
clawhub install crypto-chart-usd@1.0.0
clawhub install stablecoin-payments@1.0.0clawhub listBy default, skills are installed into ./skills (or your OpenClaw workspace). Start a new OpenClaw session so it picks up the new skills.
These skills use the Bitquery WebSocket API and need:
-
BITQUERY_API_KEY
Set your Bitquery API token:export BITQUERY_API_KEY="your_bitquery_api_key"
# List installed skills
clawhub list
# Update all installed skills
clawhub update --all
# Update one skill
clawhub update bitcoin-price-feed
clawhub update pumpfun-usd-price-stream
clawhub update polymarket-real-time-trades
clawhub update crypto-chart-usd
clawhub update stablecoin-payments
# Overwrite local changes when updating
clawhub update bitcoin-price-feed --force| Action | Command |
|---|---|
| Search | clawhub search "query" |
| Install | clawhub install bitcoin-price-feed |
| Install multiple | clawhub install bitcoin-price-feed crypto-chart-usd pumpfun-usd-price-stream polymarket-real-time-trades stablecoin-payments |
| List installed | clawhub list |
| Update all | clawhub update --all |
| Skill info | clawhub info bitcoin-price-feed |
- ClawHub: clawhub.ai
- OpenClaw: openclaw.ai
- ClawHub docs: docs.openclaw.ai/tools/clawhub