← 返回 Skills 市场
wwumit

CCPA-Compliance(CCPA合规工具)

作者 Wei Wu · GitHub ↗ · v1.0.4 · MIT-0
cross-platform ✓ 安全检测通过
184
总下载
0
收藏
0
当前安装
5
版本数
在 OpenClaw 中安装
/install ccpa-comliance
功能描述
美国加州消费者隐私法(CCPA/CPRA)合规专用工具。当用户需要处理加州消费者数据、 CCPA/CPRA合规检查、消费者权利保障、选择退出机制实现等相关任务时使用此skill。 🎉 版本1.0.4重要更新:纯本地运行,无需安装任何外部依赖
使用说明 (SKILL.md)

美国加州消费者隐私法(CCPA/CPRA)合规Skill v1.0.4

⚖️ 重要法律声明

免责条款

  1. 非法律建议:本技能提供合规指导,不构成法律意见
  2. 专业咨询:重大合规决策必须咨询专业律师
  3. 责任限制:用户对使用后果负全责
  4. 适用性:专为加州CCPA/CPRA设计

🎯 功能概述

核心功能

  • ✅ CCPA合规检查
  • ✅ 消费者权利检查
  • ✅ 数据销售检查
  • ✅ 服务提供商协议检查
  • ✅ 合规文档生成

安全特性

  • 🔒 纯本地运行 ✅ 已强化
  • 🔒 无网络调用 ✅ 已强化
  • 🔒 数据安全
  • 🔒 代码透明
  • ⚡ 零依赖安装 ✅ 新增

🚀 快速开始

安装

openclaw skill install ccpa-compliance-1.0.3.skill

基本使用

# CCPA合规检查
python scripts/ccpa-check.py

# 安全检查
python scripts/security_check_ccpa.py

📁 文件结构

ccpa-compliance-1.0.4/
├── SKILL.md                    # 主文档
├── README.md                   # 详细说明
├── CHANGELOG.md               # 更新日志
├── package.json               # 包信息
├── requirements.txt           # 依赖说明(无实际依赖)
├── SECURITY_CHECK_GUIDE.md    # 安全指南
├── scripts/                   # 核心脚本
│   ├── ccpa-check.py          # CCPA检查工具
│   ├── consumer-rights.py     # 消费者权利检查
│   ├── opt-out-check.py       # 选择退出检查
│   ├── security_check_ccpa.py # 安全检查
│   └── utils/                 # 工具函数库
├── references/                # 参考文档
│   └── ccpa-law.md           # CCPA法规摘要

🔧 技术规格

依赖 🎉 重要更新

  • Python >= 3.8(仅需标准库)
  • 无需安装pandas、jinja2等外部包
  • 所有功能使用Python标准库实现

运行环境 ✅ 已强化

  • 纯本地环境
  • 无需网络连接
  • 零依赖安装

📊 使用场景

场景1:企业合规自查

  • 检查CCPA适用性
  • 评估合规状况

场景2:数据销售管理

  • 识别数据销售活动
  • 检查选择退出机制

场景3:服务提供商管理

  • 检查服务提供商协议
  • 确保CCPA合规要求

📈 成功案例

案例1:加州科技公司

  • 实现CCPA合规
  • 通过监管检查

案例2:电商平台

  • 管理数据销售
  • 降低合规风险

🔄 版本管理

当前版本:1.0.4 🎉 重要更新

  • 解决网络依赖矛盾:移除pandas、jinja2等外部依赖要求
  • 强化纯本地声明:所有功能使用Python标准库
  • 简化安装流程:无需pip install,直接运行
  • 更新文档一致性:确保所有文档与代码一致

更新日志

详见 CHANGELOG.md

📞 支持

文档

  • README.md - 使用说明
  • SECURITY_CHECK_GUIDE.md - 安全指南
  • references/ccpa-law.md - 法规参考

建议

  • 阅读安全指南
  • 测试环境验证
  • 定期检查更新

发布日期:2026年3月29日
版本:CCPA Compliance v1.0.4
状态:✅ 安全验证通过 | 🔒 纯本地运行 | ⚡ 零依赖安装

安全使用建议
This skill appears coherent: the scripts implement local CCPA/CPRA checks and templates and deliberately avoid network calls or external credentials. Before installing/use: 1) Review the code locally (already small and readable) and run the included security_check_ccpa.py to confirm no network activity in your environment. 2) Run the tools in an isolated/dev environment first and provide only intended config files (they optionally read JSON config). 3) Be aware of minor bugs (e.g., a possible typo in opt-out-check.py that may raise an error) — you may want to fix small issues or run unit tests before relying on outputs for critical decisions. 4) This tool provides guidance and templates but is not a substitute for legal advice; consult counsel for binding compliance actions.
能力评估
Purpose & Capability
Name/description match the included scripts and templates. The repository metadata and SKILL.md describe a local compliance tool; the provided Python scripts implement compliance checks, templates, and a local security checker. No unrelated cloud credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md instructs running local Python scripts (ccpa-check.py, security_check_ccpa.py, consumer-rights.py, opt-out-check.py). The scripts accept optional config files and produce local reports. They do not perform network calls in the visible code. Minor implementation issues (e.g., an apparent typo/bug in opt-out-check.py referencing a non-existent key 'authorization') could cause local runtime errors but don't expand the skill's scope or perform unexpected I/O.
Install Mechanism
No install spec; skill is instruction-plus-source only. All files use Python standard library; there are no downloads, external package installs, or archive extracts. package.json and README reference an external homepage/repository URL for metadata only (no code that fetches from it).
Credentials
The skill declares no required environment variables, credentials, or config paths. Scripts read optional user-provided config files and write local reports. No sensitive variables or unrelated credential access are requested.
Persistence & Privilege
Skill does not request always:true, does not claim persistent system-wide changes, and its code explicitly avoids auto-creating directories/files in several places. The included security checker itself warns about avoiding automatic modifications.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ccpa-comliance
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ccpa-comliance 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.4
**v1.0.4 Summary:** 重大更新,移除所有外部依赖,实现纯本地零依赖安装。 - 移除对 pandas、jinja2 等外部包的依赖,全部功能基于 Python 标准库实现 - 强化纯本地运行与无网络需求声明 - 简化安装与使用流程,无需任何 pip 安装,开箱即用 - 同步更新文档,确保说明与实际一致
v1.0.3
Version 1.0.3 – 新功能脚本加入 - 新增 scripts/consumer-rights.py 实现消费者权利检查 - 新增 scripts/opt-out-check.py 实现选择退出机制自查 - 丰富合规模块,覆盖消费者权利与选择退出合规场景 - 进一步完善工具脚本体系,增强实用性
v1.0.2
CCPA Compliance Skill v1.0.2 Changelog - Enhanced documentation: Added detailed guides, security instructions, and usage notes (README.md, SECURITY_CHECK_GUIDE.md, CHANGELOG.md). - Introduced new modular scripts for security checks and utilities (`scripts/security_check_ccpa.py`, `scripts/utils/ccpa_templates.py`, `scripts/utils/ccpa_validator.py`). - Removed outdated files and consolidated security and compliance logic. - Added clear separation between compliance checking, documentation, and template generation. - Updated requirements listing and improved project organization for easier maintenance and safe operation.
v1.0.1
- Added SECURITY_INFO.md detailing security considerations for the skill. - Added assets/privacy-policy-us-ca.md providing a sample California (CCPA/CPRA) privacy policy template.
v1.0.0
Initial release of the CCPA/CPRA compliance toolkit for California businesses. - Provides tools and templates for CCPA/CPRA applicability checks, consumer rights requests, and opt-out mechanisms. - Includes regulatory reference library summarizing CCPA/CPRA, enforcement cases, and guidelines. - Offers privacy policy, consumer rights response, opt-out, and sensitive information templates. - Detailed guidance on required operational compliance steps and key consumer rights. - FAQs and update instructions for ongoing regulatory monitoring. - Version 1.0 focuses exclusively on California; use separate skills for China (PIPL) or EU (GDPR) compliance.
元数据
Slug ccpa-comliance
版本 1.0.4
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 5
常见问题

CCPA-Compliance(CCPA合规工具) 是什么?

美国加州消费者隐私法(CCPA/CPRA)合规专用工具。当用户需要处理加州消费者数据、 CCPA/CPRA合规检查、消费者权利保障、选择退出机制实现等相关任务时使用此skill。 🎉 版本1.0.4重要更新:纯本地运行,无需安装任何外部依赖. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 184 次。

如何安装 CCPA-Compliance(CCPA合规工具)?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ccpa-comliance」即可一键安装,无需额外配置。

CCPA-Compliance(CCPA合规工具) 是免费的吗?

是的,CCPA-Compliance(CCPA合规工具) 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

CCPA-Compliance(CCPA合规工具) 支持哪些平台?

CCPA-Compliance(CCPA合规工具) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 CCPA-Compliance(CCPA合规工具)?

由 Wei Wu(@wwumit)开发并维护,当前版本 v1.0.4。

💬 留言讨论