face-enroll

face-enroll is a skill for Claude Code, Codex from autonomous-ai/autonomous-os. It costs 0 tokens per session (1,328 once invoked), scanned A, original, Apache-2.0.

A skill for managing the device's face-recognition list, which stores people the device has been taught to recognize.

In plain words
What is it for?
It helps enroll a person from a photo or camera capture, review recognized people, forget a face, reset the list, and decide whether to remember a repeatedly seen stranger.
Why use it?
It provides a way to add known people and manage the list, so recognized friends can be distinguished from unfamiliar faces.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps enroll a person from a photo or camera capture, review recognized people, forget a face, reset the list, and decide whether to remember a repeatedly seen stranger.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/autonomous-ai/autonomous-os/face-enroll
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.

Any agent
npx skills add autonomous-ai/autonomous-os --skill face-enroll
Clone the repo
git clone --depth 1 https://github.com/autonomous-ai/autonomous-os

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for face-enroll

README.md
[![agentmods](https://agentmods.dev/badge/skills/autonomous-ai/autonomous-os/face-enroll/github.svg)](https://agentmods.dev/skills/autonomous-ai/autonomous-os/face-enroll)
Your own site
<a href="https://agentmods.dev/skills/autonomous-ai/autonomous-os/face-enroll"><img src="https://agentmods.dev/badge/skills/autonomous-ai/autonomous-os/face-enroll/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for face-enroll

Your own site · 80×15
<a href="https://agentmods.dev/skills/autonomous-ai/autonomous-os/face-enroll"><img src="https://agentmods.dev/badge/skills/autonomous-ai/autonomous-os/face-enroll.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,328 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 44
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
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.1 $0.00000 $0.01328
Opus 5 $0.00000 $0.00664
Sonnet 5 $0.00000 $0.00266
Haiku 4.5 $0.00000 $0.00133

Measured 9d ago against content hash 445c65ed496a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

face-enroll scanned grade A 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 9d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

## Tools (curl reference)
skills/face-enroll/SKILL.md · 83 lines

How it starts

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

Face Enroll

Manage faces for the device's face recognition system. Faces live under /root/local/users/<label>/. All enrolled persons are treated as friends — distinguished from stranger_* IDs the camera hasn't been told about yet.

Flow router — pick ONE per user message

Flow When Detail
A — Self-enroll with a photo User sends a photo of themselves + intro ("remember my face", "this is me"). reference/self-enroll-photo.md
B — Self-enroll via camera capture User asks to be remembered without sending a photo, on voice or Telegram text (assumes user is near the device). Examples: "remember my face", "I'm Gray", "capture and enroll me". Web chat without a photo → ask for a selfie (Flow A) instead. reference/self-enroll-camera.md
C — Familiar-stranger prompt Current sensing message contains HAL's hint (familiar stranger ... — seen N times, ask user if they want to remember this face; image saved at <path>), OR the user is replying to your previous prompt about that stranger. reference/familiar-stranger.md
M — Maintenance "who do you recognize?", "forget my face", "reset faces". reference/maintenance.md

Disambiguation hints:

  • Photo attached (mediaPaths / [image: ...]) → Flow A.
  • No photo + HAL familiar-stranger hint in current message → Flow C.
  • No photo + no hint, user wants to be remembered → Flow B.
  • The user is naming a face you previously asked about (Flow C in progress) → continue Flow C.
  • Pure read/delete intent → Flow M.

Common rules (apply across all enroll flows)

  • Self-enrollment only. The person being enrolled must be the one identifying themselves: sender of the message in Flows A/B, the camera-person responding to the prompt in Flow C. Refuse third-party enrollment ("add my friend Bob").
  • Confirm the name out loud before enrolling — Flows B and C only.
    • Flow A: the user's own photo + intro IS the confirmation; don't ask redundantly.
    • Flow B: read the name back in the same turn you snapshot ("Got it, saving you as Gray — hold still").
    • Flow C: address the camera-person directly — "mind if I remember you? what's your name?" — and wait for the reply before calling /face/enroll.
  • Always confirm enrollment afterwards — tell the user the name was registered once /face/enroll returns ok.
  • Use lowercase labels — normalize names to lowercase. Use the SAME label as speaker-recognizer for the same person so /root/local/users/<label>/ is shared.
  • Telegram identity rules:
    • Flow A (photo on Telegram): include telegram_username + telegram_id (required for DM targeting).
    • Flow A (photo on web chat): omit Telegram fields.
    • Flow B (voice): omit. Flow B (Telegram text): include.
    • Flow C: always omit — the camera-person isn't on Telegram (any Telegram metadata in context belongs to someone else, e.g. the owner overhearing).
  • One photo per /face/enroll call. Multiple photos → call once per photo.
  • Never write files directly to /root/local/users/. Always go through the HTTP API.
  • Don't expose technical details — say "I'll remember your face" not "base64-encoding the JPEG".

Read the full file on GitHub · 83 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 83 lines · 0 tokens per session scan A 445c65ed496a

Subscribe to this mod's changes

face-enroll is a skill published in the GitHub repository autonomous-ai/autonomous-os (286 stars, last pushed today), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,328 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

rosclaw-embodied

A set of rules for completing robot tasks in ROSClaw, a system for running and checking robot work. It covers approved robot files, acceptance evidence, and separate rules for simulation and real hardware.

ros-claw/rosclaw · 54 tokens

bambu-labs

Dry-run, upload, and cautiously initiate local Bambu Lab print jobs from validated plain .gcode, using Bambu LAN FTPS/MQTT handoffs.

earthtojake/text-to-cad · 38 tokens

cad-viewer

Start CAD Viewer and return review links for CAD and robot-description files. Use when visually reviewing .step, .stp, .glb, .stl, .3mf, .dxf, .urdf, .srdf, or .sdf files, especially when handed off from CAD, URDF, SRDF, or SDF generation skills.

earthtojake/text-to-cad · 79 tokens

srdf

MoveIt2 SRDF authoring, validation, and planning-semantics workflow. Use when creating, editing, inspecting, or validating .srdf files, MoveIt planning groups, virtual joints, passive joints, end effectors, group states, disabled collisions, URDF-paired planning semantics, or SRDF handoff for live review. Use the URDF…

earthtojake/text-to-cad · 103 tokens

urdf

URDF robot description authoring and validation. Use when creating, editing, inspecting, validating, or debugging .urdf files, robot links, joints, limits, inertials, visual/collision geometry, mesh references, frame conventions, or robot-description artifacts. Use the SRDF skill for MoveIt2 semantic groups and…

earthtojake/text-to-cad · 92 tokens

gcode

Generate, inspect, dry-run, and statically validate plain FDM .gcode from 3D mesh files by orchestrating real slicer CLIs. Use when Codex needs to slice .stl, .obj, unsliced .3mf, .ply, .glb, or .gltf into printer-profiled G-code, discover local slicer backends, inspect whether a mesh is slice-ready, or validate…

earthtojake/text-to-cad · 102 tokens