Draft Disclosures
Generate draft compliance disclosure language for marketing content.
Usage
/draft-disclosures [marketing content]
Examples:
/draft-disclosures "Check out this amazing protein powder! I've been using it for 3 months and lost 20 pounds!"
/draft-disclosures "As a doctor, I recommend Brand X supplements for all my patients."
Instructions
When invoked, follow these steps:
Parse input: The user will provide marketing content that needs compliance disclosures. If no argument is provided, ask the user for the content.
Load rules: Read dist/index.json from this repo. Determine which frameworks are relevant based on the content:
- Health claims → HIPAA, FTC
- Investment/financial → SEC 482, SEC Marketing
- EU audience → GDPR
- Email → CAN-SPAM
- Children → COPPA
- California audience → CCPA
- General marketing/advertising → FTC
- If unclear, default to FTC (applies to most US marketing)
Identify compliance gaps: Using the loaded rules as your compliance knowledge, identify where the content needs disclosures or modifications. Focus on rules that require specific language, disclaimers, or disclosures — not just general best practices.
Draft disclosure language: For each identified gap, generate specific, ready-to-use disclosure text:
- Match the tone and style of the original content where possible
- Keep disclosures clear and conspicuous (not buried in fine print)
- Follow the rule's
remediation.guidance for what the disclosure should convey
- Provide the disclosure text itself, not just a description of what's needed
Present results:
## Draft Disclosures
**Original content**: [first 100 chars]...
**Frameworks evaluated**: [list]
**Disclosures needed**: [count]
### 1. [rule.title] ([rule.id])
**Why**: [Brief explanation of what regulation requires this]
**Draft disclosure**:
> [The actual disclosure text to add]
**Placement**: [Where in the content this should appear — e.g., "Immediately after the testimonial", "In the email footer", "At the top of the landing page"]
**Source**: [rule.source.citation]
### 2. [next disclosure]
...
### Revised Content
Here is the original content with all disclosures inserted:
> [Full content with disclosures added in the appropriate positions, marked with **bold** so they're easy to spot]
---
*These are draft disclosures for review. Your legal and compliance teams should approve all disclosure language before publication.*
If no disclosures needed: Report that no specific disclosure requirements were identified for the evaluated frameworks. Include the disclaimer.
Notes
- This skill goes beyond flagging issues — it drafts the actual language needed.
- Disclosures are drafts for human review, not final legal text. Compliance teams should approve all language.
- For just identifying issues without drafted fixes, use
/validate-copy.
- Rules tagged
structural are skipped — these are organizational requirements, not content disclosures.
- The "Revised Content" section shows where disclosures fit contextually. It is a suggestion, not a prescription.
1---2name: draft-disclosures3description: Draft Disclosures4---5# Draft Disclosures67Generate draft compliance disclosure language for marketing content.89## Usage1011```12/draft-disclosures [marketing content]13```1415Examples:16```17/draft-disclosures "Check out this amazing protein powder! I've been using it for 3 months and lost 20 pounds!"18/draft-disclosures "As a doctor, I recommend Brand X supplements for all my patients."19```2021## Instructions2223When invoked, follow these steps:24251. **Parse input**: The user will provide marketing content that needs compliance disclosures. If no argument is provided, ask the user for the content.26272. **Load rules**: Read `dist/index.json` from this repo. Determine which frameworks are relevant based on the content:28 - Health claims → HIPAA, FTC29 - Investment/financial → SEC 482, SEC Marketing30 - EU audience → GDPR31 - Email → CAN-SPAM32 - Children → COPPA33 - California audience → CCPA34 - General marketing/advertising → FTC35 - If unclear, default to FTC (applies to most US marketing)36373. **Identify compliance gaps**: Using the loaded rules as your compliance knowledge, identify where the content needs disclosures or modifications. Focus on rules that require specific language, disclaimers, or disclosures — not just general best practices.38394. **Draft disclosure language**: For each identified gap, generate specific, ready-to-use disclosure text:40 - Match the tone and style of the original content where possible41 - Keep disclosures clear and conspicuous (not buried in fine print)42 - Follow the rule's `remediation.guidance` for what the disclosure should convey43 - Provide the disclosure text itself, not just a description of what's needed44455. **Present results**:4647 ```48 ## Draft Disclosures4950 **Original content**: [first 100 chars]...51 **Frameworks evaluated**: [list]52 **Disclosures needed**: [count]5354 ### 1. [rule.title] ([rule.id])5556 **Why**: [Brief explanation of what regulation requires this]5758 **Draft disclosure**:59 > [The actual disclosure text to add]6061 **Placement**: [Where in the content this should appear — e.g., "Immediately after the testimonial", "In the email footer", "At the top of the landing page"]6263 **Source**: [rule.source.citation]6465 ### 2. [next disclosure]6667 ...6869 ### Revised Content7071 Here is the original content with all disclosures inserted:7273 > [Full content with disclosures added in the appropriate positions, marked with **bold** so they're easy to spot]7475 ---76 *These are draft disclosures for review. Your legal and compliance teams should approve all disclosure language before publication.*77 ```78796. **If no disclosures needed**: Report that no specific disclosure requirements were identified for the evaluated frameworks. Include the disclaimer.8081## Notes8283- This skill goes beyond flagging issues — it drafts the actual language needed.84- Disclosures are drafts for human review, not final legal text. Compliance teams should approve all language.85- For just identifying issues without drafted fixes, use `/validate-copy`.86- Rules tagged `structural` are skipped — these are organizational requirements, not content disclosures.87- The "Revised Content" section shows where disclosures fit contextually. It is a suggestion, not a prescription.