myaider-skill-importer
Import, create, and upgrade skills from MyAider MCP. Use this skill whenever the user wants to import their MyAider MCP skills into agent skills, or upgrade/update existing MyAider skills to the latest version. This skill checks if MyAider MCP is configured, retrieves available skills, presents them to the user for selection, and uses skill-creator to create or update each selected skill properly.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/hurungang/myaider-skill-importerMyAider Skill Importer
Purpose
Automate the process of importing skills from the MyAider MCP server into agent skills. This skill retrieves available skills, lets the user choose which ones to import, and creates proper skill files for each using existing skill-creator skill.
MANDATORY WORKFLOW
Step 0 — REQUIRED: Discover MyAider MCP Server Name and Check skill-creator Skill
Note on naming convention: MCP tool identifiers follow the format mcp__<server-name>__<tool-name>. The server name is whatever the user chose when configuring the MCP — it may not be myaider. Always discover the actual name rather than assuming it.
The MyAider MCP server exposes a distinctively named tool called get_myaider_skills. Because this name is unique to MyAider, searching for it avoids conflicts with other MCP servers.
Phase A — Discover the server name
Search your available tools for any tool whose name is get_myaider_skills. Use whatever tool-discovery mechanism your agent supports (e.g., listing available tools, searching by name). The full tool identifier will be in the form mcp__<server-name>__get_myaider_skills.
Extract the server name from the middle segment and store it as {SERVER_NAME}. Use mcp__{SERVER_NAME}__get_myaider_skills (and mcp__{SERVER_NAME}__get_myaider_skill_updates) for all subsequent calls.
Phase B — Branch on the result
-
Exactly 1 match found → Extract
{SERVER_NAME}from the tool identifier, proceed silently to Step 1. -
0 matches found → Inform the user that MyAider MCP needs to be set up first:
The MyAider MCP server doesn't appear to be configured. To use this skill, you need to set up the MyAider MCP server first.
Setup Instructions:
- Go to https://www.myaider.ai/mcp
- Follow the instructions to configure the MyAider MCP server for your agent
- Once configured, come back and ask me to import your MyAider skills
Do NOT proceed until the user confirms MyAider is configured.
-
2 or more matches found → List all discovered server names and ask the user to confirm which one is their MyAider instance. Use the user's answer as
{SERVER_NAME}.
Check if skill-creator skill is available; if not, ask the user to install skill-creator.
Step 1 — REQUIRED: Get Available Skills
Call mcp__{SERVER_NAME}__get_myaider_skills (using the server name discovered in Step 0) with an empty object {} to retrieve all available skills from MyAider.
Step 2 — REQUIRED: Present Skills to User
Present the list of skills to the user with their descriptions. Ask them to choose:
- "All" - import every skill
- Or specify which specific skills they want (by name)
Wait for user confirmation before proceeding.
Step 3 — REQUIRED: For Each Selected Skill
For each skill the user wants to import:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-hurungang-myaider-skill-importer": {
"enabled": true,
"auto_update": true
}
}
}