1247/woofi-data/SKILL.md
Fetch WOOFi DEX metrics — trading stats, volume by source, earn yields, WOO staking. Covers 13 chains. No auth required.
npx skillsauth add starchild-ai-agent/community-skills @1247/woofi-dataInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fetch WOOFi DEX metrics for content creation, reporting, and analysis.
| Detail | Value |
|--------|-------|
| Base URL | https://api.woofi.com |
| Auth | None required (fully public) |
| Rate Limit | 120 requests/minute |
| Chains | bsc, avax, polygon, arbitrum, optimism, linea, base, mantle, sonic, berachain, hyperevm, monad, solana |
GET /statVolume, trader count, and transaction count by period and chain.
Parameters:
period (required): 1d, 1w, 1m, 3m, 1y, allnetwork (required): chain name from list above⚠️ volume_usd is in wei — divide by 10^18 to get USD value
curl "https://api.woofi.com/stat?period=1d&network=arbitrum"
Response fields:
timestamp — Unix epoch (seconds), start of time bucketvolume_usd — Trading volume in wei (÷ 10^18 = USD)traders — Unique walletstxs / txns — Transaction countGET /source_statVolume breakdown by integrator/aggregator source.
Parameters:
period (required): 1d, 1w, 1m, 3m, 1y, allnetwork (required): chain namecurl "https://api.woofi.com/source_stat?period=1m&network=arbitrum"
Response fields per source:
name — Source name (e.g. "1inch", "0x", "Paraswap", "WOOFi")volume_usd — Volume in wei (÷ 10^18 = USD)percentage — Share of total volume (string, e.g. "45.2")traders, txs — Unique wallets and tx countGET /yieldVault TVL, APY, and yield composition per chain.
Parameters:
network (required): chain namecurl "https://api.woofi.com/yield?network=base"
Response structure:
auto_compounding — Map of vault address → vault data
total_deposit — TVL in wei (÷ 10^18 = USD)apy — Current APY (decimal, e.g. 0.045 = 4.5%)source_apy — Breakdown of yield sourcestotal_deposit — Chain-wide total TVL in weiGET /stakingv2Global WOO staking metrics (not chain-specific).
curl "https://api.woofi.com/stakingv2"
Response fields:
total_woo_staked — Total WOO staked in wei (÷ 10^18)avg_apr — Current average staking APRbase_apr — Base APR componentmp_boosted_apr — Multiplier-boosted APR componentimport requests
chains = ["bsc", "avax", "polygon", "arbitrum", "optimism", "linea", "base", "mantle", "sonic", "berachain", "hyperevm", "monad", "solana"]
total = 0
for chain in chains:
r = requests.get(f"https://api.woofi.com/stat?period=1m&network={chain}").json()
if r.get("status") == "ok":
for bucket in r["data"]:
total += int(bucket["volume_usd"]) / 1e18
print(f"Total 30d volume: ${total:,.0f}")
import requests
chains = ["bsc", "avax", "polygon", "arbitrum", "optimism", "linea", "base", "mantle", "sonic", "berachain"]
total_tvl = 0
for chain in chains:
r = requests.get(f"https://api.woofi.com/yield?network={chain}").json()
if r.get("status") == "ok" and r["data"].get("total_deposit"):
total_tvl += int(r["data"]["total_deposit"]) / 1e18
print(f"Total Earn TVL: ${total_tvl:,.0f}")
WOOFi also publishes an llms.txt file for AI agents:
https://api.woofi.com/llms.txt
tools
TQX (tqx.trade) HK/US stock quant workflow via tqx-cli: cross-sectional factor analysis, event-driven strategy backtests on the panda_backtest engine, and agent-driven automated paper trading. Use when the user wants to run factor IC/IR analysis, backtest a Python trading strategy on Hong Kong or US stocks, or set up agent-automated trading (e.g. "backtest a moving-average strategy on AAPL", "analyze a momentum factor on HK stocks", "let the agent trade my paper account").
tools
中学物理实验教学参赛方案套件。包含四个完整实验(单摆测g、声悬浮测声速、向心力定量演示仪、电磁阻尼定量研究),每套含固件源码、3D打印图纸、教学PPT、教学文稿、采购清单、调试手册、视频分镜脚本、模拟器。Use when a teacher/student needs a complete, classroom-ready physics experiment package for competition or teaching.
development
End-to-end blog management for AI agents. Write, import, build, preview, and publish articles using the blog template. Covers draft workflow, article import, SEO, OG images, and deployment.
development
ESP8266/ESP32 + 磁簧开关/霍尔传感器 单摆测重力加速度实验套件。 硬件搭建→固件烧录→数据采集→Web仪表盘→g值计算→教学文档,一站式完成。 Use when the user wants to build a pendulum g-measurement experiment, measure gravity with a micro-controller, or needs a complete physics experiment package with hardware + firmware + dashboard + teaching materials.