Install
openclaw skills install @wwumit/ccpa-checkCCPA/CPRA Compliance Check — based on the California Consumer Privacy Act (CCPA) and the CPRA amendment, covers 12 core compliance checks for businesses subject to California privacy law. Free to install; scoring runs on the CQDev cloud compliance engine (free API Key, 100 free calls).
openclaw skills install @wwumit/ccpa-checkCCPA Check is a free compliance self-check for businesses subject to the California Consumer Privacy Act (CCPA) and the CPRA amendment. It covers 12 core checks across applicability, consumer rights, opt-out, service providers, records, and security. Scoring runs on the CQDev cloud compliance engine.
⚠️ Your answers leave this machine. When you run a scored check, your responses to the 12 compliance questions are transmitted to the CQDev cloud at
compliancehub.cnfor scoring. Those answers can cover sensitive details — consumer-data practices, service providers, security controls, and legal exposure. Only proceed if you are comfortable sending them tocompliancehub.cn. Run--non-interactivefor a fully offline preview that never contacts the cloud.
| # | Check | Authority |
|---|---|---|
| 1 | Business Applicability | CCPA §1798.140(d) |
| 2 | Privacy Notice at Collection | CCPA §1798.100(b) |
| 3 | Consumer Rights Fulfillment | CCPA §1798.100/105/106 |
| 4 | Identity Verification | CCPA §1798.145(i) |
| 5 | Response Timeliness | CCPA §1798.130(a)(2) |
| 6 | Non-Discrimination | CCPA §1798.125 |
| 7 | Right to Opt-Out | CCPA §1798.120 |
| 8 | Sensitive PI Handling | CPRA §1798.121 |
| 9 | Sale/Sharing of PI | CCPA §1798.140(t)/115 |
| 10 | Service Provider Contracts | CCPA §1798.140(ag) |
| 11 | Record Keeping | CCPA §1798.130(a) |
| 12 | Reasonable Security | CCPA §1798.81.5 |
python3 scripts/ccpa-check.py --non-interactive
python3 scripts/ccpa-check.py --login
# enter email + password → Key auto-written to ~/.config/compliancehub/ccpa-check.key (mode 0600)
Or open: https://compliancehub.cn/account.html?skill=ccpa-check
python3 scripts/ccpa-check.py --format html -o ccpa-report.html
Answer 12 yes/no questions; the cloud scores and returns an HTML report.
When a user asks for a CCPA/CPRA compliance check:
--non-interactive to preview the 12 items (no Key needed).--login or the
account page), then run the full check.https://compliancehub.cn (the operator's official endpoint,
pinned in code and not overridable by environment variable). Scoring transmits only your
item answers and the free API Key (as a Bearer token); no documents or other PII are sent.--login (an explicit user action), to a private, per-user file
~/.config/compliancehub/ccpa-check.key with 0600 permissions — outside this skill
folder, so it is never committed to source control or shared with the workspace. You can also
pass it via the COMPLIANCEHUB_API_KEY environment variable (recommended for CI/shared hosts).urllib, json, ssl, getpass). It does not spawn a shell, does not run
arbitrary OS commands, and does not execute external binaries.~/.config/compliancehub/ is ordinary
API-key persistence for your convenience — not agent installation, not auto-start, and not
self-modification. The skill does nothing unless you invoke it from the terminal.--non-interactive lists the 12 items and never contacts the cloud.compliancehub.cn before running a scored check.This tool provides general compliance guidance only and is not legal advice. Consult qualified counsel for formal opinions. Laws change; verify against official sources.
MIT.