Official WorkOS skills for AI coding agents
npx claudepluginhub workos/skillsWorkOS integration skills for AuthKit, SSO, Directory Sync, RBAC, Vault, Audit Logs, migrations, and API references.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
WorkOS skills for AI coding agents. Two skills and 40 reference files covering AuthKit, SSO, Directory Sync, RBAC, Vault, Migrations, backend SDKs, and more.
npx skills add workos/skills
This installs two skills: workos and workos-widgets. The workos skill acts as a router that automatically loads the right reference for your task (AuthKit setup, SSO, migrations, etc.) so you don't need to install references individually.
Works with Claude Code, Cursor, Codex, Goose, and any agent that supports the skills.sh format.
For programmatic access to skill/reference content (e.g., from the WorkOS CLI):
npm install @workos/skills
import { getReference, getSkill } from '@workos/skills';
// Read reference content directly
const content = await getReference('workos-authkit-nextjs');
// Read a skill's SKILL.md content
const router = await getSkill('workos');
Path helpers are also available for consumers that need file paths (e.g., skill discovery):
import { getReferencePath, getSkillsDir, getSkillPath } from '@workos/skills';
const refPath = getReferencePath('workos-authkit-nextjs'); // absolute path to .md file
const skillsDir = getSkillsDir(); // directory containing workos/ and workos-widgets/
const skillPath = getSkillPath('workos'); // absolute path to SKILL.md
| Function | Returns |
|---|---|
getReference(name) | Promise<string> — reference file content |
getSkill(skillName) | Promise<string> — skill SKILL.md content |
getReferencePath(name) | Absolute path to references/{name}.md |
getSkillsDir() | Absolute path to the skills/ directory |
getSkillPath(skillName) | Absolute path to skills/{skillName}/SKILL.md |
Two registered skills:
| Skill | Description |
|---|---|
workos | Router — identifies which reference to load based on the user's task |
workos-widgets | Multi-framework widget integration with on-demand OpenAPI spec querying |
Everything else is a reference file under references/. The router dispatches to the right reference via progressive disclosure.
Note: References are not standalone skills. They are loaded automatically by the
workosskill based on your task. You do not need to install them individually.
| Reference | Description |
|---|---|
workos-authkit-nextjs | Next.js App Router integration |
workos-authkit-react | React SPA integration |
workos-authkit-react-router | React Router v6/v7 integration |
workos-authkit-tanstack-start | TanStack Start integration |
workos-authkit-sveltekit | SvelteKit integration |
workos-authkit-vanilla-js | Vanilla JS integration |
workos-authkit-base | AuthKit architecture reference |
| Reference | Description |
|---|---|
workos-node | Node.js (Express/Fastify/Hono/Koa) |
workos-python | Python (Django/Flask/FastAPI) |
workos-dotnet | .NET (ASP.NET Core) |
workos-go | Go |
workos-ruby | Ruby (Rails) |
workos-php | PHP |
workos-php-laravel | PHP Laravel |
workos-kotlin | Kotlin |
workos-elixir | Elixir |