What problem does it solve? Working with the Clerk Backend API requires knowing exact endpoint paths, 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 destructive operations. ## Core Features & Use Cases - Spec Browsing and Inspection: Fetch the latest Clerk OpenAPI spec versions, list tags, and extract full endpoint definitions including referenced schemas. - Fast-Path Templates: Pre-built curl and SDK snippets for common operations like listing users, creating organizations, inviting members, and updating user metadata. - Write-Operation Safety: Mandatory checks for CLERK_SECRET_KEY and CLERK_BAPI_SCOPES before any POST/PATCH/DELETE, plus irreversibility warnings for deletions. - Use Case: You need to create an organization called 'Acme Corp' and invite an admin. The Skill runs the two-step API flow, extracts the organization ID from the first response, and sends the invitation with the correct 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.