multiAI Summary Pending

tauri-app-biometric

Implement Tauri v2 biometric authentication using TouchID, FaceID, or fingerprint sensors with fallback strategies. Use when adding biometric login, securing sensitive actions with biometric confirmation, or handling devices without biometric support.

223 stars

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/tauri-app-biometric/SKILL.md --create-dirs "https://raw.githubusercontent.com/partme-ai/full-stack-skills/main/skills/tauri-skills/tauri-app-biometric/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/tauri-app-biometric/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How tauri-app-biometric Compares

Feature / Agenttauri-app-biometricStandard Approach
Platform SupportmultiLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Implement Tauri v2 biometric authentication using TouchID, FaceID, or fingerprint sensors with fallback strategies. Use when adding biometric login, securing sensitive actions with biometric confirmation, or handling devices without biometric support.

Which AI agents support this skill?

This skill is compatible with multi.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

## When to use this skill

**ALWAYS use this skill when the user mentions:**
- Biometric authentication (TouchID, FaceID, fingerprint)
- Securing sensitive actions with biometric confirmation
- Fallback when biometric hardware is unavailable

**Trigger phrases include:**
- "biometric", "Face ID", "Touch ID", "fingerprint", "biometric login"

## How to use this skill

1. **Install the biometric plugin**:
   ```bash
   cargo add tauri-plugin-biometric
   ```
2. **Register the plugin** in your Tauri builder:
   ```rust
   tauri::Builder::default()
       .plugin(tauri_plugin_biometric::init())
   ```
3. **Configure capabilities** in `src-tauri/capabilities/default.json`:
   ```json
   { "permissions": ["biometric:allow-authenticate", "biometric:allow-status"] }
   ```
4. **Check availability and authenticate from the frontend**:
   ```typescript
   import { authenticate, status } from '@tauri-apps/plugin-biometric';
   const bioStatus = await status();
   if (bioStatus.isAvailable) {
     await authenticate('Confirm your identity', { allowDeviceCredential: true });
   }
   ```
5. **Implement fallback** for devices without biometric support (PIN or password entry)
6. **Pair with stronghold plugin** for unlocking encrypted secrets after biometric confirmation

## Outputs

- Biometric authentication flow with availability check
- Fallback strategy for unsupported devices
- Integration pattern with secure storage

## References

- https://v2.tauri.app/plugin/biometric/

## Keywords

tauri biometric, face id, touch id, fingerprint, authentication, fallback