Skip to content

feat(clerk-js,ui,shared,localizations): Support passkey as a second factor - #9127

Open
dmoerner wants to merge 14 commits into
mainfrom
daniel/user-3966-passkey-as-2fa-option
Open

feat(clerk-js,ui,shared,localizations): Support passkey as a second factor#9127
dmoerner wants to merge 14 commits into
mainfrom
daniel/user-3966-passkey-as-2fa-option

Conversation

@dmoerner

@dmoerner dmoerner commented Jul 10, 2026

Copy link
Copy Markdown
Contributor

Users who have a passkey and sign in with a password (or OAuth, or a reset-password code) cannot use that passkey as their second factor: the SDK treats passkeys purely as a first-factor strategy, and the prebuilt UI's factor-two step throws on any second-factor strategy it doesn't know. The Clerk backend (clerk/clerk_go#20312) can now offer passkey in a sign-in's and a session reverification's supportedSecondFactors when the instance allows passkeys to satisfy the second factor and the user has a registered passkey. This adds client support end to end:

  • Types: passkey variants in SignInSecondFactor, Prepare/AttemptSecondFactorParams, SessionVerificationSecondFactor, and the session verify param unions.
  • signIn.authenticateWithPasskey() detects needs_second_factor (and needs_client_trust) and runs the prepare/attempt second-factor flow against the in-progress sign-in instead of creating a new one; the flow param is ignored there. attemptSecondFactor serializes the WebAuthn credential like attemptFirstFactor. The future API gains mfa.passkey().
  • session.verifyWithPasskey({ level: 'second_factor' }) completes a multi-factor step-up with a passkey.
  • Prebuilt UI: passkey cards for the sign-in factor-two and user-verification factor-two steps. The starting-factor ladder is now passkey → TOTP → phone code, so a user with both a passkey and TOTP lands on the passkey card and reaches the authenticator app via "Use another method"; the passkey card is hidden when WebAuthn is unsupported. Fixes the alternative-methods label switch that threw on unknown second-factor strategies.
  • New signIn.passkeyMfa / reverification.passkeyMfa localization keys.

This relies on the FAPI API version bump to 2026-08-20 (SUPPORTED_FAPI_VERSION): the backend only offers the passkey second factor to SDKs that request at least that version, so older clerk-js builds keep their current behavior with no changes.

Part of USER-3966

Tested end to end against local clerk running clerk/clerk_go#20312 (real WebAuthn ceremonies via a Chromium virtual authenticator), comparing this branch with the published clerk-js 6.29.2 (2026-05-12):

  • Old API version (published clerk-js): passkey is never offered in sign-in or reverification; TOTP, email-code Client Trust, and TOTP reverification all still complete unchanged.
  • Sign-in: password → passkey and reset-password email code → new password → passkey via authenticateWithPasskey() on the in-progress sign-in; first factor stays password / reset_password_email_code.
  • Client Trust: on a new device supportedSecondFactors is email_code + passkey, and authenticateWithPasskey() completes the sign-in.
  • Reverification: verifyWithPasskey({ level: 'second_factor' }), multi_factor (password → passkey; passkey as first factor alone also completes), first_factor, and the prebuilt reverification modal (starts on the passkey card, afterVerification fires).
  • Prebuilt <SignIn />: factor-two step starts on the passkey card, "Use another method" lists "Sign in with your passkey" and "Use your authenticator app", and the flow ends signed in.
  • Abandoning the passkey attempt leaves the sign-in / reverification at needs_second_factor with no session; an authenticator without a matching credential rejects and creates no session.
  • Passkey alone does not create a 2FA requirement (twoFactorEnabled stays false; password sign-in completes once TOTP is removed).
  • TOTP still works alongside passkey; fva is [0,0] after TOTP, passkey-2FA, and passkey-first sign-ins.
  • No regressions in passkey first-factor flows (discoverable sign-in, passkey autofill).
  • Not exercised locally: OAuth → passkey (no provider; covered by backend integration tests).

Checklist

  • pnpm test runs as expected.
  • pnpm build runs as expected.
  • (If applicable) JSDoc comments have been added or updated for any package exports
  • (If applicable) Documentation has been updated

Type of change

  • 🐛 Bug fix
  • 🌟 New feature
  • 🔨 Breaking change
  • 📖 Refactoring / dependency upgrade / documentation
  • other:

…actor

The Clerk backend can now offer passkey in a sign-in's (and session
reverification's) supported_second_factors when the instance allows
passkeys to satisfy the second factor and the user has a registered
passkey. This adds client support end to end:

- Types: passkey variants in SignInSecondFactor,
  Prepare/AttemptSecondFactorParams, SessionVerificationSecondFactor,
  and the session verify param unions.
- signIn.authenticateWithPasskey() detects needs_second_factor (and
  needs_client_trust) and runs the prepare/attempt second-factor flow
  against the in-progress sign-in instead of creating a new one; the
  flow param is ignored there. attemptSecondFactor serializes the
  WebAuthn credential like attemptFirstFactor. The future API gains
  mfa.passkey().
- session.verifyWithPasskey({ level: 'second_factor' }) completes a
  multi-factor step-up with a passkey.
- Prebuilt UI: passkey cards for the sign-in factor-two and
  user-verification factor-two steps, offered via the existing
  totp/phone-first ladder (passkey is only the starting factor when it
  is the sole option), listed under "Use another method", and hidden
  when WebAuthn is unsupported. Fixes the alternative-methods label
  switch that threw on unknown second-factor strategies.
- New signIn.passkeyMfa / reverification.passkeyMfa localization keys.

Part of USER-3966

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@changeset-bot

changeset-bot Bot commented Jul 10, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 4f994ca

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 23 packages
Name Type
@clerk/shared Minor
@clerk/clerk-js Minor
@clerk/ui Minor
@clerk/localizations Minor
@clerk/react Minor
@clerk/astro Patch
@clerk/backend Patch
@clerk/chrome-extension Patch
@clerk/electron Patch
@clerk/expo-passkeys Patch
@clerk/expo Patch
@clerk/express Patch
@clerk/fastify Patch
@clerk/headless Patch
@clerk/hono Patch
@clerk/msw Patch
@clerk/nextjs Patch
@clerk/nuxt Patch
@clerk/react-router Patch
@clerk/tanstack-react-start Patch
@clerk/testing Patch
@clerk/vue Patch
@clerk/swingset Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@vercel

vercel Bot commented Jul 10, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
clerk-js-sandbox Ready Ready Preview Aug 20, 2026 8:59pm
swingset Ready Ready Preview Aug 20, 2026 8:59pm

Request Review

@coderabbitai

coderabbitai Bot commented Jul 10, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

Passkey second-factor support is added to sign-in and session reverification APIs, shared types, prebuilt sign-in and user-verification UIs, tests, localization resources, FAPI versioning, and release metadata.

Changes

Area Summary
Contracts and resource flows Shared types, errors, session verification, sign-in MFA methods, WebAuthn serialization, and first- and second-factor API flows support passkeys.
Sign-in and user-verification UI Passkey cards, factor selection, WebAuthn filtering, alternative methods, abort handling, reset-password routing, fixtures, and tests are added or updated.
Localization and release metadata Passkey MFA localization keys are added across locales, the supported FAPI version is updated, and release notes record the new APIs and UI flows.

Estimated code review effort: 4 (Complex) | ~60 minutes

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed Docstring coverage is 100.00% which is sufficient. The required threshold is 80.00%.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Title check ✅ Passed The title clearly and concisely identifies the main change: adding passkey support as a second factor across the listed packages.
Description check ✅ Passed The description directly explains the passkey second-factor feature, affected APIs, UI changes, localization updates, testing, and fallback behavior.

Comment @coderabbitai help to get the list of available commands.

@pkg-pr-new

pkg-pr-new Bot commented Jul 10, 2026

Copy link
Copy Markdown

Open in StackBlitz

@clerk/astro

npm i https://pkg.pr.new/@clerk/astro@9127

@clerk/backend

npm i https://pkg.pr.new/@clerk/backend@9127

@clerk/chrome-extension

npm i https://pkg.pr.new/@clerk/chrome-extension@9127

@clerk/clerk-js

npm i https://pkg.pr.new/@clerk/clerk-js@9127

@clerk/electron

npm i https://pkg.pr.new/@clerk/electron@9127

@clerk/electron-passkeys

npm i https://pkg.pr.new/@clerk/electron-passkeys@9127

@clerk/eslint-plugin

npm i https://pkg.pr.new/@clerk/eslint-plugin@9127

@clerk/expo

npm i https://pkg.pr.new/@clerk/expo@9127

@clerk/expo-google-signin

npm i https://pkg.pr.new/@clerk/expo-google-signin@9127

@clerk/expo-passkeys

npm i https://pkg.pr.new/@clerk/expo-passkeys@9127

@clerk/express

npm i https://pkg.pr.new/@clerk/express@9127

@clerk/fastify

npm i https://pkg.pr.new/@clerk/fastify@9127

@clerk/hono

npm i https://pkg.pr.new/@clerk/hono@9127

@clerk/localizations

npm i https://pkg.pr.new/@clerk/localizations@9127

@clerk/nextjs

npm i https://pkg.pr.new/@clerk/nextjs@9127

@clerk/nuxt

npm i https://pkg.pr.new/@clerk/nuxt@9127

@clerk/react

npm i https://pkg.pr.new/@clerk/react@9127

@clerk/react-router

npm i https://pkg.pr.new/@clerk/react-router@9127

@clerk/shared

npm i https://pkg.pr.new/@clerk/shared@9127

@clerk/tanstack-react-start

npm i https://pkg.pr.new/@clerk/tanstack-react-start@9127

@clerk/testing

npm i https://pkg.pr.new/@clerk/testing@9127

@clerk/ui

npm i https://pkg.pr.new/@clerk/ui@9127

@clerk/upgrade

npm i https://pkg.pr.new/@clerk/upgrade@9127

@clerk/vue

npm i https://pkg.pr.new/@clerk/vue@9127

commit: 4f994ca

@github-actions

github-actions Bot commented Jul 10, 2026

Copy link
Copy Markdown
Contributor

API Changes Report

Generated by Break Check on 2026-08-20T21:00:39.129Z

Summary

Metric Count
Packages analyzed 19
Packages with changes 1
🔴 Breaking changes 0
🟡 Non-breaking changes 9
🟢 Additions 2

🤖 This report was reviewed by claude-sonnet-4-6.


@clerk/shared

Current version: 4.29.2
Recommended bump: MINOR → 4.30.0

Subpath ./internal/clerk-js/errors

🟢 Additions (1)

Added: clerkInvalidVerificationLevel
+ declare function clerkInvalidVerificationLevel(functionName: string, level: string): never;

Added function clerkInvalidVerificationLevel

Subpath ./types

🟡 Non-breaking Changes (9)

Modified: __internal_LocalizationResource
Diff (before: 2077 lines, after: 2086 lines). Click to expand.
// ... 500 unchanged lines elided ...
        title: LocalizationValue;
        subtitle: LocalizationValue;
      };
+     passkeyMfa: {
+       title: LocalizationValue;
+       subtitle: LocalizationValue;
+     };
      alternativeMethods: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
        actionLink: LocalizationValue;
        actionText: LocalizationValue;
        blockButton__emailLink: LocalizationValue<'identifier'>;
        blockButton__emailCode: LocalizationValue<'identifier'>;
        blockButton__phoneCode: LocalizationValue<'identifier'>;
        blockButton__password: LocalizationValue;
        blockButton__passkey: LocalizationValue;
        blockButton__totp: LocalizationValue;
        blockButton__backupCode: LocalizationValue;
        getHelp: {
          title: LocalizationValue;
          content: LocalizationValue;
          blockButton__emailSupport: LocalizationValue;
        };
      };
      noAvailableMethods: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
        message: LocalizationValue;
      };
      accountSwitcher: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
        action__addAccount: LocalizationValue;
        action__signOutAll: LocalizationValue;
      };
      enterpriseConnections: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
      };
      web3Solana: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
      };
      protectCheck: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
        loading: LocalizationValue;
        retryButton: LocalizationValue;
      };
    };
    reverification: {
      password: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
        actionLink: LocalizationValue;
      };
      emailCode: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
        formTitle: LocalizationValue;
        resendButton: LocalizationValue;
      };
      phoneCode: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
        formTitle: LocalizationValue;
        resendButton: LocalizationValue;
      };
      phoneCodeMfa: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
        formTitle: LocalizationValue;
        resendButton: LocalizationValue;
      };
      totpMfa: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
        formTitle: LocalizationValue;
      };
      backupCodeMfa: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
      };
      passkey: {
+       title: LocalizationValue;
+       subtitle: LocalizationValue;
+       blockButton__passkey: LocalizationValue;
+     };
+     passkeyMfa: {
        title: LocalizationValue;
        subtitle: LocalizationValue;
        blockButton__passkey: LocalizationValue;
// ... 1493 unchanged lines elided ...

Static analyzer: Breaking change in type alias __internal_LocalizationResource: Type changed: {locale:string;maintenanceMode:import("@clerk/shared").LocalizationValue;roles:{[r:string]:import("@clerk/shared").Loca…{locale:string;maintenanceMode:import("@clerk/shared").LocalizationValue;roles:{[r:string]:import("@clerk/shared").Loca…

🤖 AI review (reclassified as non-breaking) (70%): __internal_LocalizationResource is used only as the base for LocalizationResource (via DeepPartial<DeepLocalizationWithoutObjects<...>>), which is an output/read type; the change appears to add new localization keys (9 additional lines elided), which is additive for consumers who only read the type.

Modified: AttemptSecondFactorParams
- type AttemptSecondFactorParams = PhoneCodeAttempt | TOTPAttempt | BackupCodeAttempt | EmailCodeAttempt;
+ type AttemptSecondFactorParams = PhoneCodeAttempt | TOTPAttempt | BackupCodeAttempt | EmailCodeAttempt | PasskeyAttempt;

Static analyzer: Breaking change in type alias AttemptSecondFactorParams: Type changed: import("@clerk/shared").BackupCodeAttempt|import("@clerk/shared").EmailCodeAttempt|import("@clerk/shared").PhoneCodeAtt…import("@clerk/shared").BackupCodeAttempt|import("@clerk/shared").EmailCodeAttempt|import("@clerk/shared").PasskeyAttem…

🤖 AI review (reclassified as non-breaking) (95%): AttemptSecondFactorParams is a parameter (input) type for attemptSecondFactor; adding PasskeyAttempt to the union widens the accepted input set, which is non-breaking for existing callers who pass the previously-valid types.

Modified: PrepareSecondFactorParams
- type PrepareSecondFactorParams = PhoneCodeSecondFactorConfig | EmailCodeSecondFactorConfig | EmailLinkConfig;
+ type PrepareSecondFactorParams = PhoneCodeSecondFactorConfig | EmailCodeSecondFactorConfig | EmailLinkConfig | PassKeyConfig;

Static analyzer: Breaking change in type alias PrepareSecondFactorParams: Type changed: import("@clerk/shared").EmailCodeSecondFactorConfig|import("@clerk/shared").EmailLinkConfig|import("@clerk/shared").Pho…import("@clerk/shared").EmailCodeSecondFactorConfig|import("@clerk/shared").EmailLinkConfig|import("@clerk/shared").Pas…

🤖 AI review (reclassified as non-breaking) (95%): PrepareSecondFactorParams is a parameter (input) type for prepareSecondFactor; adding PassKeyConfig to the union widens the set of accepted values, which is non-breaking for existing callers.

Modified: SessionResource.verifyWithPasskey
- verifyWithPasskey: () => Promise<SessionVerificationResource>;
+ verifyWithPasskey: (params?: SessionVerifyWithPasskeyParams) => Promise<SessionVerificationResource>;

Static analyzer: Breaking change in property SessionResource.verifyWithPasskey: Type changed: ()=>!Promise:interface<import("@clerk/shared").SessionVerificationResource>(params?:import("@clerk/shared").SessionVerifyWithPasskeyParams)=>!Promise:interface<import("@clerk/shared").SessionVer…

🤖 AI review (reclassified as non-breaking) (92%): Adding an optional parameter params?: SessionVerifyWithPasskeyParams to verifyWithPasskey is non-breaking: existing call sites that pass no arguments still compile correctly because the parameter is optional.

Modified: SessionVerificationSecondFactor
- type SessionVerificationSecondFactor = PhoneCodeFactor | TOTPFactor | BackupCodeFactor;
+ type SessionVerificationSecondFactor = PhoneCodeFactor | TOTPFactor | BackupCodeFactor | PasskeyFactor;

Static analyzer: Breaking change in type alias SessionVerificationSecondFactor: Type changed: import("@clerk/shared").BackupCodeFactor|import("@clerk/shared").PhoneCodeFactor|import("@clerk/shared").TOTPFactorimport("@clerk/shared").BackupCodeFactor|import("@clerk/shared").PasskeyFactor|import("@clerk/shared").PhoneCodeFactor|…

🤖 AI review (reclassified as non-breaking) (95%): SessionVerificationSecondFactor is used as the element type of supportedSecondFactors (an output/read field); adding PasskeyFactor to the union is a widening of the output type, which existing consumers that handle a subset of variants may not handle, but structurally it is an additive union member on an output type and is non-breaking for well-typed consumers that exhaustively switch (they would need an update, but code that doesn't exhaustively switch compiles fine).

Modified: SessionVerifyAttemptSecondFactorParams
- type SessionVerifyAttemptSecondFactorParams = PhoneCodeAttempt | TOTPAttempt | BackupCodeAttempt;
+ type SessionVerifyAttemptSecondFactorParams = PhoneCodeAttempt | TOTPAttempt | BackupCodeAttempt | PasskeyAttempt;

Static analyzer: Breaking change in type alias SessionVerifyAttemptSecondFactorParams: Type changed: import("@clerk/shared").BackupCodeAttempt|import("@clerk/shared").PhoneCodeAttempt|import("@clerk/shared").TOTPAttemptimport("@clerk/shared").BackupCodeAttempt|import("@clerk/shared").PasskeyAttempt|import("@clerk/shared").PhoneCodeAttem…

🤖 AI review (reclassified as non-breaking) (95%): SessionVerifyAttemptSecondFactorParams is a parameter (input) type for attemptSecondFactorVerification; adding PasskeyAttempt to the union widens the accepted input set, which is non-breaking for existing callers.

Modified: SessionVerifyPrepareSecondFactorParams
- type SessionVerifyPrepareSecondFactorParams = PhoneCodeSecondFactorConfig;
+ type SessionVerifyPrepareSecondFactorParams = PhoneCodeSecondFactorConfig | PassKeyConfig;

Static analyzer: Breaking change in type alias SessionVerifyPrepareSecondFactorParams: Type changed: import("@clerk/shared").PhoneCodeSecondFactorConfigimport("@clerk/shared").PassKeyConfig|import("@clerk/shared").PhoneCodeSecondFactorConfig

🤖 AI review (reclassified as non-breaking) (95%): SessionVerifyPrepareSecondFactorParams is a parameter (input) type for prepareSecondFactorVerification; adding PassKeyConfig to the union widens the accepted input set, which is non-breaking for existing callers.

Modified: SignInFutureResource.mfa
// ... 16 unchanged lines elided ...
      verifyBackupCode: (params: SignInFutureBackupCodeVerifyParams) => Promise<{
        error: ClerkError | null;
      }>;
+     passkey: () => Promise<{
+       error: ClerkError | null;
+     }>;
    };

Static analyzer: Breaking change in property SignInFutureResource.mfa: Type changed: {sendPhoneCode:()=>!Promise:interface<{error:import("@clerk/shared").~ClerkError|null;}>;verifyPhoneCode:(params:import…{sendPhoneCode:()=>!Promise:interface<{error:import("@clerk/shared").~ClerkError|null;}>;verifyPhoneCode:(params:import…

🤖 AI review (reclassified as non-breaking) (90%): Adding a new optional method passkey to the mfa object on SignInFutureResource is an additive change; existing consumers that destructure or access only the previously-existing members are unaffected.

Modified: SignInSecondFactor
- type SignInSecondFactor = PhoneCodeFactor | TOTPFactor | BackupCodeFactor | EmailCodeFactor | EmailLinkFactor;
+ type SignInSecondFactor = PhoneCodeFactor | TOTPFactor | BackupCodeFactor | EmailCodeFactor | EmailLinkFactor | PasskeyFactor;

Static analyzer: Breaking change in type alias SignInSecondFactor: Type changed: import("@clerk/shared").BackupCodeFactor|import("@clerk/shared").EmailCodeFactor|import("@clerk/shared").EmailLinkFacto…import("@clerk/shared").BackupCodeFactor|import("@clerk/shared").EmailCodeFactor|import("@clerk/shared").EmailLinkFacto…

🤖 AI review (reclassified as non-breaking) (90%): SignInSecondFactor is used as the element type of output fields (supportedSecondFactors) and in SignInSecondFactorJSON (a JSON shape); adding PasskeyFactor to the union is additive on output types and does not break existing consumers that read the field.

🟢 Additions (1)

Added: SessionVerifyWithPasskeyParams
+ type SessionVerifyWithPasskeyParams = {
+   level?: 'first_factor' | 'second_factor';
+ };

Added type alias SessionVerifyWithPasskeyParams


Report generated by Break Check

Last ran on 4f994ca.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 5

🧹 Nitpick comments (1)
packages/ui/src/components/SignIn/__tests__/SignInFactorTwo.test.tsx (1)

407-424: 🎯 Functional Correctness | 🔵 Trivial | ⚡ Quick win

Test may pass for the wrong reason — wrap in mockWebAuthn to test priority ordering.

Without mockWebAuthn, isWebAuthnSupported() likely returns false in the test environment, so passkey is excluded from candidacy regardless of priority sorting against TOTP. This test currently can't distinguish "TOTP wins on priority" from "passkey is filtered out due to no WebAuthn support." Wrapping this in mockWebAuthn(() => { ... }) (as done for the sibling tests below) would ensure the sorting/priority logic is actually exercised.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/ui/src/components/SignIn/__tests__/SignInFactorTwo.test.tsx` around
lines 407 - 424, Update the Passkey test “is never the starting factor when
another second factor is available” to wrap its fixture setup, render, and
assertions in mockWebAuthn, matching the sibling tests below. Keep supportTotp
and supportPasskey enabled so the test validates priority ordering rather than
passkey being excluded by unsupported WebAuthn.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@packages/clerk-js/src/core/resources/__tests__/SignIn.test.ts`:
- Around line 261-264: Restore direct static assignments in the passkey test
suites: update the authenticateWithPasskey and mfa.passkey cleanup to save the
original BaseResource._fetch and SignIn.clerk values before stubbing, then
reassign those originals in afterEach alongside vi.clearAllMocks() and
vi.unstubAllGlobals().

In `@packages/clerk-js/src/core/resources/Session.ts`:
- Around line 320-329: The verifyWithPasskey method silently treats invalid
levels as first-factor verification. Default level with nullish coalescing, then
explicitly validate that it is either 'first_factor' or 'second_factor' and
reject any other value before calling prepareFirstFactorVerification or
prepareSecondFactorVerification.
- Around line 320-329: Document the public verifyWithPasskey API with JSDoc
directly above the verifyWithPasskey method in Session, describing the
params.level options and default, the returned SessionVerificationResource, and
possible error behavior; flag the contract change for Docs-team review or
accompanying generated documentation updates.

In `@packages/clerk-js/src/core/resources/SignIn.ts`:
- Around line 575-610: Add or update JSDoc for the public
authenticateWithPasskey method to document that needs_second_factor and
needs_client_trust sign-ins reuse the in-progress sign-in via the second-factor
flow, and that the flow option is ignored in those states. Include the API
behavior change clearly and mark the documentation for Docs-team review.

In `@packages/ui/src/components/UserVerification/UVFactorTwoPasskeyCard.tsx`:
- Around line 32-41: Update handlePasskeysAttempt to guard against concurrent
passkey attempts: set the card’s loading state before calling verifyWithPasskey,
clear it in a finally handler regardless of success or failure, and disable the
passkey button while loading so additional clicks cannot abort the in-flight
ceremony.

---

Nitpick comments:
In `@packages/ui/src/components/SignIn/__tests__/SignInFactorTwo.test.tsx`:
- Around line 407-424: Update the Passkey test “is never the starting factor
when another second factor is available” to wrap its fixture setup, render, and
assertions in mockWebAuthn, matching the sibling tests below. Keep supportTotp
and supportPasskey enabled so the test validates priority ordering rather than
passkey being excluded by unsupported WebAuthn.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository YAML (base), Repository UI (inherited)

Review profile: CHILL

Plan: Pro Plus

Run ID: c030f53b-d9cd-46b4-8a0f-e7f81cb887a2

📥 Commits

Reviewing files that changed from the base of the PR and between 7b581aa and 707e4ad.

📒 Files selected for processing (73)
  • .changeset/passkey-second-factor.md
  • packages/clerk-js/src/core/resources/Session.ts
  • packages/clerk-js/src/core/resources/SignIn.ts
  • packages/clerk-js/src/core/resources/__tests__/Session.test.ts
  • packages/clerk-js/src/core/resources/__tests__/SignIn.test.ts
  • packages/localizations/src/ar-SA.ts
  • packages/localizations/src/be-BY.ts
  • packages/localizations/src/bg-BG.ts
  • packages/localizations/src/bn-IN.ts
  • packages/localizations/src/ca-ES.ts
  • packages/localizations/src/cs-CZ.ts
  • packages/localizations/src/da-DK.ts
  • packages/localizations/src/de-DE.ts
  • packages/localizations/src/el-GR.ts
  • packages/localizations/src/en-GB.ts
  • packages/localizations/src/en-US.ts
  • packages/localizations/src/es-CR.ts
  • packages/localizations/src/es-ES.ts
  • packages/localizations/src/es-MX.ts
  • packages/localizations/src/es-UY.ts
  • packages/localizations/src/fa-IR.ts
  • packages/localizations/src/fi-FI.ts
  • packages/localizations/src/fr-FR.ts
  • packages/localizations/src/he-IL.ts
  • packages/localizations/src/hi-IN.ts
  • packages/localizations/src/hr-HR.ts
  • packages/localizations/src/hu-HU.ts
  • packages/localizations/src/id-ID.ts
  • packages/localizations/src/is-IS.ts
  • packages/localizations/src/it-IT.ts
  • packages/localizations/src/ja-JP.ts
  • packages/localizations/src/kk-KZ.ts
  • packages/localizations/src/ko-KR.ts
  • packages/localizations/src/mn-MN.ts
  • packages/localizations/src/ms-MY.ts
  • packages/localizations/src/nb-NO.ts
  • packages/localizations/src/nl-BE.ts
  • packages/localizations/src/nl-NL.ts
  • packages/localizations/src/pl-PL.ts
  • packages/localizations/src/pt-BR.ts
  • packages/localizations/src/pt-PT.ts
  • packages/localizations/src/ro-RO.ts
  • packages/localizations/src/ru-RU.ts
  • packages/localizations/src/sk-SK.ts
  • packages/localizations/src/sr-RS.ts
  • packages/localizations/src/sv-SE.ts
  • packages/localizations/src/ta-IN.ts
  • packages/localizations/src/te-IN.ts
  • packages/localizations/src/th-TH.ts
  • packages/localizations/src/tr-TR.ts
  • packages/localizations/src/uk-UA.ts
  • packages/localizations/src/vi-VN.ts
  • packages/localizations/src/zh-CN.ts
  • packages/localizations/src/zh-TW.ts
  • packages/shared/src/internal/clerk-js/errors.ts
  • packages/shared/src/types/localization.ts
  • packages/shared/src/types/session.ts
  • packages/shared/src/types/sessionVerification.ts
  • packages/shared/src/types/signInCommon.ts
  • packages/shared/src/types/signInFuture.ts
  • packages/ui/src/components/SignIn/SignInClientTrust.tsx
  • packages/ui/src/components/SignIn/SignInFactorTwo.tsx
  • packages/ui/src/components/SignIn/SignInFactorTwoAlternativeMethods.tsx
  • packages/ui/src/components/SignIn/SignInFactorTwoPasskeyCard.tsx
  • packages/ui/src/components/SignIn/__tests__/SignInFactorTwo.test.tsx
  • packages/ui/src/components/SignIn/shared.ts
  • packages/ui/src/components/SignIn/utils.ts
  • packages/ui/src/components/UserVerification/UVFactorTwoAlternativeMethods.tsx
  • packages/ui/src/components/UserVerification/UVFactorTwoPasskeyCard.tsx
  • packages/ui/src/components/UserVerification/UserVerificationFactorTwo.tsx
  • packages/ui/src/components/UserVerification/__tests__/UVFactorTwo.test.tsx
  • packages/ui/src/test/fixture-helpers.ts
  • packages/ui/src/utils/factorSorting.ts

Comment thread packages/clerk-js/src/core/resources/__tests__/SignIn.test.ts
Comment thread packages/clerk-js/src/core/resources/Session.ts
Comment thread packages/clerk-js/src/core/resources/SignIn.ts Outdated

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
packages/shared/src/internal/clerk-js/errors.ts (1)

105-112: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Document the exported error helper.

The new exported function has an empty JSDoc block. Add accurate @param, @returns, @throws, and @example documentation describing the supported verification levels and caller-facing error. If this export is reference-facing, please also have the Docs team review the generated API content.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/shared/src/internal/clerk-js/errors.ts` around lines 105 - 112,
Document the exported clerkInvalidVerificationLevel helper with complete JSDoc:
describe functionName and level via `@param`, state the never return behavior via
`@returns`, document the thrown caller-facing error via `@throws`, and add an
`@example` showing an invalid level and the supported first_factor and
second_factor values. Keep the documentation aligned with the existing error
message and request Docs review for the generated API content if this export is
reference-facing.

Sources: Coding guidelines, Path instructions

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@packages/shared/src/internal/clerk-js/errors.ts`:
- Around line 105-112: Document the exported clerkInvalidVerificationLevel
helper with complete JSDoc: describe functionName and level via `@param`, state
the never return behavior via `@returns`, document the thrown caller-facing error
via `@throws`, and add an `@example` showing an invalid level and the supported
first_factor and second_factor values. Keep the documentation aligned with the
existing error message and request Docs review for the generated API content if
this export is reference-facing.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository YAML (base), Repository UI (inherited)

Review profile: CHILL

Plan: Pro Plus

Run ID: 9bc817b9-9d9f-4562-931c-26016589d189

📥 Commits

Reviewing files that changed from the base of the PR and between 707e4ad and c23d0c4.

📒 Files selected for processing (9)
  • .changeset/passkey-second-factor.md
  • packages/clerk-js/src/core/resources/Session.ts
  • packages/clerk-js/src/core/resources/SignIn.ts
  • packages/clerk-js/src/core/resources/__tests__/Session.test.ts
  • packages/clerk-js/src/core/resources/__tests__/SignIn.test.ts
  • packages/react/src/stateProxy.ts
  • packages/shared/src/internal/clerk-js/errors.ts
  • packages/shared/src/types/session.ts
  • packages/ui/src/components/UserVerification/UVFactorTwoPasskeyCard.tsx
🚧 Files skipped from review as they are similar to previous changes (7)
  • .changeset/passkey-second-factor.md
  • packages/clerk-js/src/core/resources/tests/Session.test.ts
  • packages/ui/src/components/UserVerification/UVFactorTwoPasskeyCard.tsx
  • packages/clerk-js/src/core/resources/tests/SignIn.test.ts
  • packages/shared/src/types/session.ts
  • packages/clerk-js/src/core/resources/Session.ts
  • packages/clerk-js/src/core/resources/SignIn.ts

If the environment variable on the backend is unset, the backend will
not advertise passkeys for second factor. The javascript code, when on a
new clerk js version that does support passkeys as second factor, was
treating that as an error. Instead just fail gracefully, clients
shouldn't be disrupted if the backend doesn't yet advertise support for
something.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
packages/clerk-js/src/core/resources/SignIn.ts (1)

594-619: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Duplicate second-factor passkey ceremony logic between authenticateWithPasskey and verifyMFAPasskey.

Both blocks implement the same sequence (prepare second factor with strategy: 'passkey' → read/parse nonce → convert to public-key options → fetch credential → submit attempt), but diverge in error handling (clerkMissingWebAuthnPublicKeyOptions/raw throw error here vs. ClerkRuntimeError/ClerkWebAuthnError there). Extracting a shared private helper would prevent the two paths from drifting further as passkey second-factor logic evolves.

Also applies to: 1563-1610

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/clerk-js/src/core/resources/SignIn.ts` around lines 594 - 619,
Extract the duplicated second-factor passkey ceremony from
authenticateWithPasskey and verifyMFAPasskey into a shared private helper on
SignIn. Have both callers use the helper, preserving the existing
prepareSecondFactor, nonce parsing, public-key option conversion, credential
retrieval, and attemptSecondFactor flow while standardizing their error handling
through the shared implementation.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@packages/clerk-js/src/core/resources/SignIn.ts`:
- Around line 594-619: Extract the duplicated second-factor passkey ceremony
from authenticateWithPasskey and verifyMFAPasskey into a shared private helper
on SignIn. Have both callers use the helper, preserving the existing
prepareSecondFactor, nonce parsing, public-key option conversion, credential
retrieval, and attemptSecondFactor flow while standardizing their error handling
through the shared implementation.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository YAML (base), Repository UI (inherited)

Review profile: CHILL

Plan: Pro Plus

Run ID: 37a94a0a-db64-4faf-8786-49a7017aba5d

📥 Commits

Reviewing files that changed from the base of the PR and between c23d0c4 and 1e0fbd7.

📒 Files selected for processing (4)
  • .changeset/passkey-second-factor.md
  • packages/clerk-js/src/core/resources/SignIn.ts
  • packages/clerk-js/src/core/resources/__tests__/SignIn.test.ts
  • packages/shared/src/internal/clerk-js/errors.ts
💤 Files with no reviewable changes (1)
  • packages/shared/src/internal/clerk-js/errors.ts
🚧 Files skipped from review as they are similar to previous changes (1)
  • .changeset/passkey-second-factor.md

Covers the needs_second_factor path against the with-passkeys instance:
registering a passkey for a 2FA-enabled user, passkey as the starting
second factor, and passkey listed under "Use another method".

Both suites now share one dev server instead of committing an app each.
The with-passkeys instance has no phone_number identifier, so BAPI rejects
it at user creation. Enroll TOTP via BAPI after the passkey is registered
instead; no test needs to enter a TOTP code.
…key-as-2fa-option

# Conflicts:
#	packages/ui/bundlewatch.config.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant