plainstamp 0.7.7 → 0.7.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/README.md +32 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lookup.d.ts +10 -0
- package/dist/lookup.d.ts.map +1 -1
- package/dist/lookup.js +47 -18
- package/dist/lookup.js.map +1 -1
- package/docs/guides/eu-ai-act-article-50-builder-guide.md +354 -0
- package/docs/guides/fcc-tcpa-ai-voice-robocall-builder-guide.md +314 -0
- package/docs/guides/fda-pccp-aiml-medical-device-builder-guide.md +333 -0
- package/docs/guides/texas-traiga-hb-149-builder-guide.md +321 -0
- package/package.json +1 -1
|
@@ -0,0 +1,314 @@
|
|
|
1
|
+
# FCC TCPA AI-voice robocall ruling: a builder's guide
|
|
2
|
+
|
|
3
|
+
> **Informational only — not legal advice.** Verify against the cited
|
|
4
|
+
> regulator-published text and consult counsel for production deployments.
|
|
5
|
+
> See `AI-DISCLOSURE.md` in this package.
|
|
6
|
+
|
|
7
|
+
If your product places calls to consumers using a synthesized voice —
|
|
8
|
+
AI-generated voice agents, IVR systems with AI text-to-speech, voice
|
|
9
|
+
cloning for personalized outreach, AI-assisted political campaign
|
|
10
|
+
calls, AI-voice notifications, or AI-voice telemarketing — the **FCC's
|
|
11
|
+
February 2024 Declaratory Ruling** under the Telephone Consumer
|
|
12
|
+
Protection Act applies. The headline rule, in one sentence:
|
|
13
|
+
*AI-generated voices in calls to consumers are "artificial or
|
|
14
|
+
prerecorded voices" under the TCPA, and every such call requires the
|
|
15
|
+
same prior consent and disclosure regime as any other robocall.*
|
|
16
|
+
Statutory damages of $500 per call (up to $1,500 per willful
|
|
17
|
+
violation) make this one of the highest-exposure federal AI rules
|
|
18
|
+
operating today. This guide covers what the ruling requires, how it
|
|
19
|
+
stacks with state robocall laws and California's bot-disclosure rule,
|
|
20
|
+
why the calling cadence and consent-collection design matter as much
|
|
21
|
+
as the on-call disclosure, and what governance any voice-agent
|
|
22
|
+
deployment needs in place before the first call.
|
|
23
|
+
|
|
24
|
+
## What the FCC Declaratory Ruling actually says
|
|
25
|
+
|
|
26
|
+
On February 8, 2024, the FCC released [Declaratory Ruling, CG Docket
|
|
27
|
+
No. 23-362, FCC 24-17](https://www.fcc.gov/document/fcc-makes-ai-generated-voices-robocalls-illegal),
|
|
28
|
+
*"Implications of Artificial Intelligence Technologies on Protecting
|
|
29
|
+
Consumers from Unwanted Robocalls and Robotexts."*
|
|
30
|
+
|
|
31
|
+
The ruling does not amend the Telephone Consumer Protection Act
|
|
32
|
+
(47 U.S.C. § 227) or the Commission's implementing rules at 47 CFR
|
|
33
|
+
§ 64.1200. It clarifies that **the existing definition of "artificial
|
|
34
|
+
or prerecorded voice" in 47 U.S.C. § 227(b)(1)(A)–(B) covers AI-
|
|
35
|
+
generated voices** — voice clones, AI-synthesized speech, and any
|
|
36
|
+
other voice output produced by an artificial-intelligence or
|
|
37
|
+
machine-learning system in lieu of a human speaker.
|
|
38
|
+
|
|
39
|
+
Three operative consequences:
|
|
40
|
+
|
|
41
|
+
1. **AI-voice calls require prior consent.** A call to a wireless
|
|
42
|
+
number using an AI voice requires *prior express consent* (for
|
|
43
|
+
non-telemarketing/informational calls) or *prior express written
|
|
44
|
+
consent* (for telemarketing). A call to a residential landline for
|
|
45
|
+
telemarketing purposes also requires prior express written
|
|
46
|
+
consent.
|
|
47
|
+
2. **AI-voice calls require caller identification and opt-out
|
|
48
|
+
disclosures on the call.** The TCPA's existing rules (47 CFR
|
|
49
|
+
§ 64.1200(b)) — caller identification at the start of the call,
|
|
50
|
+
callback number, and (for telemarketing) interactive opt-out —
|
|
51
|
+
apply on the same terms as for human-recorded prerecorded calls.
|
|
52
|
+
3. **AI-voice calls are subject to TCPA statutory damages.** Each
|
|
53
|
+
non-compliant call is a violation. $500 per call. Up to $1,500
|
|
54
|
+
per call for willful or knowing violations.
|
|
55
|
+
|
|
56
|
+
The ruling is **interpretive** of the existing statute, not regulatory
|
|
57
|
+
new law. But it has been treated as binding by enforcement actors
|
|
58
|
+
(state AGs, the FCC, plaintiffs' bar) since publication.
|
|
59
|
+
|
|
60
|
+
## What "AI-generated voice" actually covers
|
|
61
|
+
|
|
62
|
+
The ruling's language is intentionally broad. It includes:
|
|
63
|
+
|
|
64
|
+
- **Voice cloning** (a synthesized voice modeled on a specific real
|
|
65
|
+
human's voice).
|
|
66
|
+
- **Pure AI voice synthesis** (a non-human voice generated from a
|
|
67
|
+
text-to-speech model — ElevenLabs, OpenAI TTS, Amazon Polly's
|
|
68
|
+
neural voices, etc.).
|
|
69
|
+
- **AI-assisted IVR** (interactive voice response trees where the
|
|
70
|
+
voice prompts are AI-synthesized rather than pre-recorded by a
|
|
71
|
+
human voice actor).
|
|
72
|
+
- **Voice agents that speak conversationally** (real-time AI voice
|
|
73
|
+
generation for interactive sales, customer support, or appointment
|
|
74
|
+
setting).
|
|
75
|
+
- **AI-modulated human speech** where the synthesized output is
|
|
76
|
+
meaningfully shaped by an AI (e.g., voice-conversion of a live
|
|
77
|
+
agent's words to a different voice).
|
|
78
|
+
|
|
79
|
+
It does **not** cover:
|
|
80
|
+
|
|
81
|
+
- **Live human speech** placed via VoIP, even if AI is used for
|
|
82
|
+
routing, transcription, or screening.
|
|
83
|
+
- **Live human speech with AI translation** played as a synthesized
|
|
84
|
+
voice (this is unsettled; conservative interpretation is that the
|
|
85
|
+
synthesized output is covered).
|
|
86
|
+
- **Pre-recorded human voice prompts** in IVR (still covered by the
|
|
87
|
+
TCPA's "prerecorded voice" prong; not new under this ruling).
|
|
88
|
+
|
|
89
|
+
## TCPA statutory damages: per-call exposure adds up fast
|
|
90
|
+
|
|
91
|
+
The TCPA's statutory damages structure (47 U.S.C. § 227(b)(3))
|
|
92
|
+
creates significant per-call exposure:
|
|
93
|
+
|
|
94
|
+
- **$500 per call** in actual or statutory damages, whichever is
|
|
95
|
+
greater.
|
|
96
|
+
- **Up to $1,500 per call** for willful or knowing violations
|
|
97
|
+
(judicial discretion).
|
|
98
|
+
- **No cap** on aggregate damages; class actions routinely reach
|
|
99
|
+
$1M+ for moderate-volume non-compliant campaigns.
|
|
100
|
+
- **Private right of action** in 47 U.S.C. § 227(b)(3) — consumers
|
|
101
|
+
can sue directly without involving the FCC.
|
|
102
|
+
- **State Attorneys General** can also enforce, and many have AI-
|
|
103
|
+
voice initiatives.
|
|
104
|
+
|
|
105
|
+
Concrete worst-case math: an AI-voice telemarketing campaign of
|
|
106
|
+
10,000 calls placed without prior express written consent, identified
|
|
107
|
+
in a class action: 10,000 × $500 = $5M minimum, up to $15M for
|
|
108
|
+
willful violations.
|
|
109
|
+
|
|
110
|
+
## Required elements of an AI-voice call
|
|
111
|
+
|
|
112
|
+
Two layers of compliance: pre-call (consent collection) and at-call
|
|
113
|
+
(in-message disclosures).
|
|
114
|
+
|
|
115
|
+
### Pre-call: consent collection
|
|
116
|
+
|
|
117
|
+
For any AI-voice call to a wireless number:
|
|
118
|
+
- **Non-telemarketing / informational**: *prior express consent*
|
|
119
|
+
(oral or written).
|
|
120
|
+
- **Telemarketing**: *prior express written consent*. Must be a
|
|
121
|
+
signed written agreement (electronic signatures count) that:
|
|
122
|
+
- Clearly authorizes the seller to place AI-voice or auto-dialed
|
|
123
|
+
calls.
|
|
124
|
+
- Includes the phone number to be called.
|
|
125
|
+
- Is not required as a condition of purchase.
|
|
126
|
+
|
|
127
|
+
For residential landlines:
|
|
128
|
+
- **Non-telemarketing / informational**: typically exempt; no consent
|
|
129
|
+
required.
|
|
130
|
+
- **Telemarketing**: prior express written consent (some
|
|
131
|
+
exceptions for established business relationships, charitable
|
|
132
|
+
calls, calls by a tax-exempt non-profit).
|
|
133
|
+
|
|
134
|
+
Production design implication: the consent UI that collects opt-in
|
|
135
|
+
must capture the wireless/landline distinction, the call-purpose
|
|
136
|
+
distinction (is this telemarketing?), and the specific phone number.
|
|
137
|
+
A generic "I agree to receive communications" checkbox is insufficient
|
|
138
|
+
for prior express written consent.
|
|
139
|
+
|
|
140
|
+
### At-call: in-message required elements
|
|
141
|
+
|
|
142
|
+
Every AI-voice call (47 CFR § 64.1200(b)):
|
|
143
|
+
|
|
144
|
+
| Element | What it is |
|
|
145
|
+
|---|---|
|
|
146
|
+
| Caller identification | At the beginning of the message, state the identity of the business / individual / entity initiating the call. |
|
|
147
|
+
| Callback number | Provide a phone number — *not* the autodialer or message player — that the consumer can use to make a do-not-call request. |
|
|
148
|
+
| Interactive opt-out (telemarketing only) | An automated voice- or key-press-activated opt-out mechanism available throughout the call duration. Pressing the opt-out key must immediately end the call and add the consumer to the company-specific do-not-call list. |
|
|
149
|
+
| AI-voice disclosure (best practice) | The FCC ruling does not strictly require a separate "this voice is AI" disclosure on the call, but commentary and several state laws strongly favor it. Conservative deployments add it. |
|
|
150
|
+
|
|
151
|
+
Plain-language template that satisfies the federal requirements
|
|
152
|
+
plus best-practice AI-voice disclosure:
|
|
153
|
+
|
|
154
|
+
> *"This is an automated call from [business name]. The voice you
|
|
155
|
+
> are hearing is an artificial or AI-generated voice, not a live
|
|
156
|
+
> person. To stop receiving calls from us, please press [digit] or
|
|
157
|
+
> call [phone number]."*
|
|
158
|
+
|
|
159
|
+
Each element is mandatory; missing any of them is a TCPA violation
|
|
160
|
+
on its own, regardless of the others.
|
|
161
|
+
|
|
162
|
+
## How the ruling stacks with state robocall laws
|
|
163
|
+
|
|
164
|
+
Several states have AI-voice or robocall rules that **add** to the
|
|
165
|
+
federal floor:
|
|
166
|
+
|
|
167
|
+
| Jurisdiction | Layer it adds |
|
|
168
|
+
|---|---|
|
|
169
|
+
| California (B&P § 17941, the "bot disclosure" law) | Bot must self-disclose its nature when interacting with a Californian for incentivizing a sale or influencing a vote. AI-voice agents that fall under this scope must disclose their nature on the call. |
|
|
170
|
+
| California (AB 1018, vetoed Sep 2024 — monitor for re-introduction) | Would have specifically targeted AI voice clones in commercial contexts. |
|
|
171
|
+
| Florida (501.059, the Florida Telephone Solicitation Act / "mini-TCPA") | Stricter than federal: prior express written consent for any auto-dialed solicitation call, $500 per violation, broad attorney's fee provision. AI-voice calls fall under the "auto-dialed" definition. |
|
|
172
|
+
| Oklahoma (Telephonic Communications Act, OK Stat § 15-775C.1) | Requires consent for telemarketing calls; some AI-voice provisions in pending amendments. |
|
|
173
|
+
| Pennsylvania (73 P.S. § 2241) | Requires opt-out keypress mechanism similar to TCPA. |
|
|
174
|
+
| Washington (RCW 80.36.400) | Bans pre-recorded commercial calls absent consent; AI voice covered. |
|
|
175
|
+
|
|
176
|
+
For multi-state callers, the right rule is the strictest applicable
|
|
177
|
+
state rule, not federal alone. A national AI-voice telemarketing
|
|
178
|
+
campaign must comply with Florida's mini-TCPA when reaching Florida
|
|
179
|
+
numbers, the federal TCPA elsewhere, and California's bot disclosure
|
|
180
|
+
when the recipient is in California.
|
|
181
|
+
|
|
182
|
+
## How the ruling stacks with the EU AI Act
|
|
183
|
+
|
|
184
|
+
If your AI-voice system reaches EU residents:
|
|
185
|
+
|
|
186
|
+
- **EU AI Act Article 50(1)** (chatbot disclosure, applies from
|
|
187
|
+
August 2026): when an AI system is intended to interact directly
|
|
188
|
+
with natural persons, the persons must be informed they are
|
|
189
|
+
interacting with an AI system. AI voice agents fall under this.
|
|
190
|
+
- **GDPR** generally: phone numbers + voice recordings are personal
|
|
191
|
+
data; lawful-basis and consent obligations apply on top of the AI
|
|
192
|
+
Act disclosure.
|
|
193
|
+
|
|
194
|
+
For EU + US deployments, the disclosure copy must satisfy both. A
|
|
195
|
+
single template that meets TCPA + EU AI Act 50(1) + California B&P
|
|
196
|
+
§ 17941 is feasible — see `plainstamp lookup` queries below.
|
|
197
|
+
|
|
198
|
+
## Why STIR/SHAKEN matters for AI-voice senders
|
|
199
|
+
|
|
200
|
+
Separately from the Declaratory Ruling, the FCC has been advancing
|
|
201
|
+
STIR/SHAKEN caller-ID authentication as the technical infrastructure
|
|
202
|
+
for combating spoofed and AI-voice scam calls. Voice service
|
|
203
|
+
providers must:
|
|
204
|
+
|
|
205
|
+
- Authenticate calls leaving their network (sign with a SHAKEN
|
|
206
|
+
attestation level: A, B, or C).
|
|
207
|
+
- Verify attestation on incoming calls.
|
|
208
|
+
- Block calls that fail authentication or come from non-authenticated
|
|
209
|
+
providers under FCC rules.
|
|
210
|
+
|
|
211
|
+
For legitimate AI-voice senders, the practical implication is that
|
|
212
|
+
your call origination must be authenticated to a SHAKEN level that
|
|
213
|
+
downstream carriers won't block. AI-voice calls placed without
|
|
214
|
+
SHAKEN A-level attestation increasingly get filtered, blocked, or
|
|
215
|
+
labeled "Likely Spam" / "Spam Risk" by mobile carriers, dramatically
|
|
216
|
+
reducing reach.
|
|
217
|
+
|
|
218
|
+
## Common compliance failure patterns
|
|
219
|
+
|
|
220
|
+
- **No prior express written consent for telemarketing.** AI-voice
|
|
221
|
+
campaign uses a generic opt-in (e.g., "I agree to communications")
|
|
222
|
+
that doesn't meet the prior express written consent standard.
|
|
223
|
+
Per-call statutory exposure on every call placed.
|
|
224
|
+
- **Caller identification missing or buried.** AI-voice call opens
|
|
225
|
+
with the marketing pitch instead of identifying the calling
|
|
226
|
+
business. TCPA violation per 47 CFR § 64.1200(b)(1).
|
|
227
|
+
- **Callback number is the autodialer's number.** The opt-out path
|
|
228
|
+
must not be the autodialer / robocall service phone number — it
|
|
229
|
+
must be a separately-staffed or interactive line.
|
|
230
|
+
- **No interactive opt-out on telemarketing calls.** Voice agent
|
|
231
|
+
doesn't honor "press 9 to opt out" or similar mechanism.
|
|
232
|
+
- **Calling DNC-listed consumers.** AI-voice call placed to a
|
|
233
|
+
consumer who has previously opted out (via TCPA company-specific
|
|
234
|
+
DNC, the National DNC Registry, or a state DNC list).
|
|
235
|
+
- **No SHAKEN attestation on call origination.** Calls get filtered
|
|
236
|
+
or labeled "Spam Risk," compliance issue downstream and reach
|
|
237
|
+
collapses.
|
|
238
|
+
- **Multi-state campaign defaulting to federal alone.** Calls to
|
|
239
|
+
Florida numbers without Florida-mini-TCPA prior express written
|
|
240
|
+
consent; calls to California consumers without B&P § 17941 bot
|
|
241
|
+
disclosure.
|
|
242
|
+
|
|
243
|
+
## How plainstamp helps
|
|
244
|
+
|
|
245
|
+
`plainstamp` ships a `us-fcc-tcpa-ai-voice-robocall-2024` rule that
|
|
246
|
+
returns the in-message disclosure-element checklist for AI-voice
|
|
247
|
+
calls under the federal floor, plain-language and formal-language
|
|
248
|
+
templates, citation back to TCPA + 47 CFR § 64.1200 + the FCC
|
|
249
|
+
Declaratory Ruling, and a `last_verified` date. Lookup:
|
|
250
|
+
|
|
251
|
+
```bash
|
|
252
|
+
npx plainstamp lookup --jurisdiction us \
|
|
253
|
+
--channel voice \
|
|
254
|
+
--use-case b2c-marketing
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
For multi-state telemarketing, query state-level overlays:
|
|
258
|
+
|
|
259
|
+
```bash
|
|
260
|
+
npx plainstamp lookup --jurisdiction us-ca --channel voice --use-case b2c-marketing
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
For EU-reach calls:
|
|
264
|
+
|
|
265
|
+
```bash
|
|
266
|
+
npx plainstamp lookup --jurisdiction eu --channel voice --use-case b2c-marketing
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
The disclosure copy must satisfy each applicable layer.
|
|
270
|
+
|
|
271
|
+
## The minimum viable compliance posture
|
|
272
|
+
|
|
273
|
+
If your AI-voice deployment is starting from zero on TCPA + Declaratory
|
|
274
|
+
Ruling compliance, ship these six artifacts in order:
|
|
275
|
+
|
|
276
|
+
1. **Prior express written consent collection UI.** A consent flow
|
|
277
|
+
that captures the wireless/landline distinction, the call-purpose
|
|
278
|
+
distinction (telemarketing vs informational), and the specific
|
|
279
|
+
phone number to be called. Stored with audit-trail timestamps.
|
|
280
|
+
2. **AI-voice call opening template.** Caller identification at the
|
|
281
|
+
start of the call, plus best-practice AI-voice disclosure.
|
|
282
|
+
3. **Callback number infrastructure.** A separately-routed callback
|
|
283
|
+
number (not the autodialer) that consumers can use to make a
|
|
284
|
+
do-not-call request, with company-specific DNC list integration.
|
|
285
|
+
4. **Interactive opt-out mechanism.** For telemarketing, voice and
|
|
286
|
+
key-press opt-out available throughout the call. Immediate
|
|
287
|
+
call-end + DNC-list update on activation.
|
|
288
|
+
5. **DNC list checking.** Pre-call check against company-specific,
|
|
289
|
+
National DNC Registry, and applicable state DNC lists.
|
|
290
|
+
6. **SHAKEN A-level attestation on call origination.** Through your
|
|
291
|
+
voice service provider; without this, AI-voice calls are
|
|
292
|
+
increasingly blocked or labeled.
|
|
293
|
+
|
|
294
|
+
Then layer the higher-fidelity work — state-by-state overlays,
|
|
295
|
+
political-campaign carve-outs (where applicable), legal-services
|
|
296
|
+
restrictions, EU AI Act Article 50(1) compliance for EU-reach calls
|
|
297
|
+
— onto the higher-volume use cases first.
|
|
298
|
+
|
|
299
|
+
## Source-of-truth links
|
|
300
|
+
|
|
301
|
+
- **FCC Declaratory Ruling (CG Docket No. 23-362, FCC 24-17)** ([fcc.gov](https://www.fcc.gov/document/fcc-makes-ai-generated-voices-robocalls-illegal))
|
|
302
|
+
- **TCPA, 47 U.S.C. § 227** ([uscode.house.gov](https://uscode.house.gov/view.xhtml?req=granuleid:USC-prelim-title47-section227&num=0&edition=prelim))
|
|
303
|
+
- **FCC implementing rules, 47 CFR § 64.1200** ([ecfr.gov](https://www.ecfr.gov/current/title-47/chapter-I/subchapter-B/part-64/subpart-L/section-64.1200))
|
|
304
|
+
- **FCC Notice of Proposed Rulemaking on AI in calls and texts (April 2024)** ([fcc.gov](https://www.fcc.gov/document/fcc-proposes-disclosure-ai-generated-content-calls-and-texts))
|
|
305
|
+
- **STIR/SHAKEN at the FCC** ([fcc.gov](https://www.fcc.gov/call-authentication))
|
|
306
|
+
- **California B&P § 17941 (bot disclosure)** ([leginfo.legislature.ca.gov](https://leginfo.legislature.ca.gov/faces/codes_displaySection.xhtml?lawCode=BPC§ionNum=17941))
|
|
307
|
+
|
|
308
|
+
`plainstamp` is maintained by an autonomous AI agent operating under
|
|
309
|
+
KS Elevated Solutions LLC. Accuracy reports, rule-update suggestions,
|
|
310
|
+
and security disclosures: [helpfulbutton140@agentmail.to](mailto:helpfulbutton140@agentmail.to).
|
|
311
|
+
|
|
312
|
+
---
|
|
313
|
+
|
|
314
|
+
[`← Back to plainstamp`](https://plainstamp.pages.dev/)
|
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
# FDA PCCP for AI/ML medical devices: a builder's guide
|
|
2
|
+
|
|
3
|
+
> **Informational only — not legal advice.** Verify against the cited
|
|
4
|
+
> regulator-published text and consult counsel for production deployments.
|
|
5
|
+
> See `AI-DISCLOSURE.md` in this package.
|
|
6
|
+
|
|
7
|
+
If you're building an AI/ML-enabled medical device or device software
|
|
8
|
+
function — a clinical decision-support tool that gets cleared by FDA,
|
|
9
|
+
an imaging algorithm in a 510(k)-cleared scanner, an AI radiology
|
|
10
|
+
triage system, an AI-driven continuous glucose monitor, or any other
|
|
11
|
+
software-as-a-medical-device (SaMD) that uses machine learning — the
|
|
12
|
+
**FDA Predetermined Change Control Plan (PCCP) framework** is the
|
|
13
|
+
specific federal regulatory vehicle that lets you iterate on the
|
|
14
|
+
model after authorization without filing a new submission for every
|
|
15
|
+
update. This guide covers what § 515C of the FD&C Act actually
|
|
16
|
+
requires, what a PCCP looks like in production, the labeling and
|
|
17
|
+
public-summary disclosure obligations that come with it, how it
|
|
18
|
+
stacks with HHS Section 1557 and state-level rules, and what
|
|
19
|
+
governance any AI/ML device team needs in place before submission.
|
|
20
|
+
|
|
21
|
+
## What FDA PCCP actually is
|
|
22
|
+
|
|
23
|
+
The Federal Food, Drug, and Cosmetic Act § 515C (21 U.S.C. § 360e-4)
|
|
24
|
+
was added by **Section 3308 of the Food and Drug Omnibus Reform Act
|
|
25
|
+
of 2022** (FDORA, P.L. 117-328). It authorizes FDA to clear or
|
|
26
|
+
approve a Predetermined Change Control Plan as part of an AI/ML
|
|
27
|
+
device's marketing submission — meaning: the manufacturer pre-
|
|
28
|
+
specifies the kinds of modifications it intends to make to the AI/ML
|
|
29
|
+
algorithm post-authorization, the methods it will use to validate
|
|
30
|
+
those modifications, and the assessment of their impact. Once FDA
|
|
31
|
+
authorizes the PCCP, the manufacturer can implement modifications
|
|
32
|
+
that conform to the plan without a new marketing submission.
|
|
33
|
+
|
|
34
|
+
On December 4, 2024, FDA issued the [final guidance](https://www.fda.gov/regulatory-information/search-fda-guidance-documents/predetermined-change-control-plans-artificial-intelligence-enabled-device-software-functions),
|
|
35
|
+
*"Predetermined Change Control Plans for Artificial Intelligence-
|
|
36
|
+
Enabled Device Software Functions."* The final guidance applies to
|
|
37
|
+
all medical devices regardless of pathway (510(k), De Novo, PMA)
|
|
38
|
+
and supersedes the April 2023 draft. It is the authoritative
|
|
39
|
+
reference for what a PCCP must contain, how to validate
|
|
40
|
+
modifications, and how to disclose the AI/ML nature of the device
|
|
41
|
+
to clinicians and patients.
|
|
42
|
+
|
|
43
|
+
The framework solves a real problem. Before § 515C, any change to
|
|
44
|
+
the algorithm of a cleared or authorized AI/ML device that affected
|
|
45
|
+
the device's safety or effectiveness typically required a new
|
|
46
|
+
510(k), De Novo, or PMA submission. Iterative model improvement
|
|
47
|
+
became impractical: every meaningful retrain triggered a new
|
|
48
|
+
regulatory cycle. PCCP lets manufacturers pre-authorize a bounded
|
|
49
|
+
set of modifications (and the validation methods for each) so
|
|
50
|
+
iteration can happen within the bounds the agency has reviewed.
|
|
51
|
+
|
|
52
|
+
## What a PCCP must contain
|
|
53
|
+
|
|
54
|
+
Per the final guidance, every PCCP comprises three components:
|
|
55
|
+
|
|
56
|
+
### 1. Description of Modifications
|
|
57
|
+
|
|
58
|
+
A specific list of the modifications the manufacturer intends to
|
|
59
|
+
make to the AI-enabled device software function under the PCCP.
|
|
60
|
+
Each modification must be:
|
|
61
|
+
|
|
62
|
+
- **Specific.** "We may improve the algorithm" is not a modification
|
|
63
|
+
description. "We may retrain the model on additional pediatric
|
|
64
|
+
data drawn from the same patient population, with retrained
|
|
65
|
+
weights deployed only after the validation in the Modification
|
|
66
|
+
Protocol shows non-inferior sensitivity and specificity at the
|
|
67
|
+
authorized device's operating point" is.
|
|
68
|
+
- **Bounded.** The set of permissible modifications is finite. The
|
|
69
|
+
PCCP must enumerate them; modifications outside the enumeration
|
|
70
|
+
require a new marketing submission.
|
|
71
|
+
- **Predictable in impact.** The Description of Modifications
|
|
72
|
+
pairs with the Impact Assessment to show that the predicted impact
|
|
73
|
+
is positive or neutral, and that risks have been characterized.
|
|
74
|
+
|
|
75
|
+
Common modification categories:
|
|
76
|
+
- Retraining on additional data (with bounded data-distribution
|
|
77
|
+
assumptions).
|
|
78
|
+
- Updates to feature engineering or input preprocessing.
|
|
79
|
+
- Threshold adjustments at the operating point.
|
|
80
|
+
- Performance improvements on specific subgroups.
|
|
81
|
+
- Compatibility updates for new sensor inputs.
|
|
82
|
+
|
|
83
|
+
### 2. Modification Protocol
|
|
84
|
+
|
|
85
|
+
Methods to develop, validate, and implement the planned modifications.
|
|
86
|
+
The Modification Protocol is the testable specification of how the
|
|
87
|
+
manufacturer will know whether a proposed modification meets the
|
|
88
|
+
required performance bar. It must include:
|
|
89
|
+
|
|
90
|
+
- **Data management.** What data will be used for retraining; how
|
|
91
|
+
it's sourced; how data quality is maintained; how patient
|
|
92
|
+
populations are represented.
|
|
93
|
+
- **Retraining methodology.** The algorithmic procedure used to
|
|
94
|
+
produce a candidate modified model.
|
|
95
|
+
- **Performance evaluation.** The metrics the modified model must
|
|
96
|
+
meet — typically including sensitivity, specificity, AUC, and
|
|
97
|
+
fairness across demographic subgroups — and the operating points.
|
|
98
|
+
- **Update procedures.** How the modification is deployed to the
|
|
99
|
+
device, including version control, rollback, and clinician
|
|
100
|
+
notification.
|
|
101
|
+
|
|
102
|
+
The Modification Protocol is the most consequential part of a PCCP.
|
|
103
|
+
A weak Modification Protocol can result in FDA limiting the PCCP's
|
|
104
|
+
scope or refusing authorization.
|
|
105
|
+
|
|
106
|
+
### 3. Impact Assessment
|
|
107
|
+
|
|
108
|
+
Evaluation of the benefits and risks of each anticipated modification,
|
|
109
|
+
including:
|
|
110
|
+
|
|
111
|
+
- **Benefit characterization.** What the modification is intended to
|
|
112
|
+
improve and how it will be measured.
|
|
113
|
+
- **Risk characterization.** Foreseeable risks the modification
|
|
114
|
+
introduces, and the controls that will detect or mitigate them.
|
|
115
|
+
- **Cumulative-impact analysis.** Where multiple modifications could
|
|
116
|
+
compound, the assessment must consider their combined effect.
|
|
117
|
+
- **Comparison against the authorized baseline.** Each modification
|
|
118
|
+
must perform at least as well as the originally authorized device
|
|
119
|
+
on the metrics that drove the original authorization.
|
|
120
|
+
|
|
121
|
+
## Labeling and public-disclosure obligations
|
|
122
|
+
|
|
123
|
+
PCCP doesn't change the underlying labeling regime under 21 CFR
|
|
124
|
+
Part 801; it adds specific disclosure expectations on top.
|
|
125
|
+
|
|
126
|
+
The device labeling (which includes the user manual, the
|
|
127
|
+
manufacturer's product page, and FDA's public-facing 510(k) Summary,
|
|
128
|
+
De Novo Decision Summary, or PMA Approval Order) must:
|
|
129
|
+
|
|
130
|
+
1. **Disclose the AI/ML nature** of the device. State that the
|
|
131
|
+
device is an AI-enabled device software function and identify
|
|
132
|
+
the regulatory pathway and submission number.
|
|
133
|
+
2. **Summarize the PCCP** where one is authorized. State the bounds
|
|
134
|
+
of the modifications that may be implemented without a new
|
|
135
|
+
submission.
|
|
136
|
+
3. **Inform clinicians** that the device may be modified within the
|
|
137
|
+
PCCP without further FDA review.
|
|
138
|
+
4. **Provide a current device summary** that reflects the current
|
|
139
|
+
model version, the validation data for that version, and the
|
|
140
|
+
cumulative record of PCCP-conforming modifications implemented to
|
|
141
|
+
date.
|
|
142
|
+
|
|
143
|
+
A public-facing device-summary page, updated each time a PCCP-
|
|
144
|
+
conforming modification is implemented, is the de facto best practice
|
|
145
|
+
emerging from the December 2024 final guidance. FDA's own public-
|
|
146
|
+
facing pages (510(k) Summary, etc.) reflect the original
|
|
147
|
+
authorization; the manufacturer page is where current model state
|
|
148
|
+
lives.
|
|
149
|
+
|
|
150
|
+
Plain-language template that satisfies the labeling requirements:
|
|
151
|
+
|
|
152
|
+
> *"This device incorporates an artificial intelligence or machine-
|
|
153
|
+
> learning algorithm. The device has been authorized for marketing
|
|
154
|
+
> by the U.S. Food and Drug Administration under [510(k) / De Novo
|
|
155
|
+
> / PMA number]. The manufacturer's authorized marketing submission
|
|
156
|
+
> includes a Predetermined Change Control Plan (PCCP) describing the
|
|
157
|
+
> modifications that may be implemented to the device's algorithm
|
|
158
|
+
> without a new FDA submission. For the current PCCP scope, the
|
|
159
|
+
> device's intended use, validated performance, and the latest model
|
|
160
|
+
> version, see the manufacturer's device summary at [URL]."*
|
|
161
|
+
|
|
162
|
+
## How PCCP applies across pathways
|
|
163
|
+
|
|
164
|
+
The final guidance applies to all device-pathway pathways, but the
|
|
165
|
+
mechanics differ slightly:
|
|
166
|
+
|
|
167
|
+
| Pathway | When PCCP fits | Common AI/ML device classes |
|
|
168
|
+
|---|---|---|
|
|
169
|
+
| **510(k)** (substantial equivalence) | PCCP filed alongside the 510(k) submission; FDA reviews and authorizes within the 510(k) timeframe. | Class II AI/ML devices: imaging triage, decision support, glucose monitors, ECG analyzers. |
|
|
170
|
+
| **De Novo** (low-to-moderate-risk novel device) | PCCP filed in the De Novo request; authorized as part of the request. | Novel AI/ML diagnostics with no predicate device. |
|
|
171
|
+
| **PMA** (premarket approval, Class III) | PCCP filed in the PMA module; supplemental approval. | High-risk AI/ML devices: certain implantables, some high-acuity diagnostics. |
|
|
172
|
+
|
|
173
|
+
The 510(k) pathway is by far the most common for AI/ML devices —
|
|
174
|
+
about 95% of FDA-authorized AI/ML medical devices are 510(k)-cleared.
|
|
175
|
+
|
|
176
|
+
## How PCCP stacks with HHS Section 1557
|
|
177
|
+
|
|
178
|
+
Section 1557's Patient Care Decision Support Tool (PCDST)
|
|
179
|
+
nondiscrimination obligations (45 CFR § 92.210, effective 2025-05-01)
|
|
180
|
+
operate at the **deployer** level — the covered entity that uses the
|
|
181
|
+
device. PCCP operates at the **manufacturer** level — the entity
|
|
182
|
+
that builds and authorizes the device.
|
|
183
|
+
|
|
184
|
+
Both apply to the same AI/ML medical device:
|
|
185
|
+
|
|
186
|
+
- **Manufacturer obligations** under FDA: PCCP-bounded modifications,
|
|
187
|
+
labeling disclosure, post-implementation transparency, ongoing
|
|
188
|
+
performance monitoring under 21 CFR Part 803 (medical device
|
|
189
|
+
reporting).
|
|
190
|
+
- **Deployer obligations** under HHS Section 1557: PCDST inventory,
|
|
191
|
+
mitigation of discrimination risk, designated Civil Rights
|
|
192
|
+
Coordinator coverage, patient-facing notice where applicable.
|
|
193
|
+
|
|
194
|
+
A hospital using an FDA-cleared AI radiology triage tool: the
|
|
195
|
+
manufacturer's PCCP governs how the tool is updated; the hospital's
|
|
196
|
+
Section 1557 PCDST process governs whether and how the tool is used,
|
|
197
|
+
and how the hospital monitors for discriminatory output. Both
|
|
198
|
+
obligations apply. See the [HHS Section 1557 builder's guide](/guides/hhs-section-1557-pcdst-builder-guide/)
|
|
199
|
+
for the deployer side.
|
|
200
|
+
|
|
201
|
+
## How PCCP stacks with state laws
|
|
202
|
+
|
|
203
|
+
| State rule | How it stacks |
|
|
204
|
+
|---|---|
|
|
205
|
+
| **California SB 1120 (Physicians Make Decisions Act)** | Effective 2025-01-01. AI used in utilization review for medical-necessity decisions must be reviewed by a licensed physician. Layers on top of FDA pathway: FDA clears the device, SB 1120 governs how it can be used in California. |
|
|
206
|
+
| **NYDFS October 2024 cybersecurity / AI guidance** | Applies to NYDFS-licensed entities. AI tool risks must be addressed in cybersecurity programs. AI/ML medical devices held by NY-licensed insurers fall in scope. |
|
|
207
|
+
| **State medical-board AI rules** (TX, several others) | Govern how clinicians may use AI in scope of practice. Layer on top of the manufacturer-level FDA framework. |
|
|
208
|
+
|
|
209
|
+
The right rule for production deployment is the strictest applicable
|
|
210
|
+
overlay, not FDA alone.
|
|
211
|
+
|
|
212
|
+
## How the public-facing device summary should evolve
|
|
213
|
+
|
|
214
|
+
The December 2024 final guidance treats post-implementation
|
|
215
|
+
transparency as integral to PCCP compliance. The public-facing
|
|
216
|
+
device summary on the manufacturer's site is the practical surface.
|
|
217
|
+
What it should contain:
|
|
218
|
+
|
|
219
|
+
- **Current model version.** A version identifier the clinician can
|
|
220
|
+
cross-reference against the device labeling.
|
|
221
|
+
- **Date of last modification.** When the most recent PCCP-conforming
|
|
222
|
+
change was implemented.
|
|
223
|
+
- **Validation data for the current version.** Performance metrics
|
|
224
|
+
on the validation set, including subgroup performance where the
|
|
225
|
+
device is intended for diverse patient populations.
|
|
226
|
+
- **PCCP scope.** The bounds of authorized modifications, summarized
|
|
227
|
+
for non-regulator readers.
|
|
228
|
+
- **Cumulative modification log.** A chronological list of PCCP-
|
|
229
|
+
conforming modifications implemented since authorization.
|
|
230
|
+
- **Contact for questions.** A path for clinicians and patients to
|
|
231
|
+
reach the manufacturer about the AI/ML nature of the device.
|
|
232
|
+
|
|
233
|
+
A device summary that omits these elements is not yet aligned with
|
|
234
|
+
the final guidance's expectations. Expect FDA to lean on this in
|
|
235
|
+
post-market surveillance.
|
|
236
|
+
|
|
237
|
+
## Common compliance failure patterns
|
|
238
|
+
|
|
239
|
+
- **Modifications outside the authorized PCCP.** A retraining run
|
|
240
|
+
that uses a data source not covered in the Description of
|
|
241
|
+
Modifications. Even if the resulting model is "better," it
|
|
242
|
+
requires a new marketing submission.
|
|
243
|
+
- **Modification Protocol that doesn't enforce its own metrics.** A
|
|
244
|
+
PCCP whose Modification Protocol describes validation but doesn't
|
|
245
|
+
state explicit pass/fail thresholds. FDA may treat post-
|
|
246
|
+
authorization changes as outside the PCCP's scope.
|
|
247
|
+
- **No public-facing device summary.** Device labeling references a
|
|
248
|
+
PCCP but the manufacturer doesn't provide an updatable public
|
|
249
|
+
summary; clinicians can't tell what model version is currently
|
|
250
|
+
deployed.
|
|
251
|
+
- **Section 1557 deployer obligations treated as the manufacturer's
|
|
252
|
+
responsibility.** The covered entity (hospital, FQHC, etc.) is
|
|
253
|
+
responsible for its own PCDST inventory and mitigation —
|
|
254
|
+
the manufacturer's FDA labeling does not satisfy the deployer's
|
|
255
|
+
HHS Section 1557 obligations.
|
|
256
|
+
- **Cumulative-impact analysis missing.** PCCP allows multiple
|
|
257
|
+
modifications. Without a cumulative-impact assessment, drift over
|
|
258
|
+
many modifications can leave the device performing meaningfully
|
|
259
|
+
differently from the originally authorized baseline.
|
|
260
|
+
- **Fairness / subgroup performance not in the Modification
|
|
261
|
+
Protocol.** A PCCP whose Modification Protocol only checks aggregate
|
|
262
|
+
performance metrics misses subgroup-level performance changes.
|
|
263
|
+
These can trigger Section 1557 disparate-impact concerns at the
|
|
264
|
+
deployer level — and create FDA postmarket safety issues.
|
|
265
|
+
|
|
266
|
+
## How plainstamp helps
|
|
267
|
+
|
|
268
|
+
`plainstamp` ships a `us-fda-pccp-aiml-device-software-2024` rule
|
|
269
|
+
that returns the labeling-disclosure checklist, plain-language and
|
|
270
|
+
formal-language device-labeling templates, citation back to FD&C Act
|
|
271
|
+
§ 515C and the December 2024 FDA final guidance, and a
|
|
272
|
+
`last_verified` date. Lookup:
|
|
273
|
+
|
|
274
|
+
```bash
|
|
275
|
+
npx plainstamp lookup --jurisdiction us \
|
|
276
|
+
--channel about-page \
|
|
277
|
+
--use-case healthcare
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
For California-operating manufacturers, layer SB 1120 on top:
|
|
281
|
+
|
|
282
|
+
```bash
|
|
283
|
+
npx plainstamp lookup --jurisdiction us-ca \
|
|
284
|
+
--channel about-page \
|
|
285
|
+
--use-case healthcare
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
## The minimum viable compliance posture
|
|
289
|
+
|
|
290
|
+
If your AI/ML medical device is starting from zero on PCCP / labeling
|
|
291
|
+
compliance, ship these six artifacts in order:
|
|
292
|
+
|
|
293
|
+
1. **Authorized PCCP** in your marketing submission. Description of
|
|
294
|
+
Modifications, Modification Protocol with explicit pass/fail
|
|
295
|
+
thresholds, Impact Assessment with cumulative-impact analysis.
|
|
296
|
+
2. **Device labeling** that discloses the AI/ML nature, summarizes
|
|
297
|
+
the PCCP, and points to the public-facing device summary URL.
|
|
298
|
+
3. **Public-facing device summary page** with current model version,
|
|
299
|
+
date of last modification, validation data for the current
|
|
300
|
+
version, PCCP scope, cumulative modification log, contact path.
|
|
301
|
+
4. **Modification implementation runbook.** A documented procedure
|
|
302
|
+
for going from "candidate modification" to "deployed PCCP-
|
|
303
|
+
conforming modification": validation against the Modification
|
|
304
|
+
Protocol, version-control update, labeling/summary update,
|
|
305
|
+
clinician notification, audit-trail entry.
|
|
306
|
+
5. **Subgroup performance monitoring.** Ongoing monitoring that
|
|
307
|
+
detects performance drift overall AND across protected-class
|
|
308
|
+
subgroups, with thresholds that escalate to a new marketing
|
|
309
|
+
submission if exceeded.
|
|
310
|
+
6. **Coordination path with deployers.** A documented contact and
|
|
311
|
+
escalation channel for hospital / FQHC / insurer customers
|
|
312
|
+
who need to satisfy their Section 1557 PCDST obligations.
|
|
313
|
+
|
|
314
|
+
Then layer the higher-fidelity work — postmarket surveillance under
|
|
315
|
+
21 CFR Part 803, risk-class-specific quality-system requirements
|
|
316
|
+
under 21 CFR Part 820, sector-specific overlays — onto the higher-
|
|
317
|
+
risk modification categories first.
|
|
318
|
+
|
|
319
|
+
## Source-of-truth links
|
|
320
|
+
|
|
321
|
+
- **FDA Final Guidance — PCCP for AI-Enabled Device Software Functions (December 2024)** ([fda.gov](https://www.fda.gov/regulatory-information/search-fda-guidance-documents/predetermined-change-control-plans-artificial-intelligence-enabled-device-software-functions))
|
|
322
|
+
- **FD&C Act § 515C, 21 U.S.C. § 360e-4** ([uscode.house.gov](https://uscode.house.gov/view.xhtml?req=granuleid:USC-prelim-title21-section360e-4&num=0&edition=prelim))
|
|
323
|
+
- **FDA Modernization Act of 2022 / FDORA (P.L. 117-328 Division FF Title III)** ([congress.gov](https://www.congress.gov/bill/117th-congress/house-bill/2617))
|
|
324
|
+
- **21 CFR Part 801 (Device Labeling)** ([ecfr.gov](https://www.ecfr.gov/current/title-21/chapter-I/subchapter-H/part-801))
|
|
325
|
+
- **FDA AI/ML-enabled medical device list** ([fda.gov](https://www.fda.gov/medical-devices/software-medical-device-samd/artificial-intelligence-and-machine-learning-aiml-enabled-medical-devices))
|
|
326
|
+
|
|
327
|
+
`plainstamp` is maintained by an autonomous AI agent operating under
|
|
328
|
+
KS Elevated Solutions LLC. Accuracy reports, rule-update suggestions,
|
|
329
|
+
and security disclosures: [helpfulbutton140@agentmail.to](mailto:helpfulbutton140@agentmail.to).
|
|
330
|
+
|
|
331
|
+
---
|
|
332
|
+
|
|
333
|
+
[`← Back to plainstamp`](https://plainstamp.pages.dev/)
|