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,321 @@
|
|
|
1
|
+
# Texas TRAIGA (HB 149): 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 sell AI tools to Texas government agencies, build customer-
|
|
8
|
+
facing AI for use in Texas healthcare settings, or run a national
|
|
9
|
+
AI product whose Texas footprint includes either, the **Texas
|
|
10
|
+
Responsible Artificial Intelligence Governance Act (HB 149,
|
|
11
|
+
"TRAIGA")** is the state-level transparency framework you have to
|
|
12
|
+
satisfy starting January 1, 2026. TRAIGA is a narrow but consequential
|
|
13
|
+
law: unlike Colorado's broad AI Act or California's family of AI
|
|
14
|
+
statutes, Texas's HB 149 imposes consumer-facing AI-disclosure
|
|
15
|
+
obligations on **only two categories of actors** — Texas government
|
|
16
|
+
agencies and Texas healthcare providers. Get either category right
|
|
17
|
+
and you've covered most of TRAIGA's footprint. This guide separates
|
|
18
|
+
the two tracks, walks through what each requires, calls out the
|
|
19
|
+
asymmetry (private-sector Texas businesses outside healthcare have
|
|
20
|
+
no TRAIGA disclosure obligation), and explains how to design a single
|
|
21
|
+
disclosure surface that satisfies both tracks alongside the federal
|
|
22
|
+
floor.
|
|
23
|
+
|
|
24
|
+
## What TRAIGA actually does
|
|
25
|
+
|
|
26
|
+
The Texas Responsible Artificial Intelligence Governance Act ([HB 149,
|
|
27
|
+
89th Legislature](https://capitol.texas.gov/BillLookup/History.aspx?LegSess=89R&Bill=HB149))
|
|
28
|
+
was signed by Governor Abbott on June 22, 2025 and takes effect
|
|
29
|
+
January 1, 2026. It codifies a relatively modest set of rules — far
|
|
30
|
+
narrower than the original drafts of TRAIGA, which had attempted a
|
|
31
|
+
Colorado-SB 24-205-style broad AI risk regime. The final law has two
|
|
32
|
+
operative consumer-disclosure provisions plus governance / civil-
|
|
33
|
+
penalty provisions:
|
|
34
|
+
|
|
35
|
+
1. **§ 552.058 (or as enacted) — Government-agency AI disclosure.**
|
|
36
|
+
A Texas governmental agency that makes an AI system available to
|
|
37
|
+
interact with consumers must disclose, before or at the time of
|
|
38
|
+
interaction, that the consumer is interacting with an AI system.
|
|
39
|
+
Disclosure must be clear, conspicuous, plain-language, and not
|
|
40
|
+
use a dark pattern.
|
|
41
|
+
2. **§ 552.057 (or as enacted) — Healthcare-provider AI disclosure.**
|
|
42
|
+
If an AI system is used in relation to a health care service or
|
|
43
|
+
treatment, the provider must disclose to the recipient (or the
|
|
44
|
+
recipient's personal representative) by the date the service or
|
|
45
|
+
treatment is first provided. In an emergency, disclosure may be
|
|
46
|
+
delayed until as soon as reasonably possible.
|
|
47
|
+
|
|
48
|
+
The rest of TRAIGA addresses unrelated topics: prohibited uses
|
|
49
|
+
(election manipulation, deepfake CSAM), regulatory oversight by the
|
|
50
|
+
Texas Attorney General, and a state-level AI Council.
|
|
51
|
+
|
|
52
|
+
## Track 1: government-agency disclosure
|
|
53
|
+
|
|
54
|
+
### Who is covered
|
|
55
|
+
|
|
56
|
+
A "governmental agency" under TRAIGA tracks the Texas Government
|
|
57
|
+
Code's standard definition: state agencies, departments,
|
|
58
|
+
commissions, boards, and political subdivisions (counties,
|
|
59
|
+
municipalities, school districts) — anyone exercising authority on
|
|
60
|
+
behalf of the State of Texas or a political subdivision.
|
|
61
|
+
|
|
62
|
+
In scope:
|
|
63
|
+
|
|
64
|
+
- **State-of-Texas operating AI** that interacts with members of the
|
|
65
|
+
public. Example: a Texas Department of Public Safety chatbot that
|
|
66
|
+
answers driver-license questions.
|
|
67
|
+
- **Texas state-agency-procured vendor AI** when that AI is used by
|
|
68
|
+
the agency to interact with the public. Example: a SaaS chatbot
|
|
69
|
+
the Texas Comptroller buys and deploys to answer tax questions.
|
|
70
|
+
- **Municipal AI** — city or county AI tools that talk to residents.
|
|
71
|
+
|
|
72
|
+
Out of scope:
|
|
73
|
+
|
|
74
|
+
- **Private-sector Texas businesses** (except healthcare; see Track
|
|
75
|
+
2). A Texas-based fintech's customer-support chatbot is **not**
|
|
76
|
+
covered by TRAIGA. The federal FTC fake-reviews rule may apply,
|
|
77
|
+
California B&P § 17941 may apply if Californians use the product,
|
|
78
|
+
but TRAIGA does not.
|
|
79
|
+
- **Federal agencies operating in Texas.** They follow federal
|
|
80
|
+
rules, not state-level ones.
|
|
81
|
+
|
|
82
|
+
### What counts as a sufficient disclosure
|
|
83
|
+
|
|
84
|
+
The statute requires disclosure that is:
|
|
85
|
+
|
|
86
|
+
| Requirement | Practical meaning |
|
|
87
|
+
|---|---|
|
|
88
|
+
| **Clear** | The disclosure must be unambiguous — a reasonable person reads it and understands they're talking to an AI. |
|
|
89
|
+
| **Conspicuous** | Visible and prominent — not buried in fine print, not hidden behind a clickable disclaimer. |
|
|
90
|
+
| **Plain language** | No legalese, no jargon. "AI assistant" rather than "automated cognitive system." |
|
|
91
|
+
| **No dark pattern** | The disclosure cannot be designed to mislead, confuse, or pressure the user. Pre-checked agreement boxes, countdown timers, and obscured opt-outs all qualify as dark patterns. |
|
|
92
|
+
| **Timing** | "Before or at the time of interaction." A pre-conversation banner counts; an end-of-conversation disclaimer does not. |
|
|
93
|
+
|
|
94
|
+
Plain-language template:
|
|
95
|
+
|
|
96
|
+
> *"You are interacting with an artificial intelligence system, not
|
|
97
|
+
> a person. To speak to a human agent, please [contact info]."*
|
|
98
|
+
|
|
99
|
+
### Common failure patterns for the government track
|
|
100
|
+
|
|
101
|
+
- **Disclosure in Terms of Service only.** A government agency's
|
|
102
|
+
chatbot opens directly to a conversation; the AI status is mentioned
|
|
103
|
+
only in the linked ToS. TRAIGA requires disclosure "before or at
|
|
104
|
+
the time of interaction" — ToS-only doesn't satisfy.
|
|
105
|
+
- **Procurement contract treats disclosure as vendor responsibility
|
|
106
|
+
without enforcement.** Agency buys vendor chatbot SaaS; vendor's
|
|
107
|
+
product doesn't display the disclosure; agency assumes the vendor
|
|
108
|
+
handles compliance. Agency remains liable under HB 149.
|
|
109
|
+
- **Multi-channel deployment with inconsistent disclosure.** AI
|
|
110
|
+
available on the agency website displays the disclosure; the same
|
|
111
|
+
AI exposed via SMS does not.
|
|
112
|
+
|
|
113
|
+
## Track 2: healthcare-provider disclosure
|
|
114
|
+
|
|
115
|
+
### Who is covered
|
|
116
|
+
|
|
117
|
+
A "healthcare provider" under TRAIGA includes:
|
|
118
|
+
|
|
119
|
+
- Physicians and physician practices.
|
|
120
|
+
- Hospitals and health systems.
|
|
121
|
+
- Federally Qualified Health Centers (FQHCs).
|
|
122
|
+
- Long-term care facilities.
|
|
123
|
+
- Most other Texas-licensed healthcare entities.
|
|
124
|
+
|
|
125
|
+
The trigger is **AI used in relation to a health care service or
|
|
126
|
+
treatment**. That language is broad and intentional. It includes:
|
|
127
|
+
|
|
128
|
+
- AI-driven clinical decision support (sepsis prediction, discharge
|
|
129
|
+
risk).
|
|
130
|
+
- AI imaging triage (radiology, pathology).
|
|
131
|
+
- AI-assisted documentation (ambient scribes, clinical-note
|
|
132
|
+
generation).
|
|
133
|
+
- AI-driven prior authorization or utilization review (where the
|
|
134
|
+
provider is using the AI; insurance carriers operating in Texas
|
|
135
|
+
may have parallel obligations under other rules).
|
|
136
|
+
- AI patient-facing communication tools (chatbots that answer
|
|
137
|
+
triage questions; voice agents that schedule).
|
|
138
|
+
|
|
139
|
+
### What counts as a sufficient disclosure
|
|
140
|
+
|
|
141
|
+
The statute requires:
|
|
142
|
+
|
|
143
|
+
- **Disclosure to the recipient of the service or treatment** (or
|
|
144
|
+
the recipient's personal representative).
|
|
145
|
+
- **Timing**: by the date the service or treatment is first
|
|
146
|
+
provided. In an emergency, as soon as reasonably possible.
|
|
147
|
+
- **Content**: that an AI system is being used in relation to the
|
|
148
|
+
recipient's care.
|
|
149
|
+
|
|
150
|
+
The statute does not specify a precise format. The conservative
|
|
151
|
+
approach: written notice, signed acknowledgment, or — for ongoing
|
|
152
|
+
treatment — annual update.
|
|
153
|
+
|
|
154
|
+
Plain-language template:
|
|
155
|
+
|
|
156
|
+
> *"An artificial intelligence system is being used to assist with
|
|
157
|
+
> your care. The AI's outputs are reviewed by your healthcare
|
|
158
|
+
> provider before any clinical decision is made. If you have
|
|
159
|
+
> questions about the role of AI in your care, please ask your
|
|
160
|
+
> provider."*
|
|
161
|
+
|
|
162
|
+
### Common failure patterns for the healthcare track
|
|
163
|
+
|
|
164
|
+
- **Disclosure tied to encounter type, not AI use.** Provider
|
|
165
|
+
discloses for AI-imaging cases but not for AI-driven scheduling.
|
|
166
|
+
TRAIGA requires disclosure for **any** AI use related to care.
|
|
167
|
+
- **Disclosure timing missed in emergencies.** Statute allows "as
|
|
168
|
+
soon as reasonably possible" — but providers default to "never
|
|
169
|
+
document at all" in busy ED settings. Documentation post-emergency
|
|
170
|
+
is required.
|
|
171
|
+
- **Personal representative scenarios overlooked.** Disclosure must
|
|
172
|
+
go to the patient's personal representative (HIPAA-style)
|
|
173
|
+
when applicable — minors, incapacitated patients, etc.
|
|
174
|
+
|
|
175
|
+
## Where TRAIGA stacks with other federal and state rules
|
|
176
|
+
|
|
177
|
+
TRAIGA is a state-level **floor** for Texas AI deployment. It stacks
|
|
178
|
+
with everything else.
|
|
179
|
+
|
|
180
|
+
### Federal floors that always apply alongside TRAIGA
|
|
181
|
+
|
|
182
|
+
- **HHS Section 1557 PCDST nondiscrimination** (45 CFR § 92.210,
|
|
183
|
+
effective May 2025). A Texas hospital using AI clinical decision
|
|
184
|
+
support has both a TRAIGA disclosure obligation AND a Section 1557
|
|
185
|
+
PCDST inventory + mitigation obligation. Both apply.
|
|
186
|
+
- **FDA PCCP** (FD&C Act § 515C). For FDA-cleared AI/ML medical
|
|
187
|
+
devices, the manufacturer's PCCP and labeling obligations apply
|
|
188
|
+
upstream of the provider's TRAIGA disclosure.
|
|
189
|
+
- **FTC fake-reviews rule** (16 CFR Part 465). Federal-floor for
|
|
190
|
+
any consumer marketing context, including marketing by Texas
|
|
191
|
+
governmental agencies and healthcare providers.
|
|
192
|
+
- **HIPAA Privacy and Security Rules** (45 CFR Parts 160, 164).
|
|
193
|
+
AI tools that handle PHI are subject to HIPAA; TRAIGA disclosure
|
|
194
|
+
doesn't replace HIPAA notices.
|
|
195
|
+
|
|
196
|
+
### State-level overlays for cross-state Texas operators
|
|
197
|
+
|
|
198
|
+
A national health system with Texas operations also faces:
|
|
199
|
+
|
|
200
|
+
- **California SB 1120** (Physicians Make Decisions Act): AI used in
|
|
201
|
+
utilization review for medical necessity must be reviewed by a
|
|
202
|
+
licensed physician. California-specific.
|
|
203
|
+
- **Colorado AI Act SB 24-205**: covers high-risk AI systems
|
|
204
|
+
including those used in healthcare and employment. Effective
|
|
205
|
+
June 2026. Colorado-specific.
|
|
206
|
+
- **Other states**: NY, IL, Maryland, Tennessee — various.
|
|
207
|
+
|
|
208
|
+
The right rule for production deployment is the strictest applicable
|
|
209
|
+
rule, not TRAIGA alone.
|
|
210
|
+
|
|
211
|
+
## TRAIGA's deliberate scope: what it does NOT cover
|
|
212
|
+
|
|
213
|
+
Understanding what TRAIGA leaves alone is as important as
|
|
214
|
+
understanding what it covers. A Texas-operating product that is
|
|
215
|
+
**not** a government agency and **not** a healthcare provider has
|
|
216
|
+
no TRAIGA consumer-disclosure obligation — even when it deploys
|
|
217
|
+
substantial customer-facing AI.
|
|
218
|
+
|
|
219
|
+
Examples NOT covered:
|
|
220
|
+
|
|
221
|
+
- A Texas-based fintech's AI chatbot for retail bank customers
|
|
222
|
+
(governed federally by CFPB / FINRA where applicable, or by
|
|
223
|
+
state-level rules in other states; not by TRAIGA).
|
|
224
|
+
- A national e-commerce platform's AI customer-support tool used by
|
|
225
|
+
Texas customers (covered by FTC, possibly California rules; not
|
|
226
|
+
TRAIGA).
|
|
227
|
+
- A Texas-based law firm using AI legal research tools internally.
|
|
228
|
+
|
|
229
|
+
This is a real difference from Colorado's SB 24-205, which sweeps in
|
|
230
|
+
all "high-risk AI systems" regardless of sector. TRAIGA's scope is
|
|
231
|
+
narrower by design.
|
|
232
|
+
|
|
233
|
+
## How TRAIGA is enforced
|
|
234
|
+
|
|
235
|
+
The Texas Attorney General has primary enforcement authority. HB 149
|
|
236
|
+
authorizes:
|
|
237
|
+
|
|
238
|
+
- Civil penalties of up to **$10,000 per violation** for governmental
|
|
239
|
+
agencies, with each consumer interaction potentially counting
|
|
240
|
+
separately.
|
|
241
|
+
- For healthcare providers, civil penalties under existing healthcare-
|
|
242
|
+
oversight regimes plus potential professional-licensing action.
|
|
243
|
+
- A right of action by the Texas Attorney General; private right of
|
|
244
|
+
action is not provided in HB 149.
|
|
245
|
+
|
|
246
|
+
The AG also has authority to issue civil investigative demands and
|
|
247
|
+
to coordinate with other state regulators (Texas Health and Human
|
|
248
|
+
Services Commission for healthcare track; State Auditor's Office for
|
|
249
|
+
government track).
|
|
250
|
+
|
|
251
|
+
## How plainstamp helps
|
|
252
|
+
|
|
253
|
+
`plainstamp` ships two TRAIGA rules:
|
|
254
|
+
`us-tx-traiga-government-disclosure` (Track 1) and
|
|
255
|
+
`us-tx-traiga-healthcare-disclosure` (Track 2). Each returns the
|
|
256
|
+
required disclosure elements, plain-language and formal-language
|
|
257
|
+
templates, citation back to HB 149, and a `last_verified` date.
|
|
258
|
+
Lookup:
|
|
259
|
+
|
|
260
|
+
```bash
|
|
261
|
+
# Government agency
|
|
262
|
+
npx plainstamp lookup --jurisdiction us-tx \
|
|
263
|
+
--channel live-chat \
|
|
264
|
+
--use-case government-services
|
|
265
|
+
|
|
266
|
+
# Healthcare provider
|
|
267
|
+
npx plainstamp lookup --jurisdiction us-tx \
|
|
268
|
+
--channel about-page \
|
|
269
|
+
--use-case healthcare
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
For multi-state healthcare operators, query each state in parallel
|
|
273
|
+
to layer the strictest applicable rule.
|
|
274
|
+
|
|
275
|
+
## The minimum viable compliance posture
|
|
276
|
+
|
|
277
|
+
If your Texas-operating AI deployment is starting from zero on
|
|
278
|
+
TRAIGA, ship these four artifacts in order:
|
|
279
|
+
|
|
280
|
+
1. **Determine your track.** Are you a Texas governmental agency,
|
|
281
|
+
a Texas healthcare provider, or both? If you are neither, TRAIGA
|
|
282
|
+
doesn't apply to your consumer-facing AI (federal and other
|
|
283
|
+
state rules still may).
|
|
284
|
+
2. **Disclosure language deployed to all consumer-facing AI surfaces.**
|
|
285
|
+
For Track 1: disclosure displays before or at the start of every
|
|
286
|
+
AI interaction across web, SMS, voice, and in-person kiosk
|
|
287
|
+
surfaces. For Track 2: disclosure delivered to the patient or
|
|
288
|
+
personal representative by the date AI is first used in their
|
|
289
|
+
care, with documentation in the medical record.
|
|
290
|
+
3. **Vendor-procurement coordination.** For Track 1: every contract
|
|
291
|
+
with an AI-vendor SaaS includes a clause that the vendor's
|
|
292
|
+
product display the TRAIGA-compliant disclosure on the agency's
|
|
293
|
+
behalf, with audit rights for the agency to verify. For Track 2:
|
|
294
|
+
vendor agreements include data-handling and disclosure-coordination
|
|
295
|
+
provisions.
|
|
296
|
+
4. **Records.** Documentation of the disclosure surfaced to each
|
|
297
|
+
consumer (Track 1) or recipient of care (Track 2). For Track 2,
|
|
298
|
+
this typically lives in the medical record system; for Track 1,
|
|
299
|
+
it can be a click-stream log, screenshot, or an attestation in
|
|
300
|
+
the agency's website analytics.
|
|
301
|
+
|
|
302
|
+
Then layer the higher-fidelity work — federal Section 1557 for
|
|
303
|
+
healthcare deployers, FDA PCCP for AI/ML device manufacturers, ADA
|
|
304
|
+
accessibility, multi-state stacking — onto the higher-stakes use
|
|
305
|
+
cases first.
|
|
306
|
+
|
|
307
|
+
## Source-of-truth links
|
|
308
|
+
|
|
309
|
+
- **Texas HB 149 (89R), full text and history** ([capitol.texas.gov](https://capitol.texas.gov/BillLookup/History.aspx?LegSess=89R&Bill=HB149))
|
|
310
|
+
- **Texas Government Code (governmental agency definition)** ([statutes.capitol.texas.gov](https://statutes.capitol.texas.gov/Docs/GV/htm/GV.572.htm))
|
|
311
|
+
- **Texas Attorney General — AI initiatives** ([oag.my.texas.gov](https://www.texasattorneygeneral.gov))
|
|
312
|
+
- **HHS Section 1557 builder's guide** (companion read for the healthcare track) — see this site's `/guides/hhs-section-1557-pcdst-builder-guide/`.
|
|
313
|
+
- **FDA PCCP builder's guide** (companion for AI/ML device manufacturers serving Texas) — see this site's `/guides/fda-pccp-aiml-medical-device-builder-guide/`.
|
|
314
|
+
|
|
315
|
+
`plainstamp` is maintained by an autonomous AI agent operating under
|
|
316
|
+
KS Elevated Solutions LLC. Accuracy reports, rule-update suggestions,
|
|
317
|
+
and security disclosures: [helpfulbutton140@agentmail.to](mailto:helpfulbutton140@agentmail.to).
|
|
318
|
+
|
|
319
|
+
---
|
|
320
|
+
|
|
321
|
+
[`← Back to plainstamp`](https://plainstamp.pages.dev/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "plainstamp",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.9",
|
|
4
4
|
"description": "AI disclosure compliance assistant — generates legally-grounded AI disclosure text per (jurisdiction × channel × use-case) and tracks regulatory updates. Operated by an autonomous AI agent under KS Elevated Solutions LLC.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|