PixelPilot uiux-biometric-auth.instructions.md

Login interface guidance for WebAuthn and passkeys, which let people sign in with a device feature such as a fingerprint, Face ID, or a security key instead of a password.

In plain words
What is it for?
Designing passwordless login screens, passkey flows, biometric prompts, fallback options, error messages, and cross-device authentication experiences.
Why use it?
It helps avoid confusing biometric prompts, failed sign-ins, and missing alternatives on devices that do not support these methods.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/dev-lou/pixelpilot/uiux-biometric-auth
Clone the repo
git clone --depth 1 https://github.com/dev-lou/PixelPilot

Made for: GitHub Copilot.

Per session 4,663 This file is loaded in full into every session.
When invoked 4,663 The same file — it is already loaded in full.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.04663 $0.04663
Opus 5 $0.02331 $0.02331
Sonnet 5 $0.00933 $0.00933
Haiku 4.5 $0.00466 $0.00466

Measured 3d ago against content hash 7fea3d946dd9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

PixelPilot uiux-biometric-auth.instructions.md scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks the agent to reveal its instructionsmediumSystem prompt leakage

Directions to print, repeat or translate the system prompt extract configuration the operator did not intend to expose.

// Show prompt after 3rd password login, if no passkey
vscode/.github/instructions/uiux-biometric-auth.instructions.md · 748 lines

How it starts

The opening of the file, as written. The whole thing — 748 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Biometric Authentication UI

Passwords are dying. This file covers WebAuthn/passkeys, biometric prompts, passwordless flows, and how to design authentication that's both more secure AND easier to use than passwords.


CRITICAL RULES

  1. Always provide fallback — Not all devices support biometrics.
  2. Explain benefits — Users need to understand why passkeys are better.
  3. Don't force — Offer passkeys, don't mandate them.
  4. Clear error states — Biometric failures need specific guidance.
  5. Cross-device — Handle device-specific UI gracefully.

WEBAUTHN BASICS

Support Detection

// webauthn.ts
export async function checkWebAuthnSupport(): Promise<{
  available: boolean;
  platformAuth: boolean;  // Built-in (fingerprint, Face ID)
  crossPlatform: boolean; // Security keys
}> {
  if (!window.PublicKeyCredential) {
    return { available: false, platformAuth: false, crossPlatform: false };
  }

  const available = true;
  
  // Check for platform authenticator (Touch ID, Face ID, Windows Hello)
  let platformAuth = false;
  try {
    platformAuth = await PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable();
  } catch {}

  // Check for conditional mediation (autofill passkeys)
  let conditionalMediation = false;
  try {
    conditionalMediation = await PublicKeyCredential.isConditionalMediationAvailable?.() ?? false;
  } catch {}

  return {
    available,
    platformAuth,
    crossPlatform: true, // Security keys always available if WebAuthn is
  };
}

Registration Flow

// passkeyRegistration.ts
export async function registerPasskey(
  username: string,
  displayName: string
): Promise<{ success: boolean; error?: string }> {
  try {
    // Get challenge from server
    const options = await fetch('/api/webauthn/register-options', {
      method: 'POST',
      body: JSON.stringify({ username }),
    }).then(r => r.json());

    // Create credential
    const credential = await navigator.credentials.create({
      publicKey: {
        ...options,
        challenge: base64ToBuffer(options.challenge),
        user: {
          ...options.user,
          id: base64ToBuffer(options.user.id),
        },
      },
    }) as PublicKeyCredential;

    // Send to server for verification
    const response = await fetch('/api/webauthn/register-verify', {
      method: 'POST',
      body: JSON.stringify({
        id: credential.id,
        rawId: bufferToBase64(credential.rawId),
        response: {
          clientDataJSON: bufferToBase64(credential.response.clientDataJSON),
          attestationObject: bufferToBase64(
            (credential.response as AuthenticatorAttestationResponse).attestationObject
          ),
        },
        type: credential.type,
      }),
    });

    if (!response.ok) {
      throw new Error('Registration failed');
    }

    return { success: true };
  } catch (error: any) {
    return {
      success: false,
      error: getReadableError(error),
    };
  }
}

function getReadableError(error: Error): string {
  if (error.name === 'NotAllowedError') {
    return 'Registration was cancelled or timed out. Please try again.';
  }
  if (error.name === 'InvalidStateError') {
    return 'A passkey for this account already exists on this device.';
  }
  if (error.name === 'NotSupportedError') {
    return 'Your device doesn\'t support passkeys. Please use a password instead.';
  }
  return 'Something went wrong. Please try again or use a password.';
}

Read the full file on GitHub · 748 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 748 lines · 4,663 tokens per session scan B 7fea3d946dd9

Subscribe to this mod's changes

PixelPilot uiux-biometric-auth.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 4mo ago), licensed MIT. It adds 4,663 tokens to every session, about $0.0233 per session on Opus 5. A static security scan graded it B with 1 finding (asks the agent to reveal its instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.