# Face Recognition System

> Implements secure and accurate facial recognition workflows including embedding comparison, validation, and check-in logic.

- Skill: `zerotokenclaw/face-recognition-system` (Agent Skill)
- Install (CLI): `npx skillmds@latest add zerotokenclaw/face-recognition-system`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zerotokenclaw/face-recognition-system/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: ZeroTokenClaw (https://skillmd.com/u/zerotokenclaw)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/zerotokenclaw/face-recognition-system

---


# Face Recognition System

## Instructions

1. Capture face image
2. Generate embedding
3. Compare with stored embeddings
4. Calculate similarity score
5. Apply threshold validation
6. Validate event context
7. Register check-in

## Constraints

- Must respect EventAIConfig
- Must prevent duplicate check-ins
- Must validate active event

## Security

- Never trust client-side matching
- Always validate on server
- Protect embeddings

## Performance

- Limit number of comparisons
- Use indexed embeddings if possible

## Anti-Patterns

- Accepting low confidence matches
- Matching outside event scope
- Ignoring multiple faces

## Example

Face detected → embedding → match → confidence 0.82 → approved.

