elytro-skills
Entry point for the Elytro wallet skill plus the curated DeFi sub-skills. Start here before loading any individual protocol skill.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install openclaw-skills-elytro-cli
Repository
Skill path: skills/codeexplorer29/elytro-cli
Entry point for the Elytro wallet skill plus the curated DeFi sub-skills. Start here before loading any individual protocol skill.
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: openclaw.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install elytro-skills into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding elytro-skills to shared team environments
- Use elytro-skills for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: elytro-skills
description: Entry point for the Elytro wallet skill plus the curated DeFi sub-skills. Start here before loading any individual protocol skill.
user-invocable: false
disable-model-invocation: false
---
# Elytro Skills Pack
Welcome! The `elytro` CLI prints this URL in `elytro --help` so agents always land on the canonical instructions before touching a wallet. Read this document once, then jump into the sub-skills listed below.
> Raw link surfaced in `elytro --help`: `https://raw.githubusercontent.com/Elytro-eth/skills/main/SKILL.md`
Need to **swap tokens? Install [`defi/uniswap/SKILL.md`](./defi/uniswap/SKILL.md).**
Need to execute another protocol flow? Install that protocol’s folder (e.g., `defi/pendle/SKILL.md`) alongside [`defi/elytro/SKILL.md`](./defi/elytro/SKILL.md).
## Start Here
1. **Install the Elytro CLI** – `npm install -g @elytro/cli` (Node ≥ 24). Most workflows reference CLI commands, so have it ready.
2. **Load the `elytro` wallet skill** – located at `elytro/SKILL.md`. That skill covers account management, inline-button UX rules, and Elytro-specific safety guidance.
3. **Pick the right DeFi stack** – browse `defi/SKILL.md`. It links to protocol skills (Uniswap today, more coming) and the execution bridge (`defi/elytro/SKILL.md`).
4. **Combine as needed** – for a token swap you typically load three skills simultaneously:
- `elytro` (wallet UX, menus, account safety)
- `defi` (routing dispatcher + checklist)
- `defi/uniswap` (Uniswap AI planner prompts)
Once the planner produces calldata/UserOps, hand them to `defi/elytro`.
## Skill Map
| Path | Description | Use Cases |
| --------------- | --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------ |
| `elytro/` | Elytro wallet main skill. Inline button rules, menus, tx approvals. | Anything involving Elytro smart accounts (balances, send, deploy, security). |
| `defi/` | Directory skill that triages DeFi intents and links to protocol sub-skills. | When a user simply says “do DeFi” or hasn’t picked a protocol yet. |
| `defi/elytro/` | Execution bridge from planner calldata/UserOps into Elytro smart accounts. | Running Uniswap AI instructions, relaying calldata, simulating & sending tx/UserOps. |
| `defi/uniswap/` | Uniswap AI planning prompts and guardrails. | Swaps, LP adds/removes, Uniswap analytics before execution. |
| `payroll/` | Payroll runbook for Elytro smart accounts. | Recurring ETH/USDC payouts with manual approval every pay period. |
Add more folders under `defi/` (`defi/<protocol>/SKILL.md`) to extend the pack; the directory skill will automatically link to them once documented.
## Installation Cheat Sheet
```bash
# Install the whole pack (skills CLI)
npx skills add Elytro-eth/skills
# Focus on the Elytro wallet skill
npx skills add Elytro-eth/skills --skill elytro
# Uniswap planner only
npx skills add Elytro-eth/skills --skill defi/uniswap
```
Clawhub users can add the repo once, then enable whichever folders are needed per workspace. No repackaging required; Clawhub preserves the `<folder>/SKILL.md` layout.
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### _meta.json
```json
{
"owner": "codeexplorer29",
"slug": "elytro-cli",
"displayName": "Elytro Smart Account CLI",
"latest": {
"version": "1.0.2",
"publishedAt": 1773481510812,
"commit": "https://github.com/openclaw/skills/commit/c1225b84541793158b1e0494ced2cf12be9746f5"
},
"history": [
{
"version": "1.0.0",
"publishedAt": 1772176281772,
"commit": "https://github.com/openclaw/skills/commit/0458ae138d4853264886ea6df6f1b86bb9c9d020"
}
]
}
```