Defi yield strategy designer
Skill auralshin/agent-skills/skills/defi-yield-strategy-designer
Use this skill to design risk-aware DeFi yield strategies and allocation plans based on user constraints, target returns, and downside tolerance.From its SKILL.md
npx -y skills add auralshin/agent-skills --skill defi-yield-strategy-designerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 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.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.2 KB, 471 tokens by cl100k_base, as published. Nobody here has run it
DeFi Yield Strategy Designer
Purpose
Design diversified yield strategies that balance return targets with liquidity, drawdown tolerance, and protocol risk.
Use this skill when
- The user asks for strategy ideas across staking, lending, LPs, and vaults.
- The user wants allocation weights under explicit risk constraints.
- The user wants rebalance triggers and downside playbooks.
Workflow
- Capture constraints:
- Capital size and base currency
- Acceptable drawdown
- Liquidity needs
- Chain/protocol restrictions
- Choose candidate archetypes from
references/strategy-archetypes.md. - For each candidate, score risk/return and run stress scenarios from
references/stress-framework.md. - Build allocation proposal with rebalancing and risk limits.
- Return a decision-ready plan with explicit assumptions.
Rules
- Distinguish base yield from token incentive yield.
- Penalize strategies with high mercenary-capital dependency.
- Include a no-incentive yield floor estimate.
- Reference
defi-risk-evaluatoroutput if protocol-level risk scoring is needed.
Required output format
{
"constraints": {
"capital_usd": 0,
"target_apy": 0,
"max_drawdown_pct": 0,
"liquidity_needs": "daily|weekly|monthly",
"chain_constraints": ["string"]
},
"candidate_strategies": [
{
"name": "string",
"allocation_pct": 0,
"expected_apy_base": 0,
"expected_apy_incentives": 0,
"yield_floor_apy": 0,
"key_risks": ["string"],
"stress_case_apy": 0
}
],
"portfolio_expected_apy": 0,
"portfolio_yield_floor_apy": 0,
"rebalance_triggers": ["string"],
"risk_controls": ["string"],
"summary": "2-4 sentence summary"
}
Bundled resources
references/strategy-archetypes.mdreferences/stress-framework.md
No default script is required for this skill; strategy design is scenario-specific and benefits from flexible reasoning.
What ships with it: 2 files
1.5 KB alongside SKILL.md