Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

truclaw-biometric特鲁克劳生物识别

Agent Skill

truclaw-biometric 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,839

周安装

79

GitHub Stars

公开资料未说明

下载量

645
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:truclaw-biometric(特鲁克劳生物识别)
来源仓库:https://github.com/sanjaymk908/truclaw-biometric
安装命令:
openclaw skills install truclaw-biometric
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install truclaw-biometric

简介

为 OpenClaw 提供生物识别防护,拦截高风险操作前需 Face ID 验证。

  • 适用于涉及敏感系统调用的场景,增强代理行为的安全性。truclaw-biometric 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 依赖 TruClaw iOS 应用完成身份认证流程。
  • 使用前请确认设备兼容性以及是否已绑定有效生物识别凭证。
  • 无法绕过物理设备验证,确保运行环境符合安全策略要求。

SKILL.md

name
truclaw
description
Biometric guardrail for OpenClaw. Intercepts dangerous tool calls and requires Face ID verification via TruClaw iOS app before execution. Biometric processing is on-device only. A relay (Cloudflare Worker, source included) handles push delivery and JWT exchange.
metadata
{"openclaw": {"emoji": "🔐", "homepage": "https://github.com/sanjaymk908/trukyc-openclaw", "requires": {"env": ["ANTHROPIC_API_KEY_TRUKYC", "TRUKYC_RELAY_URL"]}, "install": [{"id": "npm", "kind": "node", "package": "openclaw-truclaw", "bins": [], "label": "Install TruClaw plugin (npm)"}]}}

TruClaw — Biometric AI Guardrail

TruClaw stops your OpenClaw agent from executing dangerous actions without verified human authorization. When a sensitive tool call is detected — deleting files, sending messages, running shell commands — TruClaw sends a push notification to your iPhone. Complete Face ID to authorize. Ignore it to block.

Every authorization is backed by a Secure Enclave-signed JWT — hardware attestation that cryptographically proves a live human authorized the action on a specific trusted device. No chat account compromise, no prompt injection, no replay attack can forge this.


Privacy and cloud usage — what runs where

ComponentWhere it runs
Face matching and biometric processingOn-device only — Apple Vision framework
Biometric data (photos, face vectors)Never leaves your iPhone
Danger classification (Claude Haiku)Anthropic API — tool name and args only, no personal data
Push deliveryCloudflare Worker relay + Firebase Messaging — session token only, no personal data
JWT signingiPhone Secure Enclave — key never leaves device
Relay source codeFully open: https://github.com/sanjaymk908/trukyc-openclaw/tree/main/cloudflare-worker

The relay handles two things only: forwarding FCM push notifications to your iPhone, and temporarily storing the signed JWT (auto-deleted after 2 minutes) for the plugin to pick up. It never sees biometric data, photos, or personal information.

You can self-host the relay on your own Cloudflare account using the included source code if you prefer not to use the shared relay endpoint.


Security transparency

  • Plugin source: https://github.com/sanjaymk908/trukyc-openclaw/tree/main/
  • Relay source: https://github.com/sanjaymk908/trukyc-openclaw/tree/main/cloudflare-worker
  • The plugin runs in a privileged before_tool_call hook — review the source before installing
  • The relay domain is trukyc-relay.trusources.workers.dev (Cloudflare Workers, owned by plugin author)
  • Self-hosting the relay is supported and documented in the README

Requirements

  • OpenClaw 3.28+
  • TruClaw iOS app (search "TruClaw" on App Store)
  • Anthropic API key (for Claude Haiku danger classification — tool names and args only)
  • TRUKYC_RELAY_URL (default shared relay provided, self-hosting supported)

Setup (3 steps)

Step 1 — Install TruClaw iOS app

Search "TruClaw" on the App Store. Complete one-time enrollment:

  • Take a selfie
  • Scan your Driver's License or Passport
  • Green badge confirms successful enrollment

Your biometric profile is stored encrypted in your iPhone Secure Enclave. No photos or biometric data leave your device at any point.

Step 2 — Install and configure plugin

git clone https://github.com/sanjaymk908/trukyc-openclaw.git mv trukyc-openclaw truclaw cd truclaw npm install && npm run build

Add to ~/.openclaw/openclaw.json plugins section: "plugins": { "load": { "paths": ["/path/to/truclaw"] }, "entries": { "truclaw": { "enabled": true, "config": {} } } }

Add env vars: "env": { "TRUKYC_RELAY_URL": "https://trukyc-relay.trusources.workers.dev", "ANTHROPIC_API_KEY_TRUKYC": "your-anthropic-api-key" }

Restart OpenClaw: openclaw gateway stop && sleep 3 && openclaw gateway install && sleep 5 openclaw plugins list | grep trukyc

Step 3 — Pair your iPhone

Run in any OpenClaw channel: /trukyc-pair

A QR code appears. Scan it with the TruClaw iOS app. Done.


How it works

  1. OpenClaw Agent detects a tool call
  2. TruClaw Plugin intercepts via before_tool_call hook
  3. Claude Haiku classifies the tool call as safe or dangerous
  4. If dangerous: TruClaw Relay sends push notification via Firebase Messaging
  5. TruClaw iOS App receives notification on your iPhone
  6. User completes Face ID biometric match
  7. iPhone Secure Enclave signs authorization JWT — hardware-bound, tamper-proof
  8. Plugin polls relay, receives and verifies JWT
  9. isAbove21=true → action proceeds / isAbove21=false → action blocked

TruClaw vs native OpenClaw approval

OpenClaw /approveTruClaw Biometric
Authorization methodText command in chatFace ID on iPhone
Proof of humanNoneSecure Enclave hardware attestation
SpoofableYes — compromised account approvesNo — requires physical device + live biometric
Audit trailChat messageSigned JWT with timestamp and device ID
Enterprise complianceNo cryptographic proofHardware-attested human proof

What gets flagged as dangerous

  • Shell commands that write, delete, or modify (rm, mv, cp)
  • Network requests that send data (curl POST, wget)
  • Installing software (pip install, npm install)
  • Sending messages or emails
  • Financial operations, killing processes, modifying permissions

What passes through safely

  • Read-only shell commands (ls, cat, grep, find)
  • Querying data or answering questions
  • Git read operations (git status, git log, git diff)
  • Explicitly safe tools: read, ls, list, session_status, memory_search

Self-hosting the relay

If you prefer not to use the shared relay endpoint, deploy your own: cd trukyc-openclaw/cloudflare-worker wrangler deploy worker.js

Then update TRUKYC_RELAY_URL in openclaw.json to your own worker URL. Full instructions: https://github.com/sanjaymk908/trukyc-openclaw/tree/main/cloudflare-worker

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.77%
按下载量换算469

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills