aelf Skills Hub
A meta-skill that discovers, downloads, configures, and routes every skill in the aelf blockchain ecosystem.
Web & APIIntermediate★ 184⑂ 10AI score 7/10Last updated: Mar 30, 2026
What it does
- Presents a catalog of 7 aelf ecosystem skills: Portkey CA/EOA wallets, Awaken DEX, eForest NFT marketplace, AelfScan explorer, TomorrowDAO governance, and raw aelf node interaction.
- Routes user intent to the right skill using an explicit routing matrix (wallet requests default to EOA, switching to CA on guardian/register/recover signals).
- Installs skills via
bootstrap.shand runs client-specific setup for Cursor, Claude Desktop, OpenClaw, and Codex. - Runs health checks and offers a recovery table for failed downloads, missing skill IDs, or failing checks.
Who it's for
- Developers building dApps or agents on the aelf chain.
- Anyone who wants an AI agent to drive Portkey wallets, Awaken DEX, or eForest NFTs.
- Teams that need to install and audit multiple aelf skills consistently.
Examples
- "What aelf skills are available?" → returns the catalog table with each skill's domain.
- "Get me a swap quote on Awaken" → routes to
awaken-agent-skills, runs./bootstrap.sh --only awaken-agent-skills, thenbun run setup cursor. - "Verify my installed skills" → runs
bun run health:check -- --skills-root ./downloaded-skillsand walks through recovery steps.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/AElfProject/aelf-skills/HEAD/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the SKILL.m folder from the GitHub repo AElfProject/aelf-skills into my ~/.claude/skills/aelf-skills-hub/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/AElfProject/aelf-skills.git ~/.claude/skills/aelf-skills-hub⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo into your skills folder:
git clone https://github.com/AElfProject/aelf-skills.git ~/.claude/skills/aelf-skills-hub - Make sure
bunis installed (otherwise runcurl -fsSL https://bun.sh/install | bash). - Restart Claude Code and ask "list the aelf skills" to confirm the skill loads.
- Bootstrap the skill you need: from the repo folder run
./bootstrap.sh --only <skill-id>. - Configure it for your client:
cd downloaded-skills/<skill-id> && bun run setup claude. - Finish with
bun run health:check -- --skills-root ./downloaded-skillsto verify the install.