AI Risk Management — Beyond Security, the Whole Model Lifecycle
prompt-injection covers the AI security slice — attackers manipulating LLM inputs. This skill covers everything else risk-related about deploying AI / ML systems: governance, fairness, robustness, transparency, monitoring, incident response specific to AI failures, third-party model risk, and compliance with the emerging AI regulatory landscape.
The framing is NIST AI RMF 1.0 (released 2023) — the most widely-adopted voluntary framework — plus the regulatory layer (EU AI Act, US executive orders, sector-specific guidance). Use this skill when you are deploying AI features beyond a chatbot wrapper, when a regulator asks "how do you govern your AI," or when something has gone wrong with an AI system in production.
Cross-references: prompt-injection for prompt-injection / LLM-specific security attacks; threat-modeling for design-time AI risk modeling; incident-triage and breach-patterns for AI-related incident response patterns; csf-mapping for the broader governance frame that AI RMF sits within.
The NIST AI RMF — four functions
Just like the cybersecurity framework, the AI RMF organizes the work into functions. Same shape, different content.
| Function |
What it covers |
| Govern (GOV) |
Policy, accountability, roles, risk appetite, AI principles, board oversight, governance structures |
| Map (MAP) |
Context — what is the AI system, what does it do, who is impacted, what could go wrong, what are the legal / ethical constraints |
| Measure (MEAS) |
Evaluate the system — fairness, robustness, accuracy, explainability, privacy, security; quantitative + qualitative metrics |
| Manage (MAN) |
Treat the risks — mitigations, monitoring, incident response, decommissioning, ongoing review |
The framework is voluntary but increasingly cited in contracts, RFPs, executive orders, and emerging regulations. Treat it as the lingua franca of AI risk.
Workflow
Step 1 — Inventory AI systems
Before assessment, build the inventory. Most organizations underestimate how much AI they actually deploy.
| Category |
Examples |
| First-party trained models |
Recommendation engines, fraud detection, churn prediction, internal ML pipelines |
| First-party LLM use |
Customer support chat, content generation, summarization, code generation, embeddings for search |
| Third-party AI features |
Stripe Radar (fraud), GitHub Copilot (code completion), Salesforce Einstein, Notion AI, Linear AI |
| Embedded AI in products you ship |
Suggested responses, smart defaults, AI sorting / ranking |
| AI in HR / hiring |
Resume screening, candidate matching, performance evaluation — high regulatory exposure |
| AI in customer-facing decisions |
Pricing, eligibility, content moderation, ad targeting — high regulatory exposure |
For each, record: vendor (if any), training data source, deployment context, who it affects, the decision it informs, how decisions are reviewed.
Step 2 — MAP: assess the context per system
For each AI system in the inventory, answer:
- Purpose — what is this system's stated goal? Does the actual deployment match?
- Stakeholders — who interacts with it, who is affected by its decisions, who is in a position to challenge those decisions?
- Legal / regulatory context — is this in scope for a specific law? (EU AI Act high-risk categories, US HUD fair-housing rules, EEOC for employment AI, FTC for unfair / deceptive practices, sector laws)
- Failure modes — what does "broken" look like? (Wrong answer, biased answer, hallucinated answer, slow answer, expensive answer, refused-to-answer-something-it-should, answered-something-it-should-not)
- Reversibility — when this system makes a wrong call, can the decision be undone? (Mortgage denial: hard to undo. Spam filter: easy)
Step 3 — MEASURE: evaluate the system
The categories of evaluation, with the engineering hooks for each:
Accuracy / performance
- Test set evaluation — held-out data, not the training data
- Performance on slices of data, not just aggregate (the system that's 95% accurate overall may be 60% accurate on the demographic that's most impacted)
- Confusion matrices for classification; quantile-based error analysis for regression
- For LLMs: task-specific evals (HELM, MMLU, custom evals) — and especially custom evals on the application's actual prompts
Fairness / bias
- Demographic parity — does the system produce similar outcomes across protected classes?
- Equalized odds — are false-positive and false-negative rates similar across groups?
- Calibration — when the system says "80% likely," is that actually 80% across all groups?
- Individual fairness — do similar inputs produce similar outputs?
These metrics often conflict — you cannot maximize all of them simultaneously. The MAP step should have decided which is most important for the use case. For hiring AI, equalized odds matters more than demographic parity. For loan approval, the choice depends on whose interests dominate.
Tooling: Fairlearn (Microsoft), AI Fairness 360 (IBM), What-If Tool (Google), Aequitas (University of Chicago), fairlearn.metrics, aif360.metrics.
Robustness
- Adversarial inputs — perturbations that flip predictions (Foolbox, ART for traditional ML)
- Distribution shift — does the model degrade when the input distribution changes (it will, eventually)?
- Stress testing — extreme but plausible inputs
For LLMs:
- Prompt injection (see
prompt-injection)
- Jailbreaks (DAN-style, role-play, encoded instructions, multi-turn manipulation)
- Indirect prompt injection (untrusted content the model reads)
- Output stability across paraphrased prompts
Explainability / transparency
- Local explanations — why did the model make this decision? SHAP, LIME, integrated gradients
- Global explanations — what features matter overall to the model?
- Model cards — Google's documentation pattern for ML models. Includes intended use, performance metrics, training data, limitations, ethical considerations
- System cards — for LLM-integrated systems, a longer-form version describing the entire AI pipeline
A model that cannot be explained at all is a model you cannot defend in a regulatory inquiry. For high-impact decisions, explainability is not optional.
Privacy
- Does the model leak training data? (Membership-inference attacks, training-data-extraction attacks for LLMs)
- Are inputs / outputs containing PII appropriately scoped (see
privacy-engineering)?
- For LLM fine-tuning: are PII redaction passes applied to training data?
Security
See prompt-injection — prompt injection, indirect injection, agent privilege boundaries, MCP security. Output to the AI RMF assessment is the security posture summary.
Step 4 — MANAGE: treat the risks
For each material risk surfaced in MEASURE:
| Risk |
Treatment options |
| Bias against protected class |
Retrain with balanced data; add constraint to training objective; pre/post-processing fairness corrections; remove the feature; remove the application |
| Hallucination on factual queries |
Retrieval-augmented generation; citation requirements; fact-checking step; user warning |
| Drift over time |
Monitoring; scheduled retraining; champion-challenger deployment |
| Adversarial robustness gaps |
Adversarial training; input validation; rate limiting on probing patterns |
| Lack of explainability for high-stakes decisions |
Switch to interpretable model class; add post-hoc explanation; add human-in-the-loop |
| Third-party model with insufficient transparency |
Vendor risk review; contractual guarantees on training data; switch to self-hosted alternative |
| PII leakage potential |
Differential privacy in training; PII redaction in prompts; output filtering |
Step 5 — GOVERN: structures and policies
The persistent layer that makes the above work over time.
- AI principles — written, board-approved, public if possible (Google AI Principles, Microsoft Responsible AI Standard, OpenAI Usage Policies are reference points)
- Roles — who is the AI risk owner? Who reviews new AI deployments? Who can stop one?
- Approval gates — high-impact AI systems (per the MAP step) require review before deployment. Low-impact systems do not — overengineering kills the process
- Documentation cadence — model cards updated on every retrain; system cards updated on every major change
- Incident response for AI — what triggers an investigation? (Wrong-answer rate above threshold, demographic-disparity spike, jailbreak in the wild)
- Decommissioning — every deployed model has an end-of-life plan. Production models with no owner and no maintenance are the AI version of unmaintained dependencies
Regulatory layer (high level — counsel determines specifics)
EU AI Act (in force 2024, enforcement phasing in through 2026)
Risk-tiered framework:
- Prohibited — social scoring by governments, certain biometric categorization, manipulative AI. Do not deploy
- High-risk — employment / education / credit / law enforcement / critical infrastructure / certain public services. Required: risk management system, data governance, technical documentation, transparency, human oversight, accuracy / robustness, registration in EU database, conformity assessment
- Limited risk — chatbots, deepfakes. Required: transparency (tell users they are interacting with AI; label AI-generated content)
- Minimal risk — most current AI applications. Voluntary codes of conduct
US (federal patchwork)
- Executive Order 14110 (2023) — AI safety, model reporting, NIST guidance development
- FTC enforcement under unfair / deceptive practices authority — particularly for AI claims and AI used in pricing / hiring / housing
- EEOC enforcement for employment AI
- Sector-specific (HUD for housing, CFPB for credit, FDA for medical AI)
- State laws (Colorado AI Act, NYC bias audit for AEDT, Illinois BIPA for biometrics, California AB-2013 / SB-942)
Standards (voluntary but referenced)
- NIST AI RMF 1.0 + Generative AI Profile
- ISO/IEC 42001 — AI management system standard
- ISO/IEC 23894 — AI risk management
Output format
# AI Risk Assessment
## System(s): [list]
## Framework: NIST AI RMF 1.0 [+ EU AI Act mapping if applicable]
## Date: [date]
## Assessor: [name]
### Executive summary
[2-3 paragraphs — top risks, governance posture, regulatory exposure, recommended next 90 days]
### AI system inventory
| System | Purpose | Stakeholders | Risk tier (per MAP) | Owner |
|--------|---------|--------------|---------------------|-------|
### MEASURE findings
| System | Category | Finding | Severity |
|--------|----------|---------|----------|
| [name] | Fairness | [Disparity description with metric] | High |
| [name] | Robustness | [Failure mode] | Medium |
### MANAGE plan
| Risk | Treatment | Owner | Deadline |
|------|-----------|-------|----------|
### GOVERN posture
- [ ] AI principles documented and approved
- [ ] AI inventory maintained
- [ ] Approval gate exists for high-impact deployments
- [ ] Model cards / system cards in place for production AI
- [ ] AI incident response defined
- [ ] Decommissioning plans exist
### Regulatory mapping (if applicable)
| Regulation | Status | Action items |
|------------|--------|--------------|
### References / evidence
[Links to model cards, eval reports, audit logs]
Disposition rule (Fixed / Deferred / Accepted Risk) per owasp-audit. AI accepted-risk decisions need both engineering and (often) legal / ethics sign-off depending on system impact.
Boundaries
- This skill produces risk assessments, governance artifacts, and implementation guidance
- For high-stakes regulated AI (medical devices, autonomous systems, hiring AI subject to local audit laws), regulatory determinations are made with counsel — this skill produces engineering inputs to that process, not the final compliance posture
- Refuse to help build AI systems that fall into the EU AI Act prohibited list, that violate civil rights laws (disparate impact in protected-class decisions), or that surveil individuals without lawful basis
- Refuse to help build systems designed to evade transparency / disclosure requirements (e.g., undisclosed bots, deepfakes designed to deceive in regulated contexts)
- For AI safety topics adjacent to but distinct from this skill (model alignment research, catastrophic-risk research, frontier model evaluation), defer to specialized literature and frontier labs — this skill is enterprise-deployment risk management
References
- NIST AI RMF 1.0 —
nist.gov/itl/ai-risk-management-framework (foundational)
- NIST AI RMF Generative AI Profile — addendum specific to generative AI
- EU AI Act —
artificialintelligenceact.eu (community-maintained guide) and official text via EUR-Lex
- NIST AI 100-1, 100-2 — companion documents
- ISO/IEC 42001 — AI management system standard
- OECD AI Principles — international reference
- EEOC technical assistance on AI in employment
- FTC guidance on AI — "Aiming for truth, fairness, and equity in your company's use of AI"
- Google Responsible AI Practices + Model Card Toolkit
- Microsoft Responsible AI Standard v2
- OpenAI Usage Policies + System Cards (for examples of system-card disclosure)
- Anthropic Responsible Scaling Policy + Acceptable Use Policy (for examples of governance disclosure)
- MIT AI Risk Repository — academic-curated catalog of AI risks
- Stanford CRFM Foundation Model Transparency Index — comparative transparency assessments
- Fairlearn, AI Fairness 360, What-If Tool, Aequitas — fairness evaluation tooling
- HELM (Holistic Evaluation of Language Models), MMLU, TruthfulQA — LLM evaluation benchmarks
1---2name: ai-risk-management3description: Apply the NIST AI Risk Management Framework (AI RMF 1.0) and adjacent guidance to AI / ML systems — model lifecycle governance, fairness and bias evaluation, robustness, transparency, accountability, third-party model risk, monitoring for drift, and AI incident response. Broader than prompt-injection (which is the security slice). Use when the user mentions 'AI risk,' 'AI governance,' 'NIST AI RMF,' 'AI compliance,' 'ML governance,' 'model risk management,' 'AI fairness,' 'AI bias,' 'algorithmic accountability,' 'AI Bill of Rights,' 'EU AI Act,' 'AI transparency,' 'model card,' 'AI red team,' 'AI safety,' 'responsible AI,' 'model drift,' 'concept drift,' 'AI monitoring,' 'AI incident,' or needs to assess or govern an AI / ML system.4---5
6# AI Risk Management — Beyond Security, the Whole Model Lifecycle
7
8`prompt-injection` covers the AI security slice — attackers manipulating LLM inputs. This skill covers everything else risk-related about deploying AI / ML systems: governance, fairness, robustness, transparency, monitoring, incident response specific to AI failures, third-party model risk, and compliance with the emerging AI regulatory landscape.
9
10The framing is NIST AI RMF 1.0 (released 2023) — the most widely-adopted voluntary framework — plus the regulatory layer (EU AI Act, US executive orders, sector-specific guidance). Use this skill when you are deploying AI features beyond a chatbot wrapper, when a regulator asks "how do you govern your AI," or when something has gone wrong with an AI system in production.
11
12Cross-references: `prompt-injection` for prompt-injection / LLM-specific security attacks; `threat-modeling` for design-time AI risk modeling; `incident-triage` and `breach-patterns` for AI-related incident response patterns; `csf-mapping` for the broader governance frame that AI RMF sits within.
13
14## The NIST AI RMF — four functions
15
16Just like the cybersecurity framework, the AI RMF organizes the work into functions. Same shape, different content.
17
18| Function | What it covers |
19|---|---|
20| **Govern (GOV)** | Policy, accountability, roles, risk appetite, AI principles, board oversight, governance structures |
21| **Map (MAP)** | Context — what is the AI system, what does it do, who is impacted, what could go wrong, what are the legal / ethical constraints |
22| **Measure (MEAS)** | Evaluate the system — fairness, robustness, accuracy, explainability, privacy, security; quantitative + qualitative metrics |
23| **Manage (MAN)** | Treat the risks — mitigations, monitoring, incident response, decommissioning, ongoing review |
24
25The framework is voluntary but increasingly cited in contracts, RFPs, executive orders, and emerging regulations. Treat it as the lingua franca of AI risk.
26
27## Workflow
28
29### Step 1 — Inventory AI systems
30
31Before assessment, build the inventory. Most organizations underestimate how much AI they actually deploy.
32
33| Category | Examples |
34|---|---|
35| **First-party trained models** | Recommendation engines, fraud detection, churn prediction, internal ML pipelines |
36| **First-party LLM use** | Customer support chat, content generation, summarization, code generation, embeddings for search |
37| **Third-party AI features** | Stripe Radar (fraud), GitHub Copilot (code completion), Salesforce Einstein, Notion AI, Linear AI |
38| **Embedded AI in products you ship** | Suggested responses, smart defaults, AI sorting / ranking |
39| **AI in HR / hiring** | Resume screening, candidate matching, performance evaluation — high regulatory exposure |
40| **AI in customer-facing decisions** | Pricing, eligibility, content moderation, ad targeting — high regulatory exposure |
41
42For each, record: vendor (if any), training data source, deployment context, who it affects, the decision it informs, how decisions are reviewed.
43
44### Step 2 — MAP: assess the context per system
45
46For each AI system in the inventory, answer:
47
48- **Purpose** — what is this system's stated goal? Does the actual deployment match?
49- **Stakeholders** — who interacts with it, who is affected by its decisions, who is in a position to challenge those decisions?
50- **Legal / regulatory context** — is this in scope for a specific law? (EU AI Act high-risk categories, US HUD fair-housing rules, EEOC for employment AI, FTC for unfair / deceptive practices, sector laws)
51- **Failure modes** — what does "broken" look like? (Wrong answer, biased answer, hallucinated answer, slow answer, expensive answer, refused-to-answer-something-it-should, answered-something-it-should-not)
52- **Reversibility** — when this system makes a wrong call, can the decision be undone? (Mortgage denial: hard to undo. Spam filter: easy)
53
54### Step 3 — MEASURE: evaluate the system
55
56The categories of evaluation, with the engineering hooks for each:
57
58#### Accuracy / performance
59
60- Test set evaluation — held-out data, not the training data
61- Performance on slices of data, not just aggregate (the system that's 95% accurate overall may be 60% accurate on the demographic that's most impacted)
62- Confusion matrices for classification; quantile-based error analysis for regression
63- For LLMs: task-specific evals (HELM, MMLU, custom evals) — and *especially* custom evals on the application's actual prompts
64
65#### Fairness / bias
66
67- **Demographic parity** — does the system produce similar outcomes across protected classes?
68- **Equalized odds** — are false-positive and false-negative rates similar across groups?
69- **Calibration** — when the system says "80% likely," is that actually 80% across all groups?
70- **Individual fairness** — do similar inputs produce similar outputs?
71
72These metrics often conflict — you cannot maximize all of them simultaneously. The MAP step should have decided which is most important for the use case. For hiring AI, equalized odds matters more than demographic parity. For loan approval, the choice depends on whose interests dominate.
73
74**Tooling:** Fairlearn (Microsoft), AI Fairness 360 (IBM), What-If Tool (Google), Aequitas (University of Chicago), `fairlearn.metrics`, `aif360.metrics`.
75
76#### Robustness
77
78- Adversarial inputs — perturbations that flip predictions (Foolbox, ART for traditional ML)
79- Distribution shift — does the model degrade when the input distribution changes (it will, eventually)?
80- Stress testing — extreme but plausible inputs
81
82For LLMs:
83- Prompt injection (see `prompt-injection`)
84- Jailbreaks (DAN-style, role-play, encoded instructions, multi-turn manipulation)
85- Indirect prompt injection (untrusted content the model reads)
86- Output stability across paraphrased prompts
87
88#### Explainability / transparency
89
90- **Local explanations** — why did the model make *this* decision? SHAP, LIME, integrated gradients
91- **Global explanations** — what features matter overall to the model?
92- **Model cards** — Google's documentation pattern for ML models. Includes intended use, performance metrics, training data, limitations, ethical considerations
93- **System cards** — for LLM-integrated systems, a longer-form version describing the entire AI pipeline
94
95A model that cannot be explained at all is a model you cannot defend in a regulatory inquiry. For high-impact decisions, explainability is not optional.
96
97#### Privacy
98
99- Does the model leak training data? (Membership-inference attacks, training-data-extraction attacks for LLMs)
100- Are inputs / outputs containing PII appropriately scoped (see `privacy-engineering`)?
101- For LLM fine-tuning: are PII redaction passes applied to training data?
102
103#### Security
104
105See `prompt-injection` — prompt injection, indirect injection, agent privilege boundaries, MCP security. Output to the AI RMF assessment is the security posture summary.
106
107### Step 4 — MANAGE: treat the risks
108
109For each material risk surfaced in MEASURE:
110
111| Risk | Treatment options |
112|---|---|
113| Bias against protected class | Retrain with balanced data; add constraint to training objective; pre/post-processing fairness corrections; remove the feature; remove the application |
114| Hallucination on factual queries | Retrieval-augmented generation; citation requirements; fact-checking step; user warning |
115| Drift over time | Monitoring; scheduled retraining; champion-challenger deployment |
116| Adversarial robustness gaps | Adversarial training; input validation; rate limiting on probing patterns |
117| Lack of explainability for high-stakes decisions | Switch to interpretable model class; add post-hoc explanation; add human-in-the-loop |
118| Third-party model with insufficient transparency | Vendor risk review; contractual guarantees on training data; switch to self-hosted alternative |
119| PII leakage potential | Differential privacy in training; PII redaction in prompts; output filtering |
120
121### Step 5 — GOVERN: structures and policies
122
123The persistent layer that makes the above work over time.
124
125- **AI principles** — written, board-approved, public if possible (Google AI Principles, Microsoft Responsible AI Standard, OpenAI Usage Policies are reference points)
126- **Roles** — who is the AI risk owner? Who reviews new AI deployments? Who can stop one?
127- **Approval gates** — high-impact AI systems (per the MAP step) require review before deployment. Low-impact systems do not — overengineering kills the process
128- **Documentation cadence** — model cards updated on every retrain; system cards updated on every major change
129- **Incident response for AI** — what triggers an investigation? (Wrong-answer rate above threshold, demographic-disparity spike, jailbreak in the wild)
130- **Decommissioning** — every deployed model has an end-of-life plan. Production models with no owner and no maintenance are the AI version of unmaintained dependencies
131
132## Regulatory layer (high level — counsel determines specifics)
133
134### EU AI Act (in force 2024, enforcement phasing in through 2026)
135
136Risk-tiered framework:
137
138- **Prohibited** — social scoring by governments, certain biometric categorization, manipulative AI. Do not deploy
139- **High-risk** — employment / education / credit / law enforcement / critical infrastructure / certain public services. Required: risk management system, data governance, technical documentation, transparency, human oversight, accuracy / robustness, registration in EU database, conformity assessment
140- **Limited risk** — chatbots, deepfakes. Required: transparency (tell users they are interacting with AI; label AI-generated content)
141- **Minimal risk** — most current AI applications. Voluntary codes of conduct
142
143### US (federal patchwork)
144
145- Executive Order 14110 (2023) — AI safety, model reporting, NIST guidance development
146- FTC enforcement under unfair / deceptive practices authority — particularly for AI claims and AI used in pricing / hiring / housing
147- EEOC enforcement for employment AI
148- Sector-specific (HUD for housing, CFPB for credit, FDA for medical AI)
149- State laws (Colorado AI Act, NYC bias audit for AEDT, Illinois BIPA for biometrics, California AB-2013 / SB-942)
150
151### Standards (voluntary but referenced)
152
153- NIST AI RMF 1.0 + Generative AI Profile
154- ISO/IEC 42001 — AI management system standard
155- ISO/IEC 23894 — AI risk management
156
157## Output format
158
159```markdown
160# AI Risk Assessment
161## System(s): [list]
162## Framework: NIST AI RMF 1.0 [+ EU AI Act mapping if applicable]
163## Date: [date]
164## Assessor: [name]
165
166### Executive summary
167[2-3 paragraphs — top risks, governance posture, regulatory exposure, recommended next 90 days]
168
169### AI system inventory
170| System | Purpose | Stakeholders | Risk tier (per MAP) | Owner |
171|--------|---------|--------------|---------------------|-------|
172
173### MEASURE findings
174| System | Category | Finding | Severity |
175|--------|----------|---------|----------|
176| [name] | Fairness | [Disparity description with metric] | High |
177| [name] | Robustness | [Failure mode] | Medium |
178
179### MANAGE plan
180| Risk | Treatment | Owner | Deadline |
181|------|-----------|-------|----------|
182
183### GOVERN posture
184- [ ] AI principles documented and approved
185- [ ] AI inventory maintained
186- [ ] Approval gate exists for high-impact deployments
187- [ ] Model cards / system cards in place for production AI
188- [ ] AI incident response defined
189- [ ] Decommissioning plans exist
190
191### Regulatory mapping (if applicable)
192| Regulation | Status | Action items |
193|------------|--------|--------------|
194
195### References / evidence
196[Links to model cards, eval reports, audit logs]
197```
198
199Disposition rule (Fixed / Deferred / Accepted Risk) per `owasp-audit`. AI accepted-risk decisions need both engineering and (often) legal / ethics sign-off depending on system impact.
200
201## Boundaries
202
203- This skill produces risk assessments, governance artifacts, and implementation guidance
204- For high-stakes regulated AI (medical devices, autonomous systems, hiring AI subject to local audit laws), regulatory determinations are made with counsel — this skill produces engineering inputs to that process, not the final compliance posture
205- Refuse to help build AI systems that fall into the EU AI Act prohibited list, that violate civil rights laws (disparate impact in protected-class decisions), or that surveil individuals without lawful basis
206- Refuse to help build systems designed to evade transparency / disclosure requirements (e.g., undisclosed bots, deepfakes designed to deceive in regulated contexts)
207- For AI safety topics adjacent to but distinct from this skill (model alignment research, catastrophic-risk research, frontier model evaluation), defer to specialized literature and frontier labs — this skill is enterprise-deployment risk management
208
209## References
210
211- **NIST AI RMF 1.0** — `nist.gov/itl/ai-risk-management-framework` (foundational)
212- **NIST AI RMF Generative AI Profile** — addendum specific to generative AI
213- **EU AI Act** — `artificialintelligenceact.eu` (community-maintained guide) and official text via EUR-Lex
214- **NIST AI 100-1, 100-2** — companion documents
215- **ISO/IEC 42001** — AI management system standard
216- **OECD AI Principles** — international reference
217- **EEOC technical assistance** on AI in employment
218- **FTC guidance on AI** — "Aiming for truth, fairness, and equity in your company's use of AI"
219- **Google Responsible AI Practices** + **Model Card Toolkit**
220- **Microsoft Responsible AI Standard** v2
221- **OpenAI Usage Policies + System Cards** (for examples of system-card disclosure)
222- **Anthropic Responsible Scaling Policy + Acceptable Use Policy** (for examples of governance disclosure)
223- **MIT AI Risk Repository** — academic-curated catalog of AI risks
224- **Stanford CRFM Foundation Model Transparency Index** — comparative transparency assessments
225- **Fairlearn**, **AI Fairness 360**, **What-If Tool**, **Aequitas** — fairness evaluation tooling
226- **HELM** (Holistic Evaluation of Language Models), **MMLU**, **TruthfulQA** — LLM evaluation benchmarks