
Emblem Defi Yield
Scan liquid staking, LP, lending yields, and smart-money holdings on a chosen chain using the EmblemAI CLI.
Overview
Emblem DeFi Yield is an agent skill for the Idea phase that scans DeFi yield opportunities, smart-money activity, and balances on a selected chain via EmblemAI.
Install
npx skills add https://github.com/emblemcompany/agent-skills --skill emblem-defi-yieldWhat is this skill?
- yield-scan.sh drives a 3-part scan: yield opportunities, smart money DeFi activity, and wallet balances
- Chain argument defaults to Solana; supports Ethereum, Base, BSC balance branches
- Uses emblemai --agent with prompts referencing birdeyeTrendingTokens and nansen_smart_money_holdings
- Requires global @emblemvault/agentwallet CLI installation
- 3 scan sections in yield-scan.sh: yield opportunities, smart money activity, balances
Adoption & trust: 8.6k installs on skills.sh; 10 GitHub stars; 2/3 security scanners passed (skills.sh audits).
What problem does it solve?
You want a quick picture of yield and smart-money positioning on a chain without manually checking five dashboards and your wallet.
Who is it for?
Crypto-native solo builders already using EmblemAI with a configured profile who research yields before building or reallocating.
Skip if: Builders outside Web3, anyone without emblemai installed, or users who need audited investment advice rather than agent-summarized market prompts.
When should I use this skill?
You want a repeatable DeFi yield and smart-money landscape scan on a chain via bash and emblemai.
What do I get? / Deliverables
You get a terminal-guided scan covering opportunities, smart-money DeFi holdings, and your balances for the chosen chain in one script run.
- Terminal output from yield opportunity agent query
- Smart-money holdings summary and chain-specific balance readout
Recommended Skills
Journey fit
DeFi yield scanning is research before capital or product commitments—canonical Idea/research even if you reuse outputs while operating a treasury. Research matches opportunity discovery (APYs, trending tokens, smart money) rather than shipping contracts or growth marketing.
How it compares
CLI-orchestrated DeFi research via EmblemAI—not a passive MCP catalog entry and not a smart-contract deployment skill.
Common Questions / FAQ
Who is emblem-defi-yield for?
Indie builders and operators who already use EmblemAI and want scripted yield and smart-money scans across supported EVM chains and Solana.
When should I use emblem-defi-yield?
Use it in Idea/research when comparing chains or strategies; optionally repeat in Operate when monitoring treasury exposure—not as a substitute for risk controls.
Is emblem-defi-yield safe to install?
The script invokes a wallet-capable CLI against live market tools; review the Security Audits panel on this page, verify npm package source, and never run with keys you cannot afford to expose.
SKILL.md
READMESKILL.md - Emblem Defi Yield
#!/bin/bash # yield-scan.sh - Scan DeFi yield landscape via EmblemAI # Usage: bash scripts/yield-scan.sh [chain] set -e CHAIN="${1:-Solana}" echo "DeFi Yield Scan — $(date '+%Y-%m-%d %H:%M')" echo "Chain: $CHAIN" echo "==================================================" if ! command -v emblemai &> /dev/null; then echo "Error: emblemai CLI not found" echo "Install with: npm install -g @emblemvault/agentwallet" exit 1 fi echo "" echo "1. Yield Opportunities" echo "----------------------" emblemai --agent --profile default -m "What are the best yield farming opportunities on $CHAIN right now? Include liquid staking, LP strategies, lending protocols, and estimated APYs. Use birdeyeTrendingTokens to check what tokens are trending." echo "" echo "2. Smart Money DeFi Activity" echo "----------------------------" emblemai --agent --profile default -m "Use nansen_smart_money_holdings to show what smart money is holding on ${CHAIN,,}. Focus on DeFi tokens, LSTs, and yield-bearing assets." echo "" echo "3. My Balances" echo "--------------" if [ "${CHAIN,,}" = "solana" ]; then emblemai --agent --profile default -m "Use solanaBalances to show my Solana token balances" elif [ "${CHAIN,,}" = "ethereum" ]; then emblemai --agent --profile default -m "Use ethGetBalances to show my Ethereum token balances" elif [ "${CHAIN,,}" = "base" ]; then emblemai --agent --profile default -m "Use baseGetBalances to show my Base token balances" elif [ "${CHAIN,,}" = "bsc" ]; then emblemai --agent --profile default -m "Use bscGetBalances to show my BSC token balances" elif [ "${CHAIN,,}" = "polygon" ]; then emblemai --agent --profile default -m "Use polygonGetBalances to show my Polygon token balances" elif [ "${CHAIN,,}" = "hedera" ]; then emblemai --agent --profile default -m "Use hederaGetBalances to show my Hedera token balances" else echo "Unknown chain: $CHAIN" fi echo "" echo "==================================================" echo "Scan complete. Run with a chain: bash scripts/yield-scan.sh Ethereum" --- name: emblem-defi-yield description: > DeFi yield research and liquid staking via EmblemAI. Discover yield opportunities, compare protocols, check DeFi positions with Nansen, and enter liquid staking via token swaps. Use when the user wants to research yields, find staking options, or review DeFi positions. license: MIT compatibility: > Requires Node.js >= 18.0.0, @emblemvault/agentwallet CLI, and internet access. Works on Claude Code, Cursor, Codex, OpenClaw, and other agents following the Agent Skills spec. metadata: author: EmblemAI version: "1.1.0" homepage: https://emblemvault.ai docs: https://emblemvault.ai/docs docs-interactive: https://emblemvault.dev --- # Emblem DeFi Yield DeFi yield research and liquid staking powered by **EmblemAI**. Research yield opportunities across protocols, review existing DeFi positions via Nansen, and enter liquid staking positions through token swaps on Solana, Ethereum, Base, BSC, Polygon, and Hedera. **Requires**: `npm install -g @emblemvault/agentwallet` --- ## What This Skill Can Do | Capability | How | Tools Used | |-----------|-----|------------| | Research yield opportunities | Ask about yields, APYs, protocols | LLM knowledge + `birdeyeTradeData`, `birdeyeTrendingTokens` | | Review existing DeFi positions | Check LP, lending, staking, farming positions for any wallet | `nansen_defi_portfolio` | | Liquid staking (Solana) | Swap SOL for LSTs (mSOL, JitoSOL, bSOL, jupSOL) | `splBuyIntent` | | Token swaps for DeFi entry | Swap into DeFi tokens on any chain | `splBuyIntent`, `ethSwap`, `baseSwap`, `bscSwap`, `polygonSwap`, `hederaTokensSwap` | | Protocol comparison | Compare yield strategies across DEXs | LLM knowledge + market data tools | | Rug-pull checks | Verify token safety before entering positions | `rugcheck` | | Smart money DeFi tracking | See what whales are farming | `nansen_smart_money_holdings`, `nansen_defi_portfolio` |