Security baseline for Uniswap V3 integration and execution scripts. Use when user asks for Uniswap security review, pre-swap checks, MEV protection, allowance minimization, deadline enforcement, reentrancy prevention, or execution hardening for Uniswap V3 swaps and liquidity operations.
Security-first checklist for Uniswap V3 script development and operations.
amountOutMinimum based on slippage tolerance.deadline = block.timestamp + 1200 (20 minutes max).amount0Min and amount1Min (not zero) for slippage protection.// ❌ Bad: Unlimited approval
await approve(SWAP_ROUTER_02, MaxUint256);
// ✅ Good: Exact amount approval
await approve(SWAP_ROUTER_02, amountIn);
// ✅ Better: Use Permit2 for flexible, expiring approvals
// Permit2: 0x000000000022D473030F116dDEE9F6B43aC78BA3
https://rpc.flashbots.nethttps://rpc.mevblocker.ioSee references/common-failures.md for documented vulnerability patterns.
See references/audit-checklist.md for complete pre-deployment checklist.
references/audit-checklist.mdreferences/common-failures.mdnpx skills add coolclaws/uniswap-security-foundations下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer