Skip to Content
GatewaysSkills Gateway

Skills Gateway

Drop your tools into any AI coding agent as installable skills. A Skills gateway renders each tool as a SKILL.md file following the Agent Skills  specification. The almyty Skills CLI installs and auto-injects those files into 30+ agents, including Cursor, Windsurf, Claude Desktop, and GitHub Copilot.

Gateway detail page

Create the gateway

  1. Open Gateways in the sidebar and click Create Gateway
  2. Select Skills as the protocol

Create Gateway dialog

  1. Enter a name, slug, and optional description
  2. Click Create

Assign tools from the Tools tab on the gateway detail page. Each assigned tool becomes one SKILL.md file. Copy the gateway slug: you will use it with the Skills CLI.

Assigning tools on the gateway Tools tab

Install with the Skills CLI

Install the gateway’s skills into your local agents:

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

Authenticate first if needed:

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

Watch mode

Poll the gateway every 30 seconds and refresh 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

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

SKILL.md format

Each tool produces a markdown file like this:

--- name: get_users description: Retrieve a list of users with pagination endpoint: https://api.almyty.com/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) |

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