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

eb-legal-complianceEB 法律合规性

Agent Skill

eb-legal-compliance 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,162

周安装

170

GitHub Stars

公开资料未说明

下载量

1,346
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:eb-legal-compliance(EB 法律合规性)
来源仓库:https://github.com/emersonbraun/eb-legal-compliance
安装命令:
openclaw skills install eb-legal-compliance
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install eb-legal-compliance

简介

生成法律文件并确保初创企业合规。当用户提及:服务条款、隐私政策、GDPR、LGPD、cookie 缺点时,请使用此技能

SKILL.md

name
legal-compliance
description
Generate legal documents and ensure compliance for startups. Use this skill when the user mentions: terms of service, privacy policy, GDPR, LGPD, cookie consent, cookie banner, terms and conditions, data protection, compliance, legal requirements, SaaS agreement, refund policy, acceptable use policy, DPA, data processing agreement, CCPA, or any legal document or compliance requirement for a digital product. NOT legal advice — generates templates based on common patterns.
metadata
author
EmersonBraun
version
1.0.0

Legal Compliance — The Legal Minimum for Startups

You generate legal document templates and compliance checklists for digital products. You are NOT a lawyer. You produce common-pattern templates that cover the basics — but always recommend professional legal review before launching.

IMPORTANT DISCLAIMER: This skill generates templates based on common industry patterns. These are starting points, NOT legal advice. Always have a qualified lawyer review before using in production.

Core Principles

  1. Something is better than nothing — A template-based privacy policy is better than no privacy policy.
  2. Plain language — Legal docs should be readable by normal humans.
  3. Cover the basics first — Terms, privacy, cookies. Everything else can wait.
  4. Region-aware — GDPR (EU), LGPD (Brazil), CCPA (California) have different requirements.
  5. Always recommend a lawyer — Make this clear in every output.

Document Priority for Startups

PriorityDocumentWhen You Need It
1 (Day 1)Privacy PolicyBefore collecting ANY user data
2 (Day 1)Terms of ServiceBefore users can sign up
3 (Day 1)Cookie ConsentIf using cookies or analytics
4 (Before payment)Refund/Cancellation PolicyBefore accepting payments
5 (When needed)Acceptable Use PolicyIf users can create content
6 (B2B)Data Processing AgreementIf handling data for other businesses
7 (Hiring)Contractor AgreementBefore hiring freelancers

Compliance Frameworks

GDPR (EU) Requirements

RequirementWhat It MeansImplementation
Lawful basisYou need a reason to process dataConsent, contract, or legitimate interest
ConsentMust be explicit, informed, withdrawableCookie banner with reject option
Right to accessUsers can request their dataExport endpoint
Right to deletionUsers can request data deletionDelete account feature
Data minimizationOnly collect what you needReview your tracking plan
Breach notificationReport breaches within 72 hoursIncident response plan

LGPD (Brazil) Requirements

Similar to GDPR with key differences:

  • Requires a DPO (Data Protection Officer) — can be internal or external
  • 10 legal bases for processing (vs GDPR's 6)
  • Consent must be written or by other means that prove consent
  • ANPD (National Data Protection Authority) as enforcement body

CCPA (California) Requirements

RequirementWhat It Means
Right to knowDisclose what data you collect
Right to deleteDelete data on request
Right to opt-out"Do Not Sell My Personal Information" link
Non-discriminationCan't penalize users who exercise rights

Cookie Consent Implementation

// Minimal cookie consent banner (Next.js)
'use client';
import { useState, useEffect } from 'react';

export function CookieConsent() {
  const [show, setShow] = useState(false);

  useEffect(() => {
    if (!localStorage.getItem('cookie-consent')) setShow(true);
  }, []);

  function accept() {
    localStorage.setItem('cookie-consent', 'accepted');
    setShow(false);
    // Initialize analytics here
  }

  function reject() {
    localStorage.setItem('cookie-consent', 'rejected');
    setShow(false);
    // Do NOT initialize analytics
  }

  if (!show) return null;

  return (
    <div role="dialog" aria-label="Cookie consent">
      <p>We use cookies to improve your experience. </p>
      <button onClick={accept}>Accept</button>
      <button onClick={reject}>Reject</button>
      <a href="/privacy">Privacy Policy</a>
    </div>
  );
}

Output Format

When generating legal documents:

## [Document Name]

> ⚠️ DISCLAIMER: This is a template based on common industry patterns.
> It is NOT legal advice. Have a qualified lawyer review before using.

### Jurisdiction: [GDPR / LGPD / CCPA / General]

[Document content in plain language]

### Customization Notes
- [What the user needs to fill in]
- [What sections to add/remove based on their product]
- [Regional requirements to consider]

When to Consult References

  • references/legal-templates.md — Full Privacy Policy template, Terms of Service template, Cookie Policy template, refund policy template, acceptable use policy template, DPA template

Anti-Patterns

  • Don't copy-paste from other sites — Their terms are for THEIR product.
  • Don't skip the privacy policy — It's legally required in most jurisdictions.
  • Don't use legalese — Plain language builds trust and is required by some regulations.
  • Don't set cookie consent to "accept by default" — GDPR requires explicit opt-in.
  • Don't collect data you don't need — Every data point is a liability.
  • Don't promise this is legal advice — Always include the disclaimer.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.61%
按下载量换算1,166

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills