A curated directory of Agent Skills that teach AI wallets how to coordinate Elytro ERC-4337 smart accounts with intent planners across major DeFi protocols. Think of it as a DeFi “start page” that gives agents one place to discover protocol-specific skills and jump into execution immediately.
| Path | Description |
|---|---|
SKILL.md |
Root doc linked from elytro --help; explains how to combine the wallet and DeFi sub-skills. |
elytro/SKILL.md |
Elytro wallet skill, covering menus, inline-button UX, and CLI safety. |
defi/SKILL.md |
DeFi directory that routes ambiguous intents to the right protocol skill. |
defi/elytro/SKILL.md |
Execution bridge that runs planner calldata/UserOps through Elytro smart accounts. |
defi/uniswap/SKILL.md |
Prompts and guardrails for using Uniswap AI to plan swaps/liquidity moves before handing them to Elytro. |
Add this skill collection with the Agent Skills CLI:
npx skills add Elytro-eth/skills(Or install directly from GitHub: npx skills add https://github.com/Elytro-eth/skills.)
Clawhub ingests the same <folder>/SKILL.md layout, so you can import this repo directly:
- In the Clawhub app (or CLI) choose Add skill pack → From Git and paste
https://github.com/Elytro-eth/skills. - Clawhub downloads the repo and exposes each folder (
elytro,defi,defi/elytro,defi/uniswap, etc.) as an installable skill. - Use the imported skills inside your Clawhub workspace just like any other pack (link them to plans, attach to agents, and configure environment variables where needed).
No additional conversion steps are required because the repo already follows the Agent Skills spec.
- Read
SKILL.md– this is the canonical doc linked fromelytro --help. It explains how to combine the wallet + DeFi skills. - Load
elytrofor any wallet-facing workflow (menus, approvals, balances, etc.). - Load
defiwhen the user just says “do DeFi” and you need to route them. - Load
defi/uniswapto collaborate with Uniswap AI, then hand its output todefi/elytrofor execution.
- Add a new folder under
./defi/<protocol>/(or another domain) with aSKILL.mdthat follows the Agent Skills spec (e.g.,defi/pendle/SKILL.md). - Update
defi/SKILL.mdto mention the new protocol and link to the folder. - Keep CLI commands pinned (e.g.,
elytroversion) and document all required environment variables.
PRs welcome for new protocols (Pendle, Aave, Curve, etc.) or improvements to the planner prompts.