Skip to Content
almyty docs — v1
GatewaysSkills Gateway

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.

Gateways page

In the UI

  1. Navigate to Gateways in the sidebar
  2. Click Create Gateway
  3. Select Skills as the protocol

Create Gateway dialog

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

Gateways page — empty state

  1. 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-skills

Watch mode

Polls the gateway every 30 seconds and updates SKILL.md files when tools change.

npx @almyty/skills watch @acme/my-skills

Stop with Ctrl+C or:

npx @almyty/skills stop

List and remove

npx @almyty/skills list npx @almyty/skills remove @acme/my-skills

Authentication

npx @almyty/skills login npx @almyty/skills login --token your-api-key

Supported agents

CategoryAgents
IDECursor, Windsurf, VS Code (Copilot), JetBrains
AI AssistantsClaude Desktop, ChatGPT, Gemini
Dev ToolsGitHub Copilot CLI, Aider, Continue, Cody
FrameworksLangChain, LlamaIndex, AutoGPT, CrewAI
Others20+ additional agents

The CLI writes SKILL.md files to each agent’s skill directory and registers them for auto-loading.