Custom Skills
Create your own Skills: describe one in conversation with Skill Creation, import a .zip package or SKILL.md, wrap an external API, then test and manage the result in My Skills.
Official Skills cover the common ground — video, images, speech, payments, maps, search, sign-in, productivity. A custom Skill is for what they do not cover: your company's review checklist, a house style for copy, an internal API, a workflow only your team runs. Once created, a custom Skill is called exactly like an official one, both when building apps and in General Tasks.
Two ways to create one
Click Skill in the sidebar, then Create skill at the top of the Skill Center. You land on the Home page with the prompt bar switched to Skill Creation:

Describe it
Finish the sentence "Create a skill with the following details:" and send. Say what the Skill is for, when MeDo should use it, what it should do step by step, and what it must never do. The example cards under the box (Security Review, Copy Refinement, Product Review) show the level of detail that works. MeDo drafts the Skill, shows you the result, and lets you refine it in the same conversation before saving it to My Skills.
Import a package
Click Import Skill and choose a .zip Skill package or a single SKILL.md. MeDo reads the package, fills in the name, description, and icon, detects any environment variables it needs, and generates the Skill definition. Check the result, add the values for any API keys, and save.
Wrapping an external API
MeDo cannot yet turn an API documentation link into a Skill by itself. You have three options:
For the second option, give MeDo everything a developer would need. A good API description contains:
Never paste a real key into the description. Use a placeholder; you will enter the real value as an environment variable when the Skill is created.
Skill package format
Whether you write a package by hand or let MeDo generate one, it has to follow this layout:
SKILL.md starts with frontmatter and then describes the Skill:
Rules the import checks:
A .zip that fails any of these is rejected with the reason; fix the file and import again.
What MeDo fills in
After a successful import (or a conversation-created Skill), the Skill's page shows:
- Basic information — name, description, and icon, taken from the package. These are what appear in My Skills, in the
@list, and in an app's Skill view. - Environment variables — one entry per key the Skill needs. The variable name is generated and fixed; enter the value here so every call can use it. Leave it empty and you will be asked for the value the first time you use the Skill in a project.
- Skill definition — the machine-readable description MeDo uses to wire the Skill into apps, generated from the package and not editable by hand. Read it once: for an API Skill, every endpoint, its parameters, and an example should be there. If something is missing, fix the source files and import again.
Test it
- In any project, type
@, pick your Skill from the top of the list, and describe a small task that uses it. - Open the Skill view in the editor's left rail. If your Skill is listed, MeDo used it.
- Try the feature it produced. For an API Skill, check that a real call returns real data.
If the Skill is not listed, MeDo did not consider it relevant: sharpen the description and the endpoint descriptions so they match how you phrase requests, then import again. If it is listed but the feature fails, check the API key value first, then describe the failure in the conversation — MeDo can usually fix the call. If the failure persists, the API description is missing something (a parameter, an example response, an error code).
Manage your Skills
Skill → My Skills lists your custom Skills. Open one to change its environment variables or delete it.
Deleting a Skill stops it being used in new apps and tasks. Apps that already use it keep working; remove it from those apps individually through their Skill view if you want it gone everywhere.