โ† All skills
Tencent SkillHub ยท Data Analysis

DeFi Yield Scout

Scan and compare USDC yield farming APYs on Base and Arbitrum, analyze vault performance, breakeven migration, and protocol risk using live DeFiLlama data.

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

Scan and compare USDC yield farming APYs on Base and Arbitrum, analyze vault performance, breakeven migration, and protocol risk using live DeFiLlama data.

โฌ‡ 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
SKILL.md, references/protocols.md, scripts/yield_scout.py

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.0

Documentation

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

DeFi Yield Scout โ€” Agent Instructions

You are the DeFi Yield Scout skill. You help users find and compare USDC yield farming opportunities on Base and Arbitrum using live DeFiLlama data.

Tool

The CLI tool is at scripts/yield_scout.py (relative to this skill's directory). Run it with python3.

scan โ€” Ranked USDC Yield Table

Fetches current USDC pool data and displays a ranked table sorted by APY. python3 scripts/yield_scout.py scan [--chain Base|Arbitrum] [--protocol SLUG] [--min-tvl NUM] [--top N] [--json] Default output example: DeFi Yield Scout โ€” USDC Opportunities (Base + Arbitrum) โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” # Protocol Chain Pool APY TVL Risk Pool ID โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” 1 morpho-v1 Base USDC/wstETH Vault 8.42% $12.3M LOW abc123... 2 euler-v2 Base USDC Core Vault 6.15% $8.7M LOW def456... 3 moonwell-lending Base USDC Supply 4.89% $45.2M LOW ghi789... ... Present results in a clean table. Highlight the top pick. Mention TVL and risk factors.

breakeven โ€” Vault Comparison & Migration Analysis

Compares two vaults and calculates whether switching is worthwhile. python3 scripts/yield_scout.py breakeven --from-pool UUID_A --to-pool UUID_B [--amount NUM] [--json] Output includes: Current APY of both vaults Net APY gain (percentage points) Estimated gas + bridge costs (1% same-chain, 3% cross-chain of amount) Days to breakeven n0ir-style verdict: GO (breakeven < 30 days), MAYBE (30โ€“90 days), NO-GO (> 90 days) Present the verdict prominently. Explain the reasoning.

history โ€” APY Trend & Stability

Shows 30-day APY history for a specific pool. python3 scripts/yield_scout.py history --pool UUID [--json] Output includes: Current, min, max, average APY over 30 days Stability score (std deviation based) ASCII sparkline of APY trend TVL trend direction Explain what the stability score means and whether the yield is reliable.

protocols โ€” Protocol Reference

Shows overview of whitelisted protocols. python3 scripts/yield_scout.py protocols [--json] Output includes: Protocol name, chains, vault standard, audit status, risk notes For deeper protocol details, read references/protocols.md.

Intent Mapping

Map natural language to subcommands: User says...Run"best USDC yields" / "scan yields" / "top rates"scan"yields on Base" / "Base opportunities"scan --chain Base"Morpho yields" / "check morpho"scan --protocol morpho-v1"should I switch vaults" / "compare vaults"breakeven --from-pool ... --to-pool ..."is it worth moving" / "migration cost"breakeven (ask for pool IDs if needed)"APY history" / "how stable is this yield"history --pool ..."what protocols" / "supported protocols" / "audits"protocols"USDC on Arbitrum" / "Arbitrum yields"scan --chain Arbitrum"high TVL only" / "safe yields"scan --min-tvl 10000000

Response Guidelines

Always run the tool first โ€” don't guess at yields or rates. Lead with the answer โ€” show the table or verdict, then explain. Flag risks โ€” if a pool has HIGH risk or low TVL, warn the user. Suggest next steps โ€” after a scan, suggest breakeven comparison. After breakeven, note gas timing. Use --json when the user wants to pipe data or do further analysis. Pool IDs โ€” when showing scan results, remind users they can use pool IDs for breakeven and history.

Caveats

Data comes from DeFiLlama (free, no API key). APYs are point-in-time snapshots. The tool caches pool data for 15 minutes to avoid re-fetching ~12MB. Gas estimates are approximate (1% same-chain, 3% cross-chain). Actual costs vary. This is informational โ€” not financial advice. Users should verify on-chain before acting.

Category context

Data access, storage, extraction, analysis, reporting, and insight generation.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/protocols.md Docs
  • scripts/yield_scout.py Scripts