Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
workos logo

workos

claude-plugins-official

securityClaude Codeby WorkOS

Summary

WorkOS integration skills for AuthKit, SSO, Directory Sync, RBAC, Vault, Audit Logs, migrations, and API references.

Install to Claude Code

/plugin install workos@claude-plugins-official

Run in Claude Code. Add the marketplace first with /plugin marketplace add anthropics/claude-plugins-official if you haven't already.

README.md

@workos/skills

![](./workos-logo.svg)

WorkOS skills for AI coding agents. Two skills and 40 reference files covering AuthKit, SSO, Directory Sync, RBAC, Vault, Migrations, backend SDKs, and more.

Install as Claude Code Plugin

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, Codex, Goose, and any agent that supports the skills.sh format.

Install as Cursor Plugin

Install from the Cursor Marketplace (search "WorkOS"), or clone and symlink locally — see Local Development below.

Install as npm Package

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

Exports

| 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 |

Skills

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.

References

> Note: References are not standalone skills. They are loaded automatically by the workos skill based on your task. You do not need to install them individually.

<details> <summary>Full reference list (40+ files)</summary>

AuthKit Installation

| 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 |

Backend SDK Installation

| 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 |

Features

| Reference | Description | | ----------------------- | ---------------------------------------------- | | workos-sso | Single Sign-On with SAML/OIDC | | workos-directory-sync | User directory sync from IdPs | | workos-rbac | Role-based access control | | workos-vault | Encrypted data storage | | workos-events | Webhook event handling | | workos-audit-logs | Compliance audit logging | | workos-admin-portal | Self-service admin portal | | workos-mfa | Multi-factor authentication | | workos-custom-domains | Custom domain configuration | | workos-email | Email delivery configuration | | workos-integrations | Provider lookup table for 60+ IdP integrations |

Migrations

| Reference | Description | | --------------------------------------- | --------------------------------- | | workos-migrate-auth0 | Migrate from Auth0 | | workos-migrate-firebase | Migrate from Firebase Auth | | workos-migrate-clerk | Migrate from Clerk | | workos-migrate-aws-cognito | Migrate from AWS Cognito | | workos-migrate-stytch | Migrate from Stytch | | workos-migrate-supabase-auth | Migrate from Supabase Auth | | workos-migrate-descope | Migrate from Descope | | workos-migrate-better-auth | Migrate from Better Auth | | workos-migrate-other-services | Migrate from custom auth | | workos-migrate-the-standalone-sso-api | Upgrade standalone SSO to AuthKit |

API References

| Reference | Description | | ------------------------- | ------------------------------------- | | workos-api-authkit | AuthKit/User Management API endpoints | | workos-api-organization | Organizations API endpoints |

Management

| Reference | Description | | ------------------- | --------------------------------------------------------------- | | workos-management | CLI resource management (orgs, users, roles, webhooks, seeding) |

</details>

Development

pnpm test          # vitest
pnpm lint          # oxlint
pnpm format        # oxfmt

Local Cursor development

Cursor loads local plugins from ~/.cursor/plugins/local/. Symlink this repo's plugin directory, then reload Cursor:

ln -s "$(pwd)/plugins/workos" ~/.cursor/plugins/local/workos

Then in Cursor: Cmd+Shift+P → Developer: Reload Window (or fully quit and relaunch Cursor if the reload doesn't pick up new skills).

Eval framework

Measures whether skills improve agent-generated code. Each case runs the same prompt with and without the skill, scores both outputs, and reports the delta.

pnpm eval -- --dry-run                        # verify cases load
pnpm eval -- --no-cache                       # full run (42 cases, ~$1.70)
pnpm eval -- --no-cache --case=sso-node-basic # single case
pnpm eval -- --no-cache --cases=sso-node-basic,sso-ruby-domain-routing # selected cases
pnpm eval -- --no-cache --fail-on-regression  # with gates
pnpm eval:risk -- --samples=8                 # rerun latest triage cases with saved samples

How it works

Each reference file follows the same pattern:

1. Doc URLs — source of truth links (agent fetches these first) 2. Gotchas — non-obvious traps the LLM gets wrong from training data 3. Endpoints (optional) — API endpoint table for quick reference

AuthKit and backend SDK references are richer — they include step-by-step installation instructions, decision trees, verification checklists, and error recovery.

The router (workos/SKILL.md) maps user intent to the right reference file.

License

MIT

Related plugins

Browse all →
42crunch-api-security-testing logo

42crunch-api-security-testing

claude-plugins-official

Automate API security directly in Claude Code with 42Crunch - automatically audit OpenAPI specs, detect vulnerabilities aligned with OWASP API Security risks (including BOLA/BFLA), and apply AI-powered fixes. Designed for AI-assisted development workflows, it provides continuous guardrails through an audit->scan->remediate->validate loop, ensuring APIs meet enterprise security standards before deployment.

Open plugin →
auth0 logo

auth0

claude-plugins-official

Enterprise-grade auth, easy to implement. Add login, SSO, MFA, and access control to any app with framework-aware guidance.

Open plugin →
crowdstrike-falcon-foundry logo

crowdstrike-falcon-foundry

claude-plugins-official

CrowdStrike Falcon Foundry development skills for building cybersecurity applications on the Falcon platform. Includes UI development, collections, functions, workflows, API integration, security patterns, and debugging workflows.

Open plugin →
duende-skills logo

duende-skills

claude-plugins-official

Duende development skills and agents for Claude Code — covering OAuth/OIDC protocols, IdentityServer, token management, ASP.NET Core authentication/authorization, BFF patterns, and secure identity architecture

Open plugin →
jfrog logo

jfrog

claude-plugins-official

Use the JFrog Platform from Claude Code: Artifactory repos and artifacts, security findings and exposures, Catalog package safety and downloads, workflows across the SDLC, and platform administration.

Open plugin →
security-guidance logo

security-guidance

claude-plugins-official

Security review for Claude-generated code. Pattern-based warnings on edits, LLM-powered diff review on Stop, and an agentic commit reviewer that catches injection, XSS, SSRF, hardcoded secrets, and 25+ other vulnerability classes.

Open plugin →