What problem does it solve? Working with the Clerk Backend API requires knowing the correct endpoints, request schemas, and authentication patterns. This Skill removes the guesswork by letting you browse the official OpenAPI spec, inspect endpoint details, and execute authenticated requests directly, with built-in safety checks for write and delete operations. ## Core Features & Use Cases - Endpoint Discovery: Browse API tags and fetch full endpoint definitions (parameters, request bodies, referenced schemas) from the official Clerk OpenAPI specs. - Fast-Path Operations: Pre-built templates for common tasks like listing users, creating organizations, inviting members, updating user metadata, and deleting users. - Safety Guardrails: Mandatory scope checks (CLERK_BAPI_SCOPES) before write operations and explicit irreversibility warnings before DELETE requests. - Use Case: You need to create an organization called 'Acme Corp' and invite an admin. The Skill runs the two-step flow: POST /v1/organizations, extracts the org ID, then POSTs the invitation with the org:admin role. ## Quick Start Ask the assistant to list all users who signed up in the last 7 days using the Clerk Backend API.