← Back to Skills Marketplace
wwumit

CCPA-Compliance(CCPA合规工具)

by Wei Wu · GitHub ↗ · v1.0.4 · MIT-0
cross-platform ✓ Security Clean
184
Downloads
0
Stars
0
Active Installs
5
Versions
Install in OpenClaw
/install ccpa-comliance
Description
美国加州消费者隐私法(CCPA/CPRA)合规专用工具。当用户需要处理加州消费者数据、 CCPA/CPRA合规检查、消费者权利保障、选择退出机制实现等相关任务时使用此skill。 🎉 版本1.0.4重要更新:纯本地运行,无需安装任何外部依赖
README (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
状态:✅ 安全验证通过 | 🔒 纯本地运行 | ⚡ 零依赖安装

Usage Guidance
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ccpa-comliance
  3. After installation, invoke the skill by name or use /ccpa-comliance
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug ccpa-comliance
Version 1.0.4
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 5
Frequently Asked Questions

What is CCPA-Compliance(CCPA合规工具)?

美国加州消费者隐私法(CCPA/CPRA)合规专用工具。当用户需要处理加州消费者数据、 CCPA/CPRA合规检查、消费者权利保障、选择退出机制实现等相关任务时使用此skill。 🎉 版本1.0.4重要更新:纯本地运行,无需安装任何外部依赖. It is an AI Agent Skill for Claude Code / OpenClaw, with 184 downloads so far.

How do I install CCPA-Compliance(CCPA合规工具)?

Run "/install ccpa-comliance" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is CCPA-Compliance(CCPA合规工具) free?

Yes, CCPA-Compliance(CCPA合规工具) is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does CCPA-Compliance(CCPA合规工具) support?

CCPA-Compliance(CCPA合规工具) is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created CCPA-Compliance(CCPA合规工具)?

It is built and maintained by Wei Wu (@wwumit); the current version is v1.0.4.

💬 Comments