TopRank Skills

Home / Claw Skills / Autres / myaider-skill-importer
Official OpenClaw rules 15%

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.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 myaider-skill-importer 技能。 若已安装,则直接安装 myaider-skill-importer 技能。

Overview

Skill Key
hurungang/myaider-skill-importer
Author
hurungang
Source Repo
openclaw/skills
Version
-
Source Path
skills/hurungang/myaider-skill-importer
Latest Commit SHA
a130abf0856c04a3bc40832eef2d96510a4402bb

Extracted Content

SKILL.md excerpt

# MyAider 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:**
  > 1. Go to https://www.myaider.ai/mcp
  > 2. Follow the instructions to configure the MyAider MCP server for your agent
  > 3. Once configured, come back and ask me to import your MyAider skills

  Do NOT proceed until...

Related Claw Skills