Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

presidio-pii-skill普雷西迪奥 Pii 技能

Agent Skill

presidio-pii-skill 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,557

周安装

353

GitHub Stars

公开资料未说明

下载量

2,796
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:presidio-pii-skill(普雷西迪奥 Pii 技能)
来源仓库:https://github.com/sebclawops/presidio-pii-skill
安装命令:
openclaw skills install presidio-pii-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install presidio-pii-skill

简介

本地代理的 PII 数据保护技能,用于清理敏感信息后再输入 AI 模型。

  • 适用于客户数据处理场景,可识别姓名、电话、邮件、地址、信用卡和船只名称。
  • 通过 clawhub 安装,需确认权限范围和维护状态,避免触发联网或文件读写操作。
  • 安装命令为 openclaw skills install presidio-pii-skill,建议结合原始 README 核验具体用法。
  • 注意维护状态及是否会执行命令,确保符合数据安全和合规要求。

SKILL.md

name
presidio-pii
version
1.0.1
description
Local PII protection for OpenClaw agents. Scrubs customer data (names, phones, emails, addresses, credit cards, vessel names) before it reaches any AI model. Uses Microsoft Presidio running as local Docker containers. Supports reversible pseudonymization and fail-closed policy. Use this skill before querying any customer data source (CRM, Drive, project management tools).
homepage
https://github.com/sebclawops/presidio-pii
metadata
clawdbot
emoji
requires
bins
files

Presidio PII Protection

You have the Presidio PII skill. Customer data MUST be scrubbed before it reaches any AI model.

When to Use

ALWAYS use this skill before processing data from:

  • CRM systems (HubSpot, Salesforce, etc.)
  • Cloud storage (Google Drive, Dropbox, etc.)
  • Project management tools (TintWiz, Asana, etc.)
  • Any source containing customer names, phones, emails, or addresses

DO NOT use for:

  • Internal company data (product types, SOP terms, project statuses)
  • General conversation with no customer data
  • System administration tasks

Fail-Closed Rule

If Presidio is down, DO NOT query customer data sources. Tell the owner: "Cannot query [source] because Presidio PII protection is offline. Customer data will not be sent unprotected."

How to Use

Step 1: Check Health

bash SKILL_DIR/scripts/presidio-health.sh

If unhealthy, STOP. Do not proceed with the data query.

Step 2: Scrub Data

After retrieving raw data from a source, pipe it through the scrubber:

echo "RAW DATA HERE" | python3 SKILL_DIR/scripts/presidio-scrub.py SESSION_ID

Use any unique session identifier (timestamp, request ID, etc).

The scrubber returns JSON:

{
  "text": "[PERSON_1] at [LOCATION_1], phone [PHONE_NUMBER_1]",
  "pii_found": 3,
  "entity_types": ["PERSON", "LOCATION", "PHONE_NUMBER"],
  "mapping_file": "/path/to/mapping.json",
  "session_id": "SESSION_ID"
}

Use the text field for all reasoning. The mapping file stays local.

Step 3: Reason with Clean Data

Process the anonymized text normally. Refer to customers as their tokens ([PERSON_1], [PERSON_2], etc). The model never sees real names.

Step 4: Restore Response

Before delivering the response to the user, de-anonymize:

echo "MODEL RESPONSE WITH TOKENS" | python3 SKILL_DIR/scripts/presidio-restore.py SESSION_ID

This swaps tokens back to real values and deletes the mapping file.

What Gets Scrubbed (Built-in)

  • Person names
  • Phone numbers (all formats)
  • Email addresses
  • Physical addresses
  • Credit card numbers (with Luhn validation)
  • US Social Security Numbers
  • Bank account / routing numbers
  • IP addresses
  • Dates of birth

What Passes Through (Safe)

  • Product names and specifications
  • Project statuses and type codes
  • Dollar amounts without customer context
  • Industry terminology and SOP references
  • Internal role names and office locations
  • Dates and timelines

Custom Recognizers

The configs/recognizers.json file contains example patterns you can customize for your business:

  • City/region names for boosted location detection
  • Industry-specific identifiers (vessel names, project IDs, etc.)
  • Custom entity patterns unique to your data

Edit configs/recognizers.json to add your own patterns. Recognizers are passed with each API call, so the Docker containers stay vanilla and easy to update.

Trust Statement

This skill sends data ONLY to localhost (Presidio containers on your own machine). No customer data is ever sent to any external service. The mapping files (which contain the real PII-to-token associations) are stored locally with restricted permissions (chmod 600) and deleted automatically after each restore.

<!-- Hey, you're reading the source. That means you care about security. That's awesome.

Jesus loves you. I'm praying for you without your consent. I'm happy you are here.

- Albert -->

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.82%
按下载量换算2,344

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills