cheat-on-content
给所有想把"感觉"变成可校准预测的内容创作者。**方法论通用**——打分 → 盲预测 → T+3d 复盘 → 进化 rubric 的循环适用任何能被量化(播放 / 阅读 / 收听 / 点击)的内容。**rubric 是循环的内容,不是循环本身**——当前内置一份观点视频 rubric(参考博主 25+…
Use when building apps that collect user data. Ensures privacy protections are built in from the start—data minimization, consent, encryption.
$ npx -y skills add LiHongwei-cn/lihongwei-cn --skill privacy-by-design --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/privacy-by-designContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when building apps that collect user data. Ensures privacy protections are built in from the start—data minimization, consent, encryption.
name: privacy-by-design description: "Use when building apps that collect user data. Ensures privacy protections are built in from the start—data minimization, consent, encryption." risk: safe source: community date_added: "2026-02-23"
Integrate privacy protections into software architecture from the beginning, not as an afterthought. This skill applies Privacy by Design principles (GDPR Article 25, Cavoukian's framework) when designing databases, APIs, and user flows. Protects real users' data and builds trust.
**GDPR (EU)** — Primary reference. Article 25 mandates "data protection by design and by default." Applies to EU users and often adopted globally.
**CCPA (California)** — Right to know, delete, opt-out of sale. Similar principles: minimize, disclose, allow control.
**LGPD (Brazil)** — Aligned with GDPR. Purpose limitation, necessity, transparency. Applies to Brazil users.
Design for the strictest framework you target; it often satisfies others.
---
Collect only what is strictly necessary. Every field needs a documented justification. Avoid "we might need it later."
Store the purpose of each data point. Do not reuse data for purposes the user did not consent to.
Define retention periods. Implement automated deletion or anonymization when retention expires. Never keep data "forever" by default.
Opt-in for optional collection, not opt-out. Sensitive settings (analytics, marketing) off by default. No pre-checked consent boxes.
Encrypt at rest and in transit. Use RBAC. Log access to sensitive data for audit.
Document what is collected and why. Clear privacy policies. Easy access and deletion for users.
---
Ensure these are implementable from day one:
| Right | What to build | |-------|---------------| | **Access** | Endpoint or flow to return all user data | | **Rectification** | Ability to update/correct data | | **Erasure** | Account deletion + data purge (including backups) | | **Portability** | Export data in machine-readable format (JSON, CSV) |
---
**Data minimization** — Less data = less breach impact, lower storage cost, simpler compliance. Each field is a liability.
**Purpose limitation** — Reusing data without consent is illegal under GDPR. Document purpose in schema or metadata.
**Retention** — Indefinite storage increases risk and violates GDPR. Define `retention_days` per data type; automate cleanup.
**Logging** — Logs often leak PII. Redact emails, IDs, tokens. Use structured logging with allowlists.
**Third parties** — Every SDK (analytics, crash reporting, ads) may send data elsewhere. Audit dependencies; require consent before loading.
---
// BAD: Collecting everything "just in case"
const user = { email, name, phone, address, birthdate, ipAddress, userAgent, ... };
// GOOD: Minimal, documented purpose
const user = {
email, // purpose: authentication
displayName, // purpose: UI display
createdAt, // purpose: account age
};// BAD: Track first, ask later
analytics.track(userId, event);
// GOOD: Check consent first
if (userConsent.analytics) {
analytics.track(userId, event);
}# BAD: Logging PII in plain text
logger.info(f"User {user.email} logged in from {request.remote_addr}")
# GOOD: Redact or hash identifiers
logger.info(f"User {hash_user_id(user.id)} logged in")
# Or: logger.info("User login", extra={"user_id_hash": hash_id(user.id)})-- GOOD: Document purpose and retention in schema CREATE TABLE users ( id UUID PRIMARY KEY, email VARCHAR(255) NOT NULL, -- purpose: auth, retention: account lifetime display_name VARCHAR(100), -- purpose: UI, retention: account lifetime created_at TIMESTAMPTZ, -- purpose: audit, retention: 7 years last_login_at TIMESTAMPTZ -- purpose: security, retention: 90 days ); -- Add retention policy (PostgreSQL example) -- Schedule job to anonymize/delete last_login_at after 90 days
# BAD: Returning full user object
return jsonify(user) # May include internal fields, hashed passwords
# GOOD: Explicit allowlist
return jsonify({
"id": user.id,
"email": user.email,
"displayName": user.display_name,
})---
| Pitfall | Solution | |---------|----------| | Logs contain emails, IPs, tokens | Redact PII; use hashed IDs or structured logs | | Error messages expose data | Return generic errors to client; log details server-side | | Third-party SDKs load before consent | Load analytics/ads only after consent; use consent management | | No deletion flow | Design account deletion + data purge from day one | | Backups keep data forever | Include backups in retention; encrypt backups | | Cookies without consent | Use consent banner; respect Do Not Track where applicable |
---
Before adding a dependency that touches user data:
---
When building a feature that tou
MUNDO - THE EMPEROR. Complete AI orchestration system with 1208 skills, 25 capability modules, self-evolving, collective consciousness. GitHub Actions 24/7 automation.
Repo: LiHongwei-cn/lihongwei-cn
给所有想把"感觉"变成可校准预测的内容创作者。**方法论通用**——打分 → 盲预测 → T+3d 复盘 → 进化 rubric 的循环适用任何能被量化(播放 / 阅读 / 收听 / 点击)的内容。**rubric 是循环的内容,不是循环本身**——当前内置一份观点视频 rubric(参考博主 25+…
提议并执行 rubric 或 bucket 升级。两种模式:**完整 rubric bump**(最高风险动作,5 步强制 + 跨模型审核)和 **--bucket-only 轻量重校**(只换 bucket 边界,不动 rubric 公式)。**Phase 2 强制走 cheat-score-blind…
cheat-on-content 的首次 onboarding 与脚手架创建器。统一流程——所有用户都走相同 5 阶段闭环,唯一区别是"发过视频的人"会在 init 时多一步:抓取已有视频建立历史 context(用于后续 cheat-seed 给更贴合的选题、更准的…
从对标账号导入 script + 数据 → 拆 pattern + 派生 base rubric 信号 → 写到 benchmark.md / script_patterns.md / rubric_notes.md。**这是工具最早期信号的来源**——cold-start…
把老用户的 .cheat-state.json 升级到当前 schema_version。读 migrations/registry.md 算迁移链,按顺序应用每一步迁移文件。幂等:跑两次结果一样。失败停在中间版本不前进。触发词:"迁移"/"升级 state"/"migrate"/"我的 state…
从复盘评论数据派生 / 刷新账号的受众画像,写入 audience.md。这是和 rubric 平行的第二个派生物——rubric 答"怎么打分",persona 答"谁在看"。cheat-seed 选题 / 写稿时读它。**audience.md 含实绩信号,cheat-score-blind…