yield-calc
Installation
SKILL.md
Yield Calculator
A forecasting skill for DeFi agents. It converts APR to APY, handles compounding frequency, and projects the future value of a crypto investment.
Quick Start
# Project returns for $1000 at 50% APR for 1 year
projection = await agent.run_tool(
"calc_yield",
principal=1000,
apr_percent=50,
days=365
)
print(projection)