Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

aelf Skills Hub

A meta-skill that discovers, downloads, configures, and routes every skill in the aelf blockchain ecosystem.

Web & APIIntermediate18410AI 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.sh and 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

  1. "What aelf skills are available?" → returns the catalog table with each skill's domain.
  2. "Get me a swap quote on Awaken" → routes to awaken-agent-skills, runs ./bootstrap.sh --only awaken-agent-skills, then bun run setup cursor.
  3. "Verify my installed skills" → runs bun run health:check -- --skills-root ./downloaded-skills and 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repo into your skills folder: git clone https://github.com/AElfProject/aelf-skills.git ~/.claude/skills/aelf-skills-hub
  3. Make sure bun is installed (otherwise run curl -fsSL https://bun.sh/install | bash).
  4. Restart Claude Code and ask "list the aelf skills" to confirm the skill loads.
  5. Bootstrap the skill you need: from the repo folder run ./bootstrap.sh --only <skill-id>.
  6. Configure it for your client: cd downloaded-skills/<skill-id> && bun run setup claude.
  7. Finish with bun run health:check -- --skills-root ./downloaded-skills to verify the install.