Backend
1,865 installs
clerk-backend-api
by clerk/skills
Clerk Backend REST API explorer and executor. Browse tags, inspect endpoint schemas, and execute authenticated requests. Use when listing users, managing…
Skill content
Options context User Prompt: $ARGUMENTS CRITICAL: Mandatory checks before EVERY write request Before ANY POST / PATCH / PUT / DELETE, you MUST do ALL of the following in your response: - Check CLERK_SECRET_KEY - verify it is set: echo $CLERK_SECRET_KEY | head -c 10 If empty, stop and ask the user. Do not proceed without a valid key. - Check CLERK_BAPI_SCOPES - run: echo $CLERK_BAPI_SCOPES Inspect the output. If scopes are missing or do not include the required write permission, tell the user: "This is a write operation and your current scopes may not allow it. Rerun with --admin to bypass?" Do NOT attempt the request and fail - ask first.