What problem does it solve? Working with the Clerk Backend API requires knowing endpoint paths, request schemas, and authentication details, and mistakes on write or delete operations can permanently destroy user data. This Skill provides ready-to-use request templates, spec-driven endpoint discovery, and mandatory safety checks before any destructive call. ## Core Features & Use Cases - Fast-path templates: Pre-built curl and SDK snippets for common operations like listing users, creating organizations, inviting members, updating metadata, and deleting users. - Spec-driven exploration: Browse API tags, list endpoints per tag, and inspect full endpoint schemas extracted from the official Clerk OpenAPI specs. - Safety guardrails: Mandatory CLERK_SECRET_KEY and CLERK_BAPI_SCOPES checks before writes, plus irreversibility warnings before DELETE requests. - Use Case: You need to invite a new admin to an organization. The Skill creates the organization via POST /v1/organizations, extracts the org ID, and sends the invitation with the org:admin role in two authenticated calls. ## Quick Start Ask the assistant to list all Clerk users who signed up in the last 7 days using the Backend API.