Skills
Skill bundie-fi/skills
Manage DeFi yield through Bundie. Deposit into AI-optimized yield bundles, analyze wallets for risk profiling, get personalized recommendations via bull/bear/moderator debate, monitor positions, rebalance portfolios, buy crypto with fiat, and set rules, all through conversation. Works across EVM chains with 13 tools and 5 workflow prompts.From its SKILL.md
npx -y skills add bundie-fi/skillsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
5.5 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it
Bundie Yield
Manage DeFi yield through conversation. Bundie indexes yield across EVM chains, risk-scores every opportunity via an AI engine, and constructs diversified bundles matched to your risk profile.
Setup
Connect the Bundie MCP server (no API keys needed):
{
"mcpServers": {
"bundie": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.bundie.fi/evm"]
}
}
}
Intent Routing
| User Intent | Reference | Example Phrases |
|---|---|---|
| Deposit or withdraw funds | skills/bundie-yield-manager/references/deposit.md | "deposit 500 USDC", "withdraw my funds" |
| Analyze a wallet | skills/bundie-yield-manager/references/analyze.md | "analyze my wallet", "what's my risk profile" |
| Get yield recommendations | skills/bundie-yield-manager/references/optimize.md | "where should I put my USDC", "best yields for me" |
| Rebalance positions | skills/bundie-yield-manager/references/optimize.md | "should I rebalance", "optimize my portfolio" |
| Check positions or performance | skills/bundie-yield-manager/references/monitor.md | "show my portfolio", "how are my yields" |
| Find migration opportunities | skills/bundie-yield-manager/references/optimize.md | "any better yields", "migration opportunities" |
| Set preferences or rules | skills/bundie-yield-manager/references/optimize.md | "only audited protocols", "max 30% per protocol" |
| Browse available yields | skills/bundie-yield-manager/references/monitor.md | "what yields are available", "highest APY" |
| Check risk scores | skills/bundie-yield-manager/references/monitor.md | "show risk breakdown", "which protocols are safest" |
| Buy crypto with fiat | skills/bundie-yield-manager/references/deposit.md | "I want to buy USDC", "invest $500" |
| API reference | skills/bundie-yield-developer/references/api-reference.md | "show me the API", "how to integrate" |
| Integration examples | skills/bundie-yield-developer/references/examples.md | "build a yield agent", "DAO treasury example" |
| Discover Bundie oracle markets | skills/bundie-oracle-developer/references/discover.md | "what can Bundie price for me", "list event markets" |
| Read a live consensus price | skills/bundie-oracle-developer/references/read.md | "read YES probability", "wire read_price into my agent" |
| Build a Bundie circuit breaker | skills/bundie-oracle-developer/references/circuit-breaker.md | "de-risk on depeg signal", "Big Mario circuit breaker" |
| Verify a Bundie attestation | skills/bundie-oracle-developer/references/verify-attestation.md | "verify the signature", "trust the read" |
| Judge a Bundie resolver | skills/bundie-oracle-developer/references/resolver-trust.md | "is this resolver reliable", "check track record" |
Rules
- Always confirm deposit/withdraw amounts with the user before executing
- Show risk scores alongside APY (never recommend on APY alone)
- When user asks "where to earn yield", call
wallet.recommend(not justyields.check) - Amounts are human-readable (e.g., "100 USDC", not "100000000")
- Always confirm the chain with the user. Bundie supports multiple EVM chains (Base, Arbitrum, Scroll, Optimism, etc.) and accounts live per chain.
- For first-time users, suggest
wallet.analyzebefore recommendations - Cross-chain operations take 5-15 minutes to settle via LayerZero, always inform the user
Quick Start Flow
For a new user asking about yield:
wallet.analyzeto understand their risk profilewallet.recommendfor an AI-optimized bundle- Confirm with user
vault.deposit+strategy.depositto execute
What ships with it: 2 files
1.3 KB alongside SKILL.md
- .gitignore24 B
- README.md1.3 KB