Terms of Service Generator
Overview
Scans a website or application to understand the business model, user interactions,
data collection practices, and third-party integrations, then generates a comprehensive
terms of service document with 16 sections. Includes GDPR and CCPA compliance provisions,
plain English summaries after each section, and [VERIFY] tags for assumptions that
require human confirmation.
The generated ToS adapts its language and provisions based on the detected business type
(e-commerce, SaaS, marketplace, content platform, mobile app, etc.).
Legal Disclaimer: This skill generates template documents for informational and
educational purposes only. Generated terms of service are not a substitute for legal
advice. All documents should be reviewed by a licensed attorney before publication.
Regulatory requirements vary by jurisdiction and business type. No attorney-client
relationship is created by using this tool.
Prerequisites
- A live website URL or local codebase to analyze
- Knowledge of the business entity name and jurisdiction
- Understanding of whether the service involves payments, user accounts, or user-generated content
Instructions
Analyze the website or application. Use WebFetch to scan the target URL. Identify:
- Business type (SaaS, e-commerce, marketplace, content, API, mobile app)
- User interaction patterns (accounts, purchases, subscriptions, content uploads)
- Data collection mechanisms (forms, cookies, analytics scripts, payment processors)
- Third-party integrations (Stripe, Google Analytics, social login, CDNs)
- Geographic indicators (language, currency, server location)
If a codebase is available instead, use Glob and Read to scan for:
- Cookie/tracking implementations
- Authentication flows
- Payment integrations
- User data models
- API endpoints that accept user input
Gather business details from the user:
- Legal entity name and type (LLC, Corp, sole proprietor)
- Business address and jurisdiction
- Contact email for legal notices
- Minimum user age requirement
- Whether the service is free, paid, or freemium
Determine applicable compliance frameworks:
- GDPR — if serving EU/EEA users (detected via language, .eu domain, Euro pricing)
- CCPA/CPRA — if serving California users or meeting revenue/data thresholds
- COPPA — if the service could attract users under 13
- ADA/WCAG — if a US-based public-facing service
- PCI-DSS — if processing payment card data
- CAN-SPAM — if sending marketing emails
Generate the 16-section Terms of Service:
| # |
Section |
Covers |
| 1 |
Agreement to Terms |
Acceptance mechanism, effective date |
| 2 |
Description of Service |
What the service provides |
| 3 |
User Accounts |
Registration, security, age requirements |
| 4 |
Acceptable Use Policy |
Prohibited conduct, content standards |
| 5 |
User-Generated Content |
Ownership, licenses, moderation rights |
| 6 |
Intellectual Property |
Company IP rights, trademarks, DMCA |
| 7 |
Payment Terms |
Pricing, billing cycles, refunds (if applicable) |
| 8 |
Free Trials & Subscriptions |
Trial terms, auto-renewal, cancellation |
| 9 |
Privacy & Data Collection |
Reference to privacy policy, GDPR/CCPA summary |
| 10 |
Third-Party Services |
Links, integrations, disclaimers |
| 11 |
Disclaimers & Warranties |
"As-is" provision, warranty limitations |
| 12 |
Limitation of Liability |
Liability caps, excluded damages |
| 13 |
Indemnification |
User indemnification obligations |
| 14 |
Termination |
Grounds, notice, effect of termination |
| 15 |
Governing Law & Disputes |
Jurisdiction, arbitration, class action waiver |
| 16 |
General Provisions |
Modifications, severability, entire agreement, contact |
Add plain English summaries. After each section, include a blockquote:
> **In Plain English:** {simple summary of what this means for users}
Insert compliance-specific provisions:
- GDPR: Data processing legal basis, right to erasure, DPO contact, data portability
- CCPA: "Do Not Sell My Personal Information" rights, opt-out mechanism
- COPPA: Age verification, parental consent mechanism
Tag all assumptions. Place [VERIFY] before any clause based on inferred information:
[VERIFY: assumed SaaS model based on subscription pricing detected]
[VERIFY: jurisdiction set to Delaware — confirm with business owner]
[VERIFY: assumed no users under 13 — confirm age policy]
Write the output file using the naming convention below.
Output
Generate a single Markdown file named TERMS-OF-SERVICE-{company}-{YYYY-MM-DD}.md with:
# Terms of Service
**{Company Name}**
**Last Updated:** {date}
**Effective Date:** {date}
---
## Table of Contents
1. [Agreement to Terms](#1-agreement-to-terms)
{... all 16 sections ...}
---
## 1. Agreement to Terms
{formal legal text}
> **In Plain English:** {simple explanation}
## 2. Description of Service
{formal legal text}
> **In Plain English:** {simple explanation}
{... sections 3-16 ...}
---
## Contact Information
{business contact details}
---
**[VERIFY] Tags Summary:**
{numbered list of all assumptions needing confirmation}
**Compliance Frameworks Applied:** {GDPR, CCPA, etc.}
**Generated by:** Legal Assistant Plugin — Not a substitute for legal counsel.
Error Handling
| Error |
Cause |
Solution |
| Website unreachable |
URL is down or behind auth |
Ask user for a description of the service or local codebase path |
| Cannot determine business type |
Minimal website content |
Ask user directly about their business model |
| Payment detection ambiguous |
Cannot tell if free or paid |
Ask user to confirm pricing model |
| International complexity |
Multiple jurisdictions detected |
Generate provisions for all detected jurisdictions, add [VERIFY] |
| Dynamic content not scannable |
SPA with client-side rendering |
Ask user to describe features or provide sitemap |
| Missing company details |
User did not provide entity info |
Use [VERIFY] placeholders, list in summary |
Examples
Example 1: SaaS Application
Request: "Create terms of service for https://example-saas.com — we're a project management tool"
Result: TERMS-OF-SERVICE-ExampleSaaS-2026-04-02.md with:
- 16 sections with SaaS-specific provisions
- Payment terms for subscription model (detected via Stripe integration)
- GDPR provisions (EU users detected via multi-language support)
- CCPA provisions (US-based company)
- User-generated content section for project data
- 8 [VERIFY] tags for assumptions
Example 2: E-Commerce Store
Request: "Generate ToS for my Shopify store selling handmade jewelry"
Result: TERMS-OF-SERVICE-HandmadeJewels-2026-04-02.md with:
- E-commerce focused provisions (returns, shipping, product descriptions)
- Payment terms referencing Shopify Payments / PayPal
- No user-generated content section (simplified)
- Consumer protection provisions per FTC guidelines
- CCPA opt-out mechanism
Resources
1---2name: terms-generator3description: Generates comprehensive terms of service by analyzing a website or application to detect business type, data collection, and user interactions. Use when launching a website, app, or SaaS product that needs terms of service with GDPR/CCPA compliance. Trigger with "/terms-generator" or "create terms of service for my website".4license: MIT5---67# Terms of Service Generator89## Overview1011Scans a website or application to understand the business model, user interactions,12data collection practices, and third-party integrations, then generates a comprehensive13terms of service document with 16 sections. Includes GDPR and CCPA compliance provisions,14plain English summaries after each section, and `[VERIFY]` tags for assumptions that15require human confirmation.1617The generated ToS adapts its language and provisions based on the detected business type18(e-commerce, SaaS, marketplace, content platform, mobile app, etc.).1920> **Legal Disclaimer:** This skill generates template documents for informational and21> educational purposes only. Generated terms of service are not a substitute for legal22> advice. All documents should be reviewed by a licensed attorney before publication.23> Regulatory requirements vary by jurisdiction and business type. No attorney-client24> relationship is created by using this tool.2526## Prerequisites2728- A live website URL or local codebase to analyze29- Knowledge of the business entity name and jurisdiction30- Understanding of whether the service involves payments, user accounts, or user-generated content3132## Instructions33341. **Analyze the website or application.** Use WebFetch to scan the target URL. Identify:35 - Business type (SaaS, e-commerce, marketplace, content, API, mobile app)36 - User interaction patterns (accounts, purchases, subscriptions, content uploads)37 - Data collection mechanisms (forms, cookies, analytics scripts, payment processors)38 - Third-party integrations (Stripe, Google Analytics, social login, CDNs)39 - Geographic indicators (language, currency, server location)40412. **If a codebase is available instead**, use Glob and Read to scan for:42 - Cookie/tracking implementations43 - Authentication flows44 - Payment integrations45 - User data models46 - API endpoints that accept user input47483. **Gather business details from the user:**49 - Legal entity name and type (LLC, Corp, sole proprietor)50 - Business address and jurisdiction51 - Contact email for legal notices52 - Minimum user age requirement53 - Whether the service is free, paid, or freemium54554. **Determine applicable compliance frameworks:**56 - **GDPR** — if serving EU/EEA users (detected via language, .eu domain, Euro pricing)57 - **CCPA/CPRA** — if serving California users or meeting revenue/data thresholds58 - **COPPA** — if the service could attract users under 1359 - **ADA/WCAG** — if a US-based public-facing service60 - **PCI-DSS** — if processing payment card data61 - **CAN-SPAM** — if sending marketing emails62635. **Generate the 16-section Terms of Service:**6465 | # | Section | Covers |66 |---|---------|--------|67 | 1 | Agreement to Terms | Acceptance mechanism, effective date |68 | 2 | Description of Service | What the service provides |69 | 3 | User Accounts | Registration, security, age requirements |70 | 4 | Acceptable Use Policy | Prohibited conduct, content standards |71 | 5 | User-Generated Content | Ownership, licenses, moderation rights |72 | 6 | Intellectual Property | Company IP rights, trademarks, DMCA |73 | 7 | Payment Terms | Pricing, billing cycles, refunds (if applicable) |74 | 8 | Free Trials & Subscriptions | Trial terms, auto-renewal, cancellation |75 | 9 | Privacy & Data Collection | Reference to privacy policy, GDPR/CCPA summary |76 | 10 | Third-Party Services | Links, integrations, disclaimers |77 | 11 | Disclaimers & Warranties | "As-is" provision, warranty limitations |78 | 12 | Limitation of Liability | Liability caps, excluded damages |79 | 13 | Indemnification | User indemnification obligations |80 | 14 | Termination | Grounds, notice, effect of termination |81 | 15 | Governing Law & Disputes | Jurisdiction, arbitration, class action waiver |82 | 16 | General Provisions | Modifications, severability, entire agreement, contact |83846. **Add plain English summaries.** After each section, include a blockquote:85 `> **In Plain English:** {simple summary of what this means for users}`86877. **Insert compliance-specific provisions:**88 - GDPR: Data processing legal basis, right to erasure, DPO contact, data portability89 - CCPA: "Do Not Sell My Personal Information" rights, opt-out mechanism90 - COPPA: Age verification, parental consent mechanism91928. **Tag all assumptions.** Place `[VERIFY]` before any clause based on inferred information:93 - `[VERIFY: assumed SaaS model based on subscription pricing detected]`94 - `[VERIFY: jurisdiction set to Delaware — confirm with business owner]`95 - `[VERIFY: assumed no users under 13 — confirm age policy]`96979. **Write the output file** using the naming convention below.9899## Output100101Generate a single Markdown file named `TERMS-OF-SERVICE-{company}-{YYYY-MM-DD}.md` with:102103```104# Terms of Service105**{Company Name}**106107**Last Updated:** {date}108**Effective Date:** {date}109110---111112## Table of Contents1131. [Agreement to Terms](#1-agreement-to-terms)114{... all 16 sections ...}115116---117118## 1. Agreement to Terms119{formal legal text}120121> **In Plain English:** {simple explanation}122123## 2. Description of Service124{formal legal text}125126> **In Plain English:** {simple explanation}127128{... sections 3-16 ...}129130---131132## Contact Information133{business contact details}134135---136**[VERIFY] Tags Summary:**137{numbered list of all assumptions needing confirmation}138139**Compliance Frameworks Applied:** {GDPR, CCPA, etc.}140**Generated by:** Legal Assistant Plugin — Not a substitute for legal counsel.141```142143## Error Handling144145| Error | Cause | Solution |146|-------|-------|----------|147| Website unreachable | URL is down or behind auth | Ask user for a description of the service or local codebase path |148| Cannot determine business type | Minimal website content | Ask user directly about their business model |149| Payment detection ambiguous | Cannot tell if free or paid | Ask user to confirm pricing model |150| International complexity | Multiple jurisdictions detected | Generate provisions for all detected jurisdictions, add [VERIFY] |151| Dynamic content not scannable | SPA with client-side rendering | Ask user to describe features or provide sitemap |152| Missing company details | User did not provide entity info | Use [VERIFY] placeholders, list in summary |153154## Examples155156**Example 1: SaaS Application**157158Request: "Create terms of service for https://example-saas.com — we're a project management tool"159160Result: `TERMS-OF-SERVICE-ExampleSaaS-2026-04-02.md` with:161162- 16 sections with SaaS-specific provisions163- Payment terms for subscription model (detected via Stripe integration)164- GDPR provisions (EU users detected via multi-language support)165- CCPA provisions (US-based company)166- User-generated content section for project data167- 8 [VERIFY] tags for assumptions168169**Example 2: E-Commerce Store**170171Request: "Generate ToS for my Shopify store selling handmade jewelry"172173Result: `TERMS-OF-SERVICE-HandmadeJewels-2026-04-02.md` with:174175- E-commerce focused provisions (returns, shipping, product descriptions)176- Payment terms referencing Shopify Payments / PayPal177- No user-generated content section (simplified)178- Consumer protection provisions per FTC guidelines179- CCPA opt-out mechanism180181## Resources182183- [FTC Business Guidance on Terms](https://www.ftc.gov/business-guidance) — Federal Trade Commission compliance184- [California Attorney General CCPA](https://oag.ca.gov/privacy/ccpa) — CCPA regulations and guidance185- [ICO Guide to Data Protection](https://ico.org.uk/for-organisations/) — UK/GDPR compliance guidance186- [CommonPaper Standard Terms](https://commonpaper.com/standards/) — CC BY 4.0 open-source terms187- [Termly ToS Generator](https://termly.io/) — Reference for section structures188- [SBA Small Business Legal Resources](https://www.sba.gov/) — US government business guidance