A skill is a procedure the agent loads when a task matches. Clemali serves it through the same URL as the tools, so there is nothing to install.
A short text: when to use it, which tools to call in which order, what to check with the user. The format is the one the open agent-skills ecosystem uses, a SKILL.md with a name and a one-line description. The agent sees the name and description in its tool list and reads the full text only when it decides the skill applies.
Every skill attached to an environment becomes a tool named skill__<slug>. Calling it returns the instructions. That is the same progressive disclosure a skill installed on a laptop gets, in every MCP client, with nothing on the agent's machine. The environment's instructions also tell the agent that procedures exist and to read one before a matching task.
Loading a skill is free: it is not a call to one of your systems and is not counted against your plan.
skill__postgres, which teaches it to inspect the schema first, keep results small, and confirm before a write. They take no slot; one switch per environment turns them off.SKILL.md files found on GitHub, sorted by stars. Each is pinned to the exact file it was read at; when the original changes, the new text waits for our review before it is served. The ones we have read carry a verified mark.Open the environment, tab Skills, Add skill. Pick from the catalogue or write your own. Agents connected to the environment see it at their next session. Disable a skill to keep it attached but hidden; remove it to take it out.
Free allows five skills per assistant; Team and Enterprise have no limit. Plans →
If you prefer skills on the agent's machine, the same content is on GitHub for the skills CLI:
npx skills add thomasdseao/exorails-skills npx skills add thomasdseao/exorails-skills --skill postgres
And an environment's enabled skills, including your own, download as a folder you install with npx skills add ./exorails-<env>-skills. The download needs your session; no public address ever describes an environment.
prod-db__query, not “the database”.