From defi-skills
Builds unsigned DeFi transactions from natural language intents across EVM chains like Ethereum, Arbitrum, Base, Optimism, Polygon. Supports send, swap, stake, lend on Aave, Uniswap, Lido, etc.
npx claudepluginhub nethermindeth/defi-skills --plugin defi-skillsThis skill uses the workspace's default tool permissions.
Builds raw unsigned DeFi transactions using the `defi-skills` CLI. The tool is a deterministic, stateless PlaybookEngine. It takes one action at a time with structured input, resolves token addresses, converts amounts to base units, ABI-encodes calldata, and outputs unsigned transactions. It has no memory between calls.
Provides verified contract addresses for Ethereum DeFi protocols like Uniswap, Aave, Compound, stablecoins, Lido on mainnet and L2s. Prevents lost funds from wrong addresses.
Builds Bankr SDK transactions for ERC20/ETH/NFT transfers, ETH/WETH conversions, cross-chain bridges, NFT minting/buying, approvals, and DeFi operations.
Broadcasts transactions, estimates gas, simulates txs, checks status, and tracks orders across Ethereum, Solana, Base, BSC, Arbitrum, Polygon, and 20+ chains via onchainos CLI.
Share bugs, ideas, or general feedback.
Builds raw unsigned DeFi transactions using the defi-skills CLI. The tool is a deterministic, stateless PlaybookEngine. It takes one action at a time with structured input, resolves token addresses, converts amounts to base units, ABI-encodes calldata, and outputs unsigned transactions. It has no memory between calls.
You are the LLM. Your job is to understand the user's intent, determine the correct action and arguments, then call the CLI with --action and --args. No LLM runs inside the CLI. It is purely deterministic. You handle all planning, decomposition, and sequencing.
The output is an unsigned transaction (to, value, data). It never signs or broadcasts.
These are financial transactions. Be collaborative, not autonomous.
Direct intent: If the user's request maps to a single action with clear parameters, build it immediately. No discussion needed. Examples: "Send 0.5 ETH to vitalik.eth", "Supply 100 USDC to Aave", "Wrap 5 ETH".
Multi-step intent: If the request requires multiple actions, present your execution plan to the user before building anything. Explain:
Only proceed after the user confirms the plan. If the user modifies the plan, adjust accordingly.
Ambiguous intent: If the request is vague or could be interpreted multiple ways, ask clarifying questions before doing anything. Do not assume a protocol, token, or strategy. Examples:
Large amounts or "max": If the user is operating with "max" (entire wallet balance) or amounts you consider significant, confirm the details before building. Remind them that "max" means their entire balance of that token, not just a portion.
--chain-id to target other chains. Not all actions are available on all chains — check with defi-skills actions --chain-id <id>.defi-skills actions <name> --json to check. The CLI will reject unsupported tokens with a clear error listing the valid options."success" in the JSON response. If success is false, the error field explains what went wrong. Do not proceed with failed builds.defi-skills actions <name> --json. Inform the user about relevant defaults before building so they can override if needed.The CLI must be installed:
pip install --upgrade defi-skills
A wallet address is required. The CLI reads it from (in priority order):
--wallet flag on each commandWALLET_ADDRESS environment variabledefi-skills config set-wallet)For agents, prefer the env var or --wallet flag — no file writes needed. If no wallet is available, ask the user to provide their address before continuing.
Most actions that involve on-chain data need ALCHEMY_API_KEY (ENS resolution, swap quotes, "max" balance queries, EigenLayer strategy verification, etc.). Simple actions with known tokens and fixed amounts (like aave_supply with USDC) work without it.
If a build fails with "no web3 instance" or "no RPC provider available", the user needs to set their Alchemy key via environment variable or CLI config:
# Environment variable (preferred for agents)
export ALCHEMY_API_KEY="<KEY>"
# Or persist via CLI config
defi-skills config set alchemy_api_key "<KEY>"
Balancer actions additionally need THEGRAPH_API_KEY:
export THEGRAPH_API_KEY="<KEY>"
# Or persist via CLI config
defi-skills config set thegraph_api_key "<KEY>"
Determine the correct action from the supported actions table below. If unsure, or to check availability on a specific chain:
defi-skills actions --json
defi-skills actions --chain-id 42161 --json # Arbitrum actions only
Always check parameters before building. The call is instant (local lookup) and prevents errors from wrong field names:
defi-skills actions aave_supply --json
TX=$(defi-skills build --action aave_supply --args '{"asset":"USDC","amount":"500"}' --json)
# On L2 chains, pass --chain-id
TX=$(defi-skills build --action aave_supply --args '{"asset":"USDC","amount":"500"}' --chain-id 42161 --json)
Always check the response before proceeding:
echo "$TX" | jq '.success' # must be true
echo "$TX" | jq '.transactions' # ordered array: approvals first, then action
The response is a JSON object with success and either transactions (on success) or error (on failure).
On success, transactions is an ordered array. Execute them in order: approval transactions first, then the main action. Some actions need no approval (1 transaction), others need 1 approval (2 transactions), and USDT needs a reset-to-zero step (3 transactions).
{
"success": true,
"transactions": [
{
"type": "approval",
"token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"spender": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2",
"raw_tx": {
"chain_id": 1,
"to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"value": "0",
"data": "0x095ea7b3..."
}
},
{
"type": "action",
"action": "aave_supply",
"target_contract": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2",
"function_name": "supply",
"arguments": {
"asset": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"amount": "500000000",
"onBehalfOf": "0x..."
},
"raw_tx": {
"chain_id": 1,
"to": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2",
"value": "0",
"data": "0x617ba037..."
}
}
]
}
On failure: {"success": false, "error": "description of what went wrong"}.
| Protocol | Actions | Chains |
|---|---|---|
| Transfers | transfer_native, transfer_erc20, transfer_erc721 | All chains |
| WETH | weth_wrap, weth_unwrap | Mainnet, Arbitrum, Base, Optimism, Sepolia |
| Aave V3 | aave_supply, aave_withdraw, aave_borrow, aave_repay, aave_set_collateral, aave_repay_with_atokens, aave_claim_rewards | Mainnet, Arbitrum, Base, Optimism, Polygon, Sepolia |
| Uniswap V3 | uniswap_swap, uniswap_lp_mint, uniswap_lp_collect, uniswap_lp_decrease, uniswap_lp_increase | Mainnet, Arbitrum, Base, Optimism, Polygon, Sepolia |
| Compound V3 | compound_supply, compound_withdraw, compound_borrow, compound_repay, compound_claim_rewards | Mainnet, Arbitrum, Base, Optimism, Polygon, Sepolia |
| Balancer V2 | balancer_swap, balancer_join_pool, balancer_exit_pool | Mainnet, Arbitrum, Base, Optimism, Polygon |
| Lido | lido_stake, lido_wrap_steth, lido_unwrap_wsteth, lido_unstake, lido_claim_withdrawals | Mainnet only |
| Curve 3pool | curve_add_liquidity, curve_remove_liquidity | Mainnet only |
| Curve Gauges | curve_gauge_deposit, curve_gauge_withdraw, curve_mint_crv | Mainnet only |
| MakerDAO DSR | maker_deposit, maker_redeem | Mainnet only |
| Rocket Pool | rocketpool_stake, rocketpool_unstake | Mainnet only |
| EigenLayer | eigenlayer_deposit, eigenlayer_delegate, eigenlayer_undelegate, eigenlayer_queue_withdrawals, eigenlayer_complete_withdrawal | Mainnet only |
| Pendle V2 | pendle_swap_token_for_pt, pendle_swap_pt_for_token, pendle_swap_token_for_yt, pendle_swap_yt_for_token, pendle_add_liquidity, pendle_remove_liquidity, pendle_mint_py, pendle_redeem_py, pendle_claim_rewards | Mainnet only |
| Fibrous | fibrous_swap | Base only |
Not all actions are available on all chains. Use defi-skills actions --chain-id <id> --json to check.
For every action, follow these three steps in order:
1. Find the action name from the table above. If unsure, list all:
defi-skills actions --json | jq '.by_protocol'
2. Check its parameters (always do this before building):
defi-skills actions <action_name> --json
This returns required and optional fields with exact parameter names and valid tokens. Use these names in --args.
3. Build the transaction:
TX=$(defi-skills build --action <action_name> --args '{"param":"value"}' --json)
echo "$TX" | jq '.success'
echo "$TX" | jq '.transactions'
defi-skills actions aave_supply --json # check params first
TX=$(defi-skills build --action aave_supply --args '{"asset":"USDC","amount":"1000"}' --json)
Returns 2 transactions: ERC-20 approval, then supply().
TX=$(defi-skills build --action transfer_native --args '{"to":"vitalik.eth","amount":"0.5"}' --json)
defi-skills actions aave_supply --chain-id 42161 --json # check params on Arbitrum
TX=$(defi-skills build --action aave_supply --args '{"asset":"USDC","amount":"1000"}' --chain-id 42161 --json)
Lido staking is predictable (~1:1), so build both upfront:
TX1=$(defi-skills build --action lido_stake --args '{"amount":"10"}' --json)
TX2=$(defi-skills build --action eigenlayer_deposit --args '{"asset":"stETH","amount":"10"}' --json)
The CLI is stateless. Each build call is independent with no memory of previous calls and no way to reference the output of a prior transaction. When planning multi-step intents:
"amount":"10" to the EigenLayer deposit."max" means entire wallet balance, not "whatever came from the last step." If the user already holds the token, "max" will include their existing balance plus the new amount. Make sure the user understands this before using it.success: false: Read the error field. Do not retry blindly. Fix the input based on the error message.defi-skills actions to see all supported actions.defi-skills actions --chain-id <id> to see what's available. Suggest mainnet if the action is mainnet-only (e.g., Lido, EigenLayer, Curve).defi-skills config set alchemy_api_key <KEY>, or provide a hex address instead. Note: ENS is only available on Ethereum Mainnet and Sepolia. On L2 chains, always use hex addresses (0x...).defi-skills config set-wallet <address>.pip install defi-skills.--action + --args) uses zero LLM tokens.raw_tx before signing. Verify to, value, and data.