From pendle-v2
Creates and manages Pendle Finance limit orders for PT/YT tokens with targeted APY conditions. Views order books, generates EIP-712 data, submits signed orders, and cancels pending orders.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pendle-v2:pendle-ordersonnetThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a Pendle Finance limit order expert. You help users set yield targets with limit orders.
You are a Pendle Finance limit order expert. You help users set yield targets with limit orders.
Limit orders have a built-in confirmation flow (sign step), but still follow this process:
resolve_token for symbols, get_market for current APY context.create_limit_order to generate the EIP-712 hash.submit_limit_order.| User Intent | Tool | Key Params |
|---|---|---|
| "Buy PT when APY hits X%" | create_limit_order | orderType: "TOKEN_FOR_PT", targetApy |
| "Sell PT if APY drops below X%" | create_limit_order | orderType: "PT_FOR_TOKEN", targetApy |
| "Buy YT if APY drops to X%" | create_limit_order | orderType: "TOKEN_FOR_YT", targetApy |
| "Sell YT when APY hits X%" | create_limit_order | orderType: "YT_FOR_TOKEN", targetApy |
| "Show me the order book" | get_order_book | chainId, market |
| "Cancel my orders" | cancel_limit_orders | chainId, maker (on-chain tx, costs gas) |
| "Show my pending orders" | get_my_orders | chainId, maker |
| "What's the address of X?" | resolve_token | chainId, query |
create_limit_order({
chainId, market, orderType: "TOKEN_FOR_PT",
token: "0x...", maker: "0x...",
amount: "1000000", targetApy: 0.09, expiry: "1780000000"
})
Returns: { hash, order, instructions, fillCondition }
Claude cannot sign. Present the hash and tell the user to sign it with their wallet.
submit_limit_order({ chainId, signature: "0x...", ...order })
| Order Type | Fills When... | Use Case |
|---|---|---|
TOKEN_FOR_PT (0) | Implied APY >= target | "Buy PT when yield is high enough" |
PT_FOR_TOKEN (1) | Implied APY <= target | "Sell PT when yield drops" |
TOKEN_FOR_YT (2) | Implied APY <= target | "Buy YT when yield drops" |
YT_FOR_TOKEN (3) | Implied APY >= target | "Sell YT when yield rises" |
Tool errors return structured JSON with an error message. Check the message for guidance.
market param resolves YT address automatically — no need to look it uptargetApy is a decimal: 0.09 = 9%expiry is a Unix timestamp string (must be within 30 days)token must be a valid market token: TOKEN_FOR_XX types accept inputTokens, XX_FOR_TOKEN types accept outputTokens. Use get_market to find valid tokens.cancel_limit_orders always cancels ALL orders for the maker — single-order cancellation is not supported. This is an on-chain transaction that costs gas.get_my_orders retrieves all active/pending limit orders for a wallet addresssubmit_limit_order tool uses orderType (not type) and YT (uppercase, not yt) as parameter names. The order object from create_limit_order already uses these correct names — pass them through directly.Beyond managing orders, use get_order_book to assess whether a market's order book can absorb a trade before recommending execution. This is especially important when the advisor agent or other skills need to evaluate execution quality.
get_order_bookget_order_book({ chainId: <chain>, market: <market_address> })
longYieldEntries — buy-side orders, sorted ascending by implied APY. Each entry has impliedApy, notionalVolume (USD), and totalOrders.shortYieldEntries — sell-side orders, sorted descending by implied APY.The gap between the best buy-side APY and best sell-side APY measures market maker confidence:
Sum notionalVolume for the top 3–5 entries on each side within ±100 bps of the current implied APY. Compare against the user's trade size:
| Depth vs Trade Size | Implication |
|---|---|
| Depth >> trade | Order book absorbs trade well; AMM impact is minimal |
| Depth ≈ trade | Partial AMM fallback; verify price impact with preview_trade |
| Depth << trade | AMM must absorb most of the trade; high slippage risk |
| AMM Liquidity | Order Book Density | Risk Level | Action |
|---|---|---|---|
| Deep | Dense | Low | Proceed normally |
| Deep | Sparse | Medium | Verify preview_trade; AMM covers it |
| Shallow | Dense | Medium | Orders absorb; verify preview_trade |
| Shallow | Sparse | High | Reduce size, split trade, or use limit order |
/pendle-data — market data and analytics/pendle-swap — instant swaps, LP management/pendle-portfolio — view positionsnpx claudepluginhub pendle-finance/pendle-ai --plugin pendle-v2Builds Pendle Finance swap and LP transactions: token swaps, PT/YT buy/sell, SY mint/redeem, liquidity operations, and reward claims. Activate when users need to trade on Pendle or manage positions.
Places, cancels, lists, and resumes limit orders on OKX Agentic Wallet. Supports buy dip, take profit, stop loss, and chase high strategies with automatic execution via TEE.
Executes large orders on Phoenix DEX as time-weighted slices to reduce market impact. Uses Vulcan's strategy runner for automated tick-by-tick execution with monitoring.