Skills Gateway
The Skills gateway generates SKILL.md files following the Agent Skills specification. The almyty Skills CLI installs and auto-injects these files into 30+ AI coding agents, including Cursor, Windsurf, Claude Desktop, and GitHub Copilot.

In the UI
- Navigate to Gateways in the sidebar
- Click Create Gateway
- Select Skills as the protocol

- Enter a name, slug, and optional description
- Click Create
- Assign tools from the Tools tab on the gateway detail page

- Copy the gateway slug — you will use it with the Skills CLI
Via the API
Create a gateway
curl -X POST /gateways \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "My Skills Gateway",
"type": "skills",
"endpoint": "/my-skills"
}'View generated SKILL.md files
curl /gateways/{id}/skills \
-H "Authorization: Bearer $TOKEN"The response contains the rendered SKILL.md content for every tool assigned to the gateway.
SKILL.md format
Each tool produces a markdown file like this:
---
name: get_users
description: Retrieve a list of users with pagination
endpoint: https://your-instance/utcp/acme/my-skills/tools/get_users/invoke
method: POST
auth: bearer
---
# get_users
Retrieve a list of users with pagination.
## Parameters
| Name | Type | Required | Description |
|-------|---------|----------|--------------------------|
| page | integer | no | Page number |
| limit | integer | no | Items per page (default: 20) |Skills CLI
Install and manage skills from the terminal.
Install
npx @almyty/skills install @acme/my-skillsWatch mode
Polls the gateway every 30 seconds and updates SKILL.md files when tools change.
npx @almyty/skills watch @acme/my-skillsStop with Ctrl+C or:
npx @almyty/skills stopList and remove
npx @almyty/skills list
npx @almyty/skills remove @acme/my-skillsAuthentication
npx @almyty/skills login
npx @almyty/skills login --token your-api-keySupported agents
| Category | Agents |
|---|---|
| IDE | Cursor, Windsurf, VS Code (Copilot), JetBrains |
| AI Assistants | Claude Desktop, ChatGPT, Gemini |
| Dev Tools | GitHub Copilot CLI, Aider, Continue, Cody |
| Frameworks | LangChain, LlamaIndex, AutoGPT, CrewAI |
| Others | 20+ additional agents |
The CLI writes SKILL.md files to each agent’s skill directory and registers them for auto-loading.