Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Import and create skills from MyAider MCP. Use this skill whenever the user wants to import their MyAider MCP skills into Claude Code skills. This skill chec...
Import and create skills from MyAider MCP. Use this skill whenever the user wants to import their MyAider MCP skills into Claude Code skills. This skill chec...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
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.
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.
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.
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.
After all selected skills are created, provide a summary: List of successfully created skills File locations Any skills that failed (if any)
Trigger this workflow when the user asks to upgrade, update, or sync their MyAider skills.
Same as the main Step 0. Search for get_myaider_skills to find {SERVER_NAME}. If MCP is not configured, show setup instructions and stop.
Call mcp__{SERVER_NAME}__get_myaider_skill_updates with an empty object {}. This returns the latest skill definitions with their updated_at timestamps.
Find all locally installed skills that have source: myaider in their YAML frontmatter. For each, read the updated_at value. Build a map of skill-name โ local updated_at.
For each skill returned in Upgrade Step 1: Remote updated_at is newer than local โ mark for upgrade Skill does not exist locally โ mark for new install Remote updated_at is same or older โ skip (already up to date) Present the classification to the user (what will be upgraded, what is new, what is already current) and ask for confirmation before proceeding.
For each skill marked for upgrade, invoke skill-creator:skill-creator with the full updated specification (same template as the main Step 3, including refreshed updated_at and tool schemas). skill-creator will overwrite the existing skill file.
For each skill marked for new install, invoke skill-creator:skill-creator exactly as in the main Step 3 (import workflow).
Provide a final report: Skills upgraded (name + old โ new updated_at) New skills installed Skills already up to date (skipped) Any failures
Always discover the MCP server name by searching for get_myaider_skills first (Step 0) โ do NOT hardcode myaider or any other name Always call get_myaider_skills after confirming MCP is configured โ do NOT guess what skills are available Always extract and include FULL tool descriptions and schemas from get_myaider_skills โ this is critical to optimize token usage. The created skill should work without needing MCP protocol tool introspection Use the discovered {SERVER_NAME} consistently for all MCP tool calls and in generated skill files Always include source: myaider and updated_at in the YAML frontmatter of every created or upgraded skill โ these fields are required for the upgrade workflow Always wait for user confirmation before creating or upgrading skills Create/upgrade skills one at a time using skill-creator Keep the skill-creator conversation focused on each skill creation
"Import my MyAider skills" "Create skills from myaider" "Set up the skills from my MyAider MCP" "Upgrade my MyAider skills" "Update my MyAider skills to the latest version" "Sync my MyAider skills"
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.