Clerk CLI
The clerk binary is a pre-authenticated gateway to Clerk's Backend API and Platform API, plus project-level tooling (auth, linking, env pulls, instance config). When the user asks anything that touches a Clerk resource, reach for clerk first instead of hand-rolling curl.
This skill was installed by
clerk init(orclerk skill install) and is pinned to clerk1.0.3. Ifclerk --versiondisagrees, refresh it withclerk skill install(orbunx clerk@1.0.3 skill install). The binary is always the source of truth, so runclerk <command> --helpto verify anything this skill claims.
Execution environment (prefer the host, understand the sandbox warning)
Most AI coding agents default to running shell commands in a sandbox where the user's home directory, OS keychain, browser launch, localhost callback binding, or network access may be blocked. The Clerk CLI depends on all of those host capabilities:
- OS credential store:
clerk auth loginstores the OAuth token in the system keychain. A sandbox without keychain access reports "not logged in" even when the host is authenticated. - Home-directory Clerk state: saved config, cached metadata, and fallback credentials live under the user's Clerk config/data directories.
- Linked project metadata: resolved from the repo's git remote plus Clerk config. Sandboxes with stripped repo state or blocked home-dir reads can misreport "not linked".
- Local
.env*files: publishable and secret keys materialized byclerk env pull. - Outbound network access to Clerk: every Backend and Platform API call.
- Browser + localhost OAuth callback:
clerk auth loginneeds both.
In agent mode, the CLI now does a best-effort warn-once check at the host-sensitive library boundaries. When it detects that host-only Clerk state or system capabilities are unavailable, it emits:
Host-only Clerk state or system capabilities may be unavailable in agent mode. This may be a sandboxed run.
Re-run this command on the host shell before trusting auth, link, env, or API failures.
Treat that warning as authoritative. The command may continue, but any auth, link, env, config, API, browser, or OAuth callback failure from that invocation is untrusted until you rerun the same command on the host.
Prefer these commands on the user's host shell, not in a sandbox:
clerk doctor, clerk whoami, clerk auth login, clerk link, clerk env pull,
clerk apps ..., clerk config ..., clerk api ....
If a command was accidentally run in a sandbox and it reports Not logged in,
auth_required, not linked, missing env, keychain/file permission errors,
or network failures, do not treat the result as authoritative. Rerun it on
the host before acting on it or reporting it to the user.
Invoking the CLI
Before running any clerk command, figure out which binary to invoke and bind that choice for the rest of the session:
# 1. Prefer a globally installed binary when it matches the skill's pinned version.
command -v clerk >/dev/null 2>&1 && clerk --version
If that prints 1.0.3 (or any version you trust), use bare clerk for the rest of the session.
Otherwise fall back to a package runner, in this order (matches the CLI's own preferredRunner logic, which prefers the runner that matches the project's lockfile):
| Project package manager | Invocation |
|---|---|
bun (bun.lock*) |
bunx clerk@1.0.3 |
npm (package-lock.json) |
npx -y clerk@1.0.3 |
pnpm (pnpm-lock.yaml) |
pnpm dlx clerk@1.0.3 |
yarn >= 2 (yarn.lock) |
yarn dlx clerk@1.0.3 |
Yarn Classic (v1) has no dlx; treat those projects as "no preferred runner" and fall back to the first runner from the list above that's on PATH.
The published npm package is clerk, not @clerk/cli. Never teach npm install -g clerk as the primary path. The bundled skill is versioned alongside the binary, so a globally installed mismatched version will drift. If clerk --version disagrees with 1.0.3, either upgrade the global install or fall back to the pinned-runner form above.
Prerequisites (run at session start)
Before running any other Clerk command in a session, verify the CLI is authenticated, linked, and healthy:
clerk --version # confirm the binary is on PATH
clerk doctor --json # structured health check; exit 1 if anything failed
Always run clerk doctor --json first. It catches the common setup failures (not logged in, project not linked, missing keys, outdated bundled skill) up front, so later commands don't fail with confusing errors. In agent mode it also includes a Host execution check that warns when Clerk's host-side config / credential directories are not writable, which is the canonical signal that the current invocation is likely sandboxed.
Each result has name, status (pass/warn/fail), message, optional detail, optional remedy (how to fix it), and optional fix (label for auto-fixable issues). Parse that and act on it, or surface it to the user. If Host execution warns, rerun the command on the host before trusting any auth/link/env/API failures from the same sandboxed run. Rerun clerk doctor --json whenever a later command starts misbehaving.
If clerk skill --help reports a newer CLI than the skill you're reading, run clerk skill install to refresh the bundled skill. The CLI binary is always the source of truth.
The mental model
| Layer | What it does | Commands |
|---|---|---|
| Session / project | Auth, link a repo to a Clerk app, pull env keys | auth login, link, unlink, whoami, env pull, doctor |
| Instance config | Manage the configuration (social providers, session lifetimes, etc.) for a specific instance | config pull, config schema, config patch, config put |
| Backend API (default) | Runtime data: users, orgs, sessions, invitations, JWT templates, webhooks | clerk api <path> |
Platform API (--platform) |
Account-level: applications, instances, billing | clerk api --platform <path> |
A project is "linked" to an application via clerk link. Once linked, most commands auto-resolve the target app and dev instance from the repo's git remote. To target something else, pass --app <id> and/or --instance dev|prod|<instance_id>. See references/auth.md for the full resolution order.
Discover endpoints — don't memorize them
The CLI ships with the Clerk OpenAPI catalog. Always discover endpoints dynamically instead of guessing paths:
clerk api ls # list every Backend API endpoint
clerk api ls users # filter by keyword (matches path, summary, tag, operationId)
clerk api ls --platform apps # list Platform API endpoints
Use this before clerk api <path>. If you don't see the endpoint you expected, it probably isn't exposed.
The clerk api command (the workhorse)
clerk api makes authenticated HTTP calls. It auto-resolves keys, auto-detects method from body presence, supports stdin, and can preview mutations with --dry-run.
# GET requests
clerk api /users # list users
clerk api /users/user_abc123 # fetch one
clerk api /users?limit=5&order_by=-created_at # query params work inline
# Mutating requests
clerk api /users -d '{"email_address":["a@b.co"]}' # POST (auto-detected from body)
clerk api /users/user_abc123 -X PATCH -d '{"first_name":"A"}'
clerk api /users/user_abc123 -X DELETE
# Body from file or stdin
clerk api /users --file payload.json
cat payload.json | clerk api /users
# Always preview mutations first
clerk api /users/user_abc123 -X DELETE --dry-run
clerk api /users/user_abc123 -X DELETE --yes # skip confirmation once you've verified
# Target a specific app/instance
clerk api /users --app app_abc123 --instance prod
# Include response headers when debugging
clerk api /users --include
# Platform API (account-level, not tenant data)
clerk api /v1/platform/applications --platform
For instance config, prefer the dedicated clerk config ... commands over raw Platform API /config paths. They handle dry-run, diffing, and confirmation more cleanly than the raw endpoint form.
Always --dry-run a mutation before running it for real. Then re-run without --dry-run (add --yes if you're sure). In agent mode, interactive confirmation is bypassed, so --dry-run is the only safety net for destructive calls.
JSON bodies must be valid JSON. The CLI validates and rejects malformed payloads.
Endpoint paths may be given with or without /v1/ prefix — both work for Backend API calls. The CLI normalizes.
See references/recipes.md for concrete patterns: listing/filtering users, creating orgs, impersonation sessions, etc.
Core commands at a glance
| Command | Purpose | Key flags |
|---|---|---|
clerk init |
Scaffold Clerk into a project, or emit an agent handoff with --prompt. --starter only supports bootstrap for Next.js, React Router, Astro, Nuxt, TanStack Start, React, Vue, and JavaScript. |
--framework, --pm, --name (with --starter), --app, --prompt, --starter, -y, --no-skills |
clerk auth login |
OAuth browser login (stores token). Agent mode: no-op if already logged in, else prints guidance. Aliases: signup, signin, sign-in. Top-level shortcut: clerk login. |
— |
clerk auth logout |
Clear stored credentials. Aliases: signout, sign-out. Top-level shortcut: clerk logout. |
— |
clerk whoami |
Print the logged-in email. | — |
clerk link |
Link this repo to a Clerk app. | --app <id> |
clerk unlink |
Remove the link. | --yes |
clerk env pull |
Write publishable + secret keys to .env.local (merge, not clobber). |
--app, --instance, --file |
clerk config pull |
Fetch instance config JSON. | --app, --instance, --output, --keys |
clerk config schema |
Fetch the JSON Schema for the instance config. | --app, --instance, --output, --keys |
clerk config patch |
Partial update (PATCH) of instance config. Pass --destructive to actually delete sub-resources touched by the patch rather than resetting them to defaults. |
--app, --instance, --file, --json, --dry-run, --yes, --destructive |
clerk config put |
Full replacement (PUT) of instance config. Pass --destructive to actually delete removed sub-resources rather than resetting them to defaults. |
--app, --instance, --file, --json, --dry-run, --yes, --destructive |
clerk apps list |
List Clerk applications. | --json |
clerk apps create <name> |
Create a new Clerk application. | --json |
clerk open [subpath] |
Open the linked app's dashboard in a browser. Agent mode: prints a JSON descriptor instead of opening. | --print |
clerk doctor |
Health check. | --json, --spotlight, --verbose, --fix |
clerk api [path] |
Authenticated HTTP to Backend/Platform API. | -X, -d, --file, --dry-run, --yes, --include, --app, --secret-key, --instance, --platform |
clerk api ls [filter] |
Discover endpoints from the bundled OpenAPI catalog. | --platform |
clerk completion [shell] |
Print a shell completion script (bash, zsh, fish, powershell). |
— |
clerk update |
Update the CLI to the latest version. | --channel, -y, --all |
clerk skill install |
Reinstall the bundled clerk skill. Run after upgrading the CLI so the skill matches the new binary. |
-y, --pm |
clerk <command> --help is the source of truth for flags. This table is a hint, not a spec. Before running an unfamiliar command or flag combination, run clerk <command> --help once per session. Every command also defines setExamples([...]) in source, which --help renders as a copy-pasteable Examples block, so you rarely need to guess syntax.
Agent-mode behavior (important)
The CLI auto-detects agent mode when stdout is not a TTY, or when --mode agent / CLERK_MODE=agent is set. In agent mode:
- Interactive prompts are disabled. Commands that would normally show pickers (
linkwithout--app, interactiveapi,unlinkwithout--yes) either auto-resolve or exit with a usage error. Always pass explicit flags (--app,--yes) in scripted calls. - Host-sensitive operations emit a sandbox warning once per invocation. Home-directory Clerk state, keychain access, networked Clerk calls, browser launch, and localhost OAuth callback setup can trigger the warning shown above. If it appears, rerun the same command on the host before trusting the result.
- If your harness does not clearly present as agent mode, force it. Use
--mode agentorCLERK_MODE=agentwhen you want the CLI's non-interactive behavior and sandbox warning path to apply deterministically. linksupports deterministic agent flows. In agent mode,clerk link --app <id>links directly. Without--app, the CLI will try silent key-based autolink first; if it cannot determine the app unambiguously, it exits and tells you to pass--app.unlinkrequires--yesin agent mode. This preserves the same safety bar as other destructive commands while still letting an agent complete the unlink non-interactively.- Mutations still require
--yesunless you accept per-call confirmation is impossible. doctor --fixis ignored. Parsedoctor --jsonoutput'sremedyfield and act on it yourself.apps listandapps createdefault to JSON when piped.clerk init --promptprints a short agent-oriented handoff telling the agent to runclerk init -y(it is NOT a framework-specific integration guide; use the runtimeclerk initoutput itself for that).
Full matrix and sandbox details in references/agent-mode.md.
Output format and errors
- JSON output:
--jsononapps listanddoctor. Forclerk api, the response body is the raw API JSON, so pipe intojqfreely. - Exit codes:
0success,1runtime error,2usage/validation error.doctorreturns1if any check failed. - Error format: User-facing errors print a single line to stderr and set a non-zero exit code. Use
--verbosefor stack traces when debugging.
Safety rules for autonomous use
- Discover before acting:
clerk api ls <keyword>beforeclerk api <path>. - Preview mutations:
--dry-runon everyconfig patch,config put,api -X POST/PATCH/PUT/DELETE. - Target explicitly in production: pass
--instance prodrather than relying on defaults, and confirm with the user before any production mutation. - Never commit secrets:
env pullwrites to.env.local(which should be gitignored). Don't paste secret keys into code or chat. - Use
doctor --jsonto diagnose before assuming the CLI is broken.
References
- references/auth.md — auth flow, key resolution order, host-vs-sandbox behavior,
--app/--instancetargeting, Backend vs Platform API. - references/recipes.md — copy-pasteable recipes for common Clerk tasks.
- references/agent-mode.md — agent-mode behavior matrix, sandbox warning semantics, exit codes, error format.
Ground-truth gate (MANDATORY)
Before this skill asserts a stakes-bearing fact or takes any outward/irreversible action, apply the global standard — verify against a primary source fetched now, never a cached/remembered value. Full standard: ~/.claude/skills/shared/ground-truth-standard.md.
Verify live before you act or assert (this skill):
- Read the target user/org from live Clerk before mutating; dry where possible; confirm the exact subject before any write/delete.
Then: dry-run where possible, show the user exactly what will be sent/filed/asserted, get explicit chat approval for any outward action (per CLAUDE.md), capture the confirmation, and write any verified fact back into its source doc. State uncertainty as uncertainty; never assert plausible-but-unverified as fact.