Agentic Skills
Open-source skills that let AI agents drive the SKU API—for Claude, OpenAI, and Gemini.
An Agentic Skill is a curated shortcut for an AI agent. For a real business task—build a product catalog, create a sales order, adjust inventory—it tells the agent exactly which SKU endpoints to call, in what order, with which fields, plus the practical e-commerce context needed to get it right. Instead of rediscovering thousands of endpoints, an agent loads the skill and acts.
Each skill is authored once in a model-agnostic format and compiled to each platform's native shape:
- Claude—an agent skill (
SKILL.md) - OpenAI—GPT/Assistant instructions plus an importable Action (OpenAPI) and function-calling tools
- Gemini—system instructions plus function declarations
The library lives on GitHub: github.com/skuio/sku-skills. It's MIT-licensed and open to contributions.
Example skills
A few skills from the library, to give a sense of what they cover:
- Build a product catalog—import products from any source (spreadsheet, Google Sheet, supplier order form, or a website) into SKU
- Find a product—resolve a product by SKU, barcode, or search
- Create a sales order—place an order with line items
- Adjust inventory—increase, decrease, or set on-hand stock
- Create a saved view—build and favorite a data-table view
- Sync your SOPs—reconcile your team's internal SOPs against SKU.io's changelog + docs and rewrite the steps that changed
New skills are added over time. For the complete, always-current list, see the repository. Its README lists every skill, generated from the source so it never goes out of date.
Use a skill
Install a built skill into your agent. For Claude, drop the folder into a .claude/skills/ directory:
git clone https://github.com/skuio/sku-skills
cp -r sku-skills/dist/claude/products/build-product-catalog <project>/.claude/skills/build-product-catalog
For OpenAI, paste the generated instructions.md into a Custom GPT and import its action.openapi.json
as an Action. For Gemini, use the system_instructions.md and register the function_declarations.json.
In every case, authenticate with a SKU Personal Access Token (Settings → Developer → Personal
Access Tokens).
Open source and community-driven
The skills are MIT-licensed and built to evolve. Use them, fork them, and open a pull request to improve or add one (your agents can too).
View the repository on GitHub: github.com/skuio/sku-skills
Contribute back
Using a skill and it doesn't do everything you need? Have your agent improve it and open a pull
request for review. Every skill's SKILL.md ends with an "Improve this skill" note explaining how,
or see the repository's contributing guide
and agent contribution guide. The library
gets better every time an agent sends a fix.