What problem does it solve? Working with the Clerk Backend REST API requires knowing exact endpoint paths, request schemas, and authentication details. This Skill removes the need to dig through OpenAPI specs manually by letting you browse tags, inspect endpoint definitions, and execute authenticated requests directly, with built-in safety checks for write and delete operations. ## Core Features & Use Cases - Endpoint Discovery: Fetch the latest Clerk OpenAPI spec, list all tags, and inspect full endpoint schemas including referenced components. - 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, explicit irreversibility warnings before DELETE requests, and guidance on public vs private vs unsafe metadata. - Use Case: You need to create an organization called 'Acme Corp' and invite an admin. The Skill runs the two-step API flow (POST /v1/organizations then POST /v1/organizations/{id}/invitations) with your CLERK_SECRET_KEY and parses the JSON responses for you. ## Quick Start Ask the assistant to list all users who signed up in the last 7 days using the Clerk Backend API.