一键导入
human-auth-biometric
Handle biometric authentication delegation (fingerprint, face recognition) when the Agent Phone lacks biometric hardware.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Handle biometric authentication delegation (fingerprint, face recognition) when the Agent Phone lacks biometric hardware.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use OpenPocket MCP tools to inspect or control an Android emulator, physical Android phone, Android TV, or ADB-backed app. Trigger for phone use, Android automation, mobile UI testing, emulator control, physical-device control, app navigation, screenshots, tapping, typing, and requests that should not use desktop computer-use automation.
Use OpenPocket MCP tools to inspect or control an Android emulator, physical Android phone, Android TV, or ADB-backed app. Trigger for phone use, Android automation, mobile UI testing, emulator control, physical-device control, app navigation, screenshots, tapping, typing, and requests that should not use desktop computer-use automation.
Automate X (Twitter) interactions — browsing feed, posting, replying, quoting, reposting, bookmarking, DMs, and profile management. Use when the user asks to use X/Twitter, post a tweet, reply to posts, check notifications, send DMs, or browse their timeline on phone.
Help users complete Duolingo language lessons. Use when the user asks to do Duolingo, practice a language, complete lessons, or needs guidance navigating the Duolingo app on phone.
Edit videos and beautify photos in CapCut on mobile. Use when the user asks to open CapCut, create/edit/export videos, add text/effects/music/captions, use templates, or retouch and enhance photos.
Locate and verify files on Android storage before upload/share, especially latest edited photos or videos.
| name | human-auth-biometric |
| description | Handle biometric authentication delegation (fingerprint, face recognition) when the Agent Phone lacks biometric hardware. |
| metadata | {"openclaw":{"triggers":{"any":["biometric","fingerprint","face id","face recognition","touch id","biometric auth"]}}} |
Use this when an app requires biometric authentication (fingerprint, face recognition) that the emulator cannot provide.
request_human_auth(
capability: "biometric",
instruction: "App requires biometric authentication. Please confirm this action.",
uiTemplate: {
title: "Biometric Confirmation Required",
summary: "The app needs fingerprint/face verification. Approve to confirm."
}
)
status: approved means the human confirmed the biometric action.Biometric prompts on the emulator typically cannot be bypassed programmatically. Options:
Dismiss and retry: Press Back to dismiss the biometric dialog, then look for a "Use password instead" or "Use PIN" fallback option. Enter the fallback credentials.
Emulator fingerprint simulation (if available):
shell("adb -s <device> emu finger touch 1")
This simulates a fingerprint touch on some emulator versions.
If no fallback exists: The flow may be blocked on the emulator. Report this to the user.
emu finger touch 1 can simulate a successful scan.