What problem does it solve? Working with the Clerk Backend API requires knowing endpoint paths, request schemas, and authentication details, which normally means digging through OpenAPI specs and documentation before every call. ## Core Features & Use Cases - Endpoint Discovery: Browse API tags and inspect full endpoint schemas extracted from the official Clerk OpenAPI specs, including referenced components. - Fast-Path Operations: Execute common tasks immediately with ready-made templates for listing users, creating organizations, inviting members, updating metadata, and deleting users. - Safety Guardrails: Mandatory scope checks before write operations and explicit irreversibility warnings before DELETE requests. - Use Case: Ask to create an organization called 'Acme Corp' and invite user@example.com as an admin, and the Skill runs the two-step POST /v1/organizations and invitation flow with your CLERK_SECRET_KEY. ## Quick Start Ask the agent to list all Clerk users who signed up in the last 7 days using the backend API.