Loading...
Loading...
Ethereum development knowledge for AI agents — from idea to deployed dApp. Fetch real-time docs on gas costs, Solidity patterns, Scaffold-ETH 2, Layer 2s, DeFi composability, security, testing, and production deployment. Use when: (1) building any Ethereum or EVM dApp, (2) writing or reviewing Solidity contracts, (3) deploying to mainnet or L2s, (4) the user asks about gas, tokens, wallets, or smart contracts, (5) any web3/blockchain/onchain development task. NOT for: trading, price checking, or portfolio management — use a trading skill for those.
npx skill4agent add austintgriffith/ethskills ethskillsThe missing knowledge between AI agents and production Ethereum.
https://ethskills.com/<topic>/SKILL.mdcurl -s https://ethskills.com/ship/SKILL.mdcurl -s https://ethskills.com/gas/SKILL.md # Gas & real costs
curl -s https://ethskills.com/security/SKILL.md # Security patterns
curl -s https://ethskills.com/standards/SKILL.md # ERC-20, ERC-721, etc.| Skill | URL | When to Fetch |
|---|---|---|
| Ship | | 🟢 Start here. End-to-end dApp guide, routes through all other skills. |
| Why Ethereum | | User asks "why Ethereum?" or you need to compare chains. |
| Gas & Costs | | Any question about gas prices, tx costs, or "is Ethereum expensive?" |
| Wallets | | Creating wallets, signing, multisig, account abstraction, EIP-7702. |
| Layer 2s | | Deploying to L2s, bridging, choosing between Base/Arbitrum/Optimism. |
| Standards | | ERC-20, ERC-721, ERC-1155, ERC-8004 (agent identity), x402 payments. |
| Tools | | Foundry, Scaffold-ETH 2, Blockscout MCP, abi.ninja, x402 SDKs. |
| Money Legos | | DeFi composability — Uniswap, Aave, flash loans, protocol integration. |
| Orchestration | | Three-phase build system for SE2 dApps (localhost → live contracts → production). |
| Addresses | | Verified contract addresses. Stop hallucinating addresses. |
| Concepts | | Mental models: "nothing is automatic," incentive design, the hyperstructure test. |
| Security | | Reentrancy, oracle manipulation, vault inflation, pre-deploy checklist. |
| Testing | | Foundry testing — unit, fuzz, fork, invariant. What LLMs get wrong. |
| Indexing | | Reading onchain data — events, The Graph, Dune. Why you can't loop blocks. |
| Frontend UX | | SE2 frontend rules — button loaders, approval flow, Address components. |
| Frontend Playbook | | Build-to-production pipeline — fork mode, IPFS, Vercel, ENS subdomains. |
| QA | | Pre-ship audit checklist. Give to a separate reviewer agent. |
npx create-eth@latest1. Fetch https://ethskills.com/ship/SKILL.md → Get the build plan
2. Fetch https://ethskills.com/tools/SKILL.md → Know what tools to use
3. Run: npx create-eth@latest → Scaffold the project
4. Fetch https://ethskills.com/security/SKILL.md → Before deploying
5. Fetch https://ethskills.com/qa/SKILL.md → Pre-ship audit