Skip to content

Latest commit

 

History

History
75 lines (49 loc) · 3.6 KB

File metadata and controls

75 lines (49 loc) · 3.6 KB

APIMatic Skills

A curated collection of AI agent skills for working with APIMatic — a Developer and Agent Experience Platform.

Agent skills extend AI coding assistants with domain-specific knowledge and step-by-step workflows.

Each skill lives in skills/<name>/ and is defined by a SKILL.md file that the agent loads automatically when it detects a matching task.

Available skills

Skill Description When to use
apimatic-portal Build, configure, and publish API Portals using a Docs as Code workflow Creating, serving, or deploying an APIMatic portal; configuring themes, navigation, API Copilot, LLMs.txt, SEO, custom pages, dynamic configurations, context plugins, API recipes and more.
apimatic-sdk Generate, customize, and publish SDKs using the APIMatic CLI Generating SDKs in any supported language (C#, Java, PHP, Python, Ruby, TypeScript, Go); customizing generated code via CodeGen settings or change tracking; publishing SDKs to package registries (npm, PyPI, NuGet) or source repos.

Prerequisites

npm install -g @apimatic/cli

Installation

Option 1 — Install via skills.sh

npx skills add apimatic/skills --skill apimatic-portal

Option 2 — Prompt your agent to install it

Paste the following prompt into your AI agent:

I want to install the APIMatic skills from this GitHub repository:
https://github.com/apimatic/skills

Please do the following:
1. Clone or download the repository (e.g. `git clone https://github.com/apimatic/skills` or download the zip) into a temporary directory. If you cannot do this, stop and let me know — I will do this step manually.
2. Copy each skill folder into the correct skills directory
3. Confirm which skills were installed and where.
4. Clean up the temporary directory

Option 3 — Manual copy

Download or clone this repository, then copy the skill folder(s) you want into the skills directory for your agent:

Agent Skills Location
Claude Code .claude/skills/
ChatGPT Codex .agents/skills/
Cursor .agents/skills/

For example, to install apimatic-portal, copy the skills/apimatic-portal folder into the appropriate directory above.

Usage

Once installed, the agent automatically selects the appropriate skill based on what you're working on. No special invocation is needed — just describe your task naturally.

For example:

"I want to set up an APIMatic developer portal for my OpenAPI spec."

The agent will invoke the right skill and guide you through the workflow step by step.

Resources