A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
AI-powered MegaETH development skill for Claude Code / OpenClaw. Covers real-time APIs (EIP-7966), storage optimization,
A comprehensive skill for AI coding agents (Claude Code, OpenClaw, Codex) to build real-time applications on MegaETH, with explicit MegaEVM/spec-version awareness.
This skill provides AI agents with deep knowledge of the MegaETH development ecosystem:
eth_sendRawTransactionSync (EIP-7966) for low-latency synchronous receipt return without pollingnpx skills add 0xBreadguy/megaeth-ai-developer-skills
git clone https://github.com/0xBreadguy/megaeth-ai-developer-skills
# Copy to your agent's skills directory
clawdhub install megaeth-developer
├── SKILL.md # Main skill (stack decisions, operating procedure)
├── wallet-operations.md # Wallet setup, balances, transfers, swaps, bridging
├── frontend-patterns.md # React/Next.js, WebSocket, real-time UX
├── rpc-methods.md # RPC reference, rate limits, batching
├── smart-contracts.md # MegaEVM patterns, volatile data, predeploys
├── storage-optimization.md # SSTORE costs, Solady RedBlackTreeLib
├── gas-model.md # Gas costs, estimation, base fee
├── testing.md # Foundry/testing + general debugging entrypoint
├── mega-evme.md # mega-evme local replay/spec-aware debugging workflow
├── security.md # Vulnerabilities and prevention
├── erc7710-delegations.md # ERC-7710 delegation framework, caveats, permissions
├── smart-accounts.md # MetaMask Smart Accounts Kit, signers, user operations
├── gator-cli.md # MetaMask Delegation Toolkit CLI for delegations and redemption flows
├── meridian.md # Meridian x402 payments on MegaETH
├── meganames.md # MegaNames (.mega) — registration, resolution, subdomains, marketplace
├── warren.md # Warren Protocol — on-chain website hosting
├── vrf-drand.md # drand VRF / verifiable randomness on MegaETH
└── resources.md # Links, tools, explorers, bridges, DEX
Once installed, your AI agent will automatically use this skill when you ask about:
"Set up a wallet for MegaETH"
"Send 0.1 ETH on MegaETH"
"Swap USDM for ETH on MegaETH"
"Bridge ETH from Ethereum to MegaETH"
"Set up a Next.js app with MegaETH wallet connection"
"Deploy a contract to MegaETH with Foundry"
"Why is my transaction using so much gas?"
"How do I subscribe to real-time mini-blocks?"
"Optimize this contract for MegaETH storage costs"
"Debug this failed transaction on MegaETH"
"Set up ERC-7710 delegations and scoped permissions"
"Create a MetaMask Smart Account on MegaETH"
"Use gator-cli with a delegated MegaETH wallet"
"Set up spending limits and time-bound permissions"
"Implement redelegation chains"
"Build a lottery or reveal flow with drand VRF on MegaETH"
"How should I safely integrate randomness on MegaETH?"
"Protect an API route with Meridian on MegaETH"
"Set up a buyer agent to pay with USDm through Meridian"
"Register a .mega name and resolve it"
"Set up subdomain sales with token gating"
"Integrate MegaNames resolution into my dApp"
testing.md → broad testing, Foundry workflows, common troubleshootingmega-evme.md → local replay, trace analysis, spec-aware MegaEVM debuggingsmart-contracts.md → contract design constraints, system contracts, volatile data behaviorMegaETH supports eth_sendRawTransactionSync (EIP-7966), which enables low-latency synchronous receipt return instead of requiring a separate polling loop:
const receipt = await client.request({
method: 'eth_sendRawTransactionSync',
params: [signedTx]
});
// Receipt returned in the same RPC flow
MegaETH behavior is spec-versioned through REX5, and not every new MegaEVM behavior is necessarily active on every network yet. Agents should avoid assuming unstable spec behavior (for example REX5 system-contract changes) is live unless the user explicitly asks about current unstable behavior or local node state.
New storage slots are expensive (2M+ gas). The skill teaches agents to:
MegaETH has a stable 0.001 gwei base fee with no EIP-1559 adjustment. The skill teaches agents to:
| Network | Chain ID | RPC | Explorer |
|---|---|---|---|
| Mainnet | 4326 | https://mainnet.megaeth.com/rpc | https://mega.etherscan.io |
| Testnet | 6343 | https://carrot.megaeth.com/rpc | https://megaeth-testnet-v2.blockscout.com |
The skill uses progressive disclosure — the main SKILL.md provides core guidance, and the agent reads specialized files only when needed for specific tasks. This keeps context efficient while providing deep expertise when required.
This skill incorporates best practices from:
Contributions welcome! Please ensure updates reflect current MegaETH ecosystem best practices.
MIT
1000+ skills curated from Anthropic, Vercel, Stripe, and other engineering teams
A Claude Code skill by Hao (駱君昊) that learns your Facebook voice and auto-posts to FB / IG / Threads / X with a 14-day c
Claude Code skill for YouTube creators — channel audits, video SEO, retention scripts, thumbnails, content strategy, Sho
Design enforcement with memory — keeps your UI consistent across a project