White Papers
Agentic AI in Regulated Industries: A Production Playbook
11 min read | Published

A practical playbook for moving from proof of concept to governed, auditable, production-ready AI.
For regulated organizations building AI agents on trusted data, governed semantics, auditable workflows, and enterprise-grade controls.
Executive Summary
Most agentic AI projects make it through the demo without much trouble. Production is a different test, and most of them fail it.
The proof of concept is rarely the hard part. A demo can show an agent finding information, drafting a response, or taking the next step in a workflow. Production is different. In production, the agent touches real customer data, regulated processes, operational systems, and decisions that may need to be explained months later.
The mistake is predictable: teams select a model first, build a convincing pilot, and add governance only when security, risk, or compliance asks for evidence. By then, adding governance means a political fight, not an engineering ticket.
This playbook puts the order back where it belongs: classify the use case, calibrate the autonomy, ground the agent in governed business context, give it its own identity, limit what it can see and do, and make every action observable from day one.
WHY IT MATTERS
For analytics and decision intelligence, the semantic layer becomes a control plane for agentic AI. It gives agents governed metrics, consistent business definitions, permission-aware access, and a deterministic query path, so the model is not improvising what "revenue," "risk," "active customer," or "exposure" means.
If This Is All Someone Reads
Seven things that decide whether an agent survives production. The rest of this playbook explains each one.
Do not assume every AI workflow needs agency.
First decide whether the task needs multi-step planning, changing next actions, or autonomous tool use. If not, use simpler automation or decision support.
Classify autonomy and data sensitivity together.
The combination tells you the governance load, deployment model, human review requirement, and audit depth.
Treat agent identity as mandatory.
Agents need their own credentials, scopes, logs, and owners. Do not let them borrow human access.
Ground agents in governed context.
Use certified metrics, semantic definitions, permissions, knowledge, rules, and guardrails before the LLM generates or acts.
Instrument the runtime.
Track prompts, tool calls, data used, approvals, overrides, failures, drift, and disable/rollback time.
Choose the smallest capable model.
Match model size and deployment to the task, data sensitivity, latency, cost, and regulatory exposure.
Prepare for EU AI Act transparency now.
Even where high-risk obligations shift, transparency, auditability, and disclosure should be built into architecture, not patched onto outputs later.
PART I: Why Agentic AI Changes the Risk Picture
Most AI governance built so far was designed for a different problem than the one agents create. This section explains the shift and what it demands.
From Output Risk to Action Risk
Generative AI produces content. It can still be wrong, but in many workflows a person reads the output before anything happens. Agentic AI is different. It can plan, retrieve, call tools, trigger automations, write back to systems, and decide the next step based on what just happened.
That shift changes the risk model from "the AI might say the wrong thing" to "the AI might do the wrong thing." Most existing AI governance was designed for the first category. Regulated industries need controls for the second.
THE PRODUCTION TEST
Do not ask whether the agent sounds intelligent. Ask what it can do, what systems it can touch, what data it can see, who authorized the action, and whether you can reconstruct the decision later.
Does This Actually Need to Be Agentic?
Many workflows described as agentic are standard automation with a conversational interface. That is not a criticism. In regulated settings, simpler is often safer, cheaper, and easier to approve. Run a use case through these questions before treating it as an agent at all.
Question
If the answer is no
Does the task require more than one decision, where each step depends on the previous step?
Use workflow automation or retrieval, not an agent.
Would the correct next action change if the situation changes mid-task?
Use deterministic rules or decision support.
Can the system act without a person approving every action?
Treat it as decision support and size governance accordingly.
Would a mistake affect customers, money, safety, credit, benefits, claims, or regulated reporting?
Keep human review and auditability strong; avoid autonomous action.
Can the task be completed using governed metrics and known business rules?
Ground the workflow in the semantic layer before using open-ended reasoning.
Use-Case Intake
Run this before anyone writes code. The point is to capture evidence, not just answers, so that every later decision about deployment and governance traces back to something documented.
Dimension
Question to answer
Evidence to capture
Workflow
What business process changes?
Process owner, current steps, downstream systems
Autonomy
Recommend only, act with approval, or act inside limits?
Autonomy level and human review point
Impact
Could it affect customers, credit, claims, safety, money, or filings?
Impact category and escalation path
Data
Does it touch personal, health, payment, trading, or confidential data?
Data classes, retention, residency, access owner
Systems
What can it read, write, trigger, or schedule?
Tool list, scopes, write permissions
Jurisdiction
Which frameworks matter?
EU AI Act, GDPR, HIPAA, FINRA, DORA, PCI DSS, SOC 2, NIST AI RMF, sector rules
GoodData.AI grounding
Which metrics, datasets, dashboards, semantic objects, or knowledge sources are authoritative?
Certified objects, metric definitions, lineage, permissions, context sources
PART II: Classify and Govern
Two variables drive almost every governance decision that follows: how much autonomy the agent has, and how sensitive the data is. This section classifies both, then assigns ownership.
Autonomy Levels
Every agent sits somewhere on this scale, and the level it lands on decides almost everything else: deployment model, oversight, and how deep the audit trail needs to go.
Level
Meaning
Typical regulated posture
L0
No AI involved: manual process, static lookup, or deterministic report.
Standard data governance.
L1
Suggests or drafts only. Nothing happens until a person acts.
Human review; log inputs and outputs.
L2
Recommends a decision. Human approval is required before action.
Human approval; decision rationale; sampling review.
L3
Acts inside hard limits. Exceptions route to a person.
Pre-approved guardrails; agent identity; full action logs; rollback path.
L4
Acts in a bounded domain without per-action approval.
Private or tightly governed deployment; strong testing; runtime monitoring; formal risk sign-off.
L5
Fully autonomous across broad domains.
Treat as inappropriate for a first regulated workflow without exceptional oversight.
Autonomy × Data Sensitivity Matrix
Autonomy alone doesn't set the governance bar. Cross it against how sensitive the data is, and the right posture for each combination falls out below.
Data sensitivity / Autonomy
L1–L2 Human-controlled
L3 Limited action
L4 Bounded autonomou
Low sensitivity
Standard AI controls; log outputs, prompts, sources, and approvals where needed.
Tool scopes; rate limits; rollback; basic monitoring.
Bounded domain; monitoring; periodic review.
Business confidential
Permission-aware retrieval; certified sources; approval log; lineage.
Agent identity; tool scopes; audit trail; drift checks.
Private deployment preferred; full observability; risk review.
Personal / regulated data
Human review; privacy controls; data minimization; explainability; retention rules.
Private or controlled deployment; audit trail; human override; DPIA/PIA where applicable.
High scrutiny; strong justification; formal risk acceptance; continuous monitoring.
Safety, money movement, credit, claims, clinical, filings
Usually decision support only; human review required; evidence package.
Very limited action boundaries; mandatory escalation; rollback.
Avoid unless oversight, testing, and accountability are mature.
RULE OF THUMB
Same data does not mean same governance. A complaint-drafting assistant and a credit-limit agent may both touch sensitive data, but the second changes outcomes. Govern the action, not only the dataset.
Security Failure Modes
These five map to OWASP's Top 10 for Agentic Applications, built with input from more than 100 security researchers. Each one comes with a specific test you can run before launch, not just a description to nod along to.
Failure mode
What it looks like
Pre-launch test
Goal hijack
Instructions in a document or message redirect the agent away from its objective.
Inject hostile instructions into retrieved content and verify the agent refuses or ignores them.
Identity and privilege abuse
The agent reaches systems or data outside its task.
Run a permissions audit on the agent identity and remove unnecessary scopes.
Over-trust
A confident, formatted answer gets approved without scrutiny.
Require a second reviewer above risk thresholds, regardless of output confidence.
Cascading failure
One bad output propagates through other agents or workflows.
Seed bad data and verify downstream checks catch it before action.
Silent drift
Decision patterns change over time without anyone noticing.
Compare monthly action, override, error, and exception patterns.
Decision Rights
Put owners in writing before production. If the team cannot immediately name who owns production release, data access, and runtime monitoring, the agent is not ready.
Decision
Primary owner
Required evidence
Use-case approval
Business owner + AI governance council
Business objective, risk classification, success metric
Regulatory classification
Legal / compliance
Applicable regimes and obligations
Data access
Data owner + privacy
Data classes, residency, retention, minimization
Tool permissions
Security + system owner
Scope list, write permissions, rate limits
Semantic grounding
Analytics / data product owner
Certified metrics, dashboards, lineage, definitions
Model and deployment choice
AI / ML platform team
Model rationale, data flow, vendor risk, fallback
Production release
Risk, security, compliance, technology
Test evidence, audit evidence, rollback plan
Ongoing monitoring
Business owner + AI risk team
Monthly review, incidents, drift, overrides, disable time
Lifecycle Controls
Governance isn't one gate before launch. It's five checkpoints across the life of the agent, and most teams build the first two well and then stop.
Stage
Control
Done means
Design
Classify the use case; list the five worst plausible failures.
A reviewer can see the risk model before a pilot exists.
Pre-production
Test with realistic anonymized data and adversarial scenarios.
One full test run can be reconstructed end-to-end.
Release
Verify agent identity, permissions, logging, rollback, and escalation.
No borrowed human credentials; no undocumented write access.
Runtime
Monitor rate limits, tool calls, policy violations, drift, and overrides.
A business owner can see what the agent actually did, not only what it was supposed to do.
Post-deployment
Run a monthly review of value and risk metrics.
The agent has evidence of continued oversight after launch.
PART III: Make the Data Layer Agent-Ready
In analytics and decision intelligence, the agent is only as trustworthy as the business context it uses. If the model has to infer metric definitions, permissions, lineage, or policy from scattered documentation, it will eventually improvise. A governed semantic layer changes the operating model.
WHY THE SEMANTIC LAYER MATTERS
The semantic layer is not just a BI convenience. For agentic analytics, it becomes a governance layer: certified metrics, consistent business definitions, permission-aware access, lineage, and a controlled query path that agents can use without touching raw data directly.
GoodData.AI Capabilities to Anchor the Architecture
Each capability below maps to one of the controls this playbook has already called for, turning the principles into something a platform actually enforces.
GoodData.AI capability to emphasize
Why it matters for regulated agentic AI
Governed semantic model and metrics
Agents work from business-approved definitions instead of inventing their own interpretation of KPIs.
Analytics catalog and certified objects
Teams can define which dashboards, metrics, and objects are trusted sources for agent reasoning.
Context management: AI Memory, AI Knowledge, rules, and guardrails
Agents can use organization-specific instructions and knowledge while staying within approved boundaries.
Permission-aware skills and tools
The agent can only see and do what the tenant, workspace, group, or user context allows.
Auditability and observability
Teams can trace sessions, inputs, outputs, tool calls, lineage, and usage patterns.
Deployment flexibility: cloud, cloud native, on-premise, or hybrid
Regulated organizations can align AI architecture with sovereignty, residency, and infrastructure requirements.
Open architecture: MCP, A2A, APIs, SDKs, BYO LLM
Customers can embed GoodData analytics and AI into existing agents, products, and workflows without locking every layer into one stack.
Production-Ready Architecture Pattern
What the stack looks like end to end, from the request that starts a workflow down to the model reasoning over it, with the control question to ask at each layer.
Layer
What it does
Control question
Human or external agent
Starts the request or workflow.
Who asked, in what role, and under what permissions?
Agent
Plans, reasons, asks clarifying questions, and selects skills.
What objective is the agent allowed to pursue?
Skills and tools
Create metrics, query data, analyze drivers, export, schedule, or trigger workflows.
Which tool calls are permitted, rate-limited, and logged?
Context layer
Provides conversation history, selected context, skills registry, system guardrails, analytics catalog, AI Knowledge, and AI Memory.
What context was selected and why?
Semantic and query layer
Executes deterministic, permission-aware metric and data queries.
Which certified definitions and lineage support the answer?
Observability
Captures traces, sessions, lineage, usage analytics, violations, and overrides.
Can the full run be reconstructed without a war room?
LLM / inference
Provides language and reasoning capability, possibly via BYO LLM or local inference.
What data reaches the model, what is retained, and can it be contractually controlled?
PART IV: Build It to Survive Production
Surviving production comes down to three habits most pilots skip: giving the agent its own identity, sizing the model to the task, and pressure-testing vendors before signing.
Give Every Agent Its Own Identity
An agent acting under a human account seems harmless until something goes wrong. Then the log says the person acted, even if they never saw the action. That is not a logging detail. It breaks accountability.
- Create a dedicated identity for every production agent.
- Assign the minimum read/write scopes needed for the task.
- Separate authorization from execution: record who approved the action and which agent executed it.
- Log tool calls, data objects touched, outputs, approvals, exceptions, and rollback events.
- Review permissions the same way you would review a privileged employee or service account.
Do Not Default to the Biggest Model
The instinct is to reach for the newest, biggest model for everything. That's expensive on narrow tasks and risky every time data leaves your infrastructure. Match the model to the workload instead.
Workload
Recommended starting point
Why
Search and retrieval
Small embedding model, local or controlled deployment where possible.
Low cost, low latency, and reduced data movement.
Classification and routing
Small to mid-sized model, tuned on domain examples.
Narrow task; accuracy comes from examples and rules, not model size alone.
Summarization
Mid-sized model with grounded source context.
Needs language quality but should not reason beyond supplied sources.
Open-ended analysis and planning
Larger reasoning model, with strict tool scopes and observability.
Use when the task genuinely requires multi-step reasoning or ambiguous problem-solving.
High-sensitivity regulated action
Private deployment or controlled inference path; human review by default.
Data residency, vendor risk, and auditability matter as much as model capability.
Ask Vendors the Hard Questions Before Signing
Every vendor in the chain, model, orchestration, hosting, adds third-party risk. Get these answered in writing before signing, not after.
- Does our data train your models, directly or indirectly?
- How long is request data retained, and can we get a contractual zero-retention option?
- Which certifications and third-party reports can we review: SOC 2 Type II, ISO/IEC 27001, or others?
- Do we have audit rights or independent assessment rights?
- What happens to our data, embeddings, logs, and operational continuity if we leave?
- Can we bring our own LLM, run local inference, or use private deployment when required?
PART V: Choose the Right First Use Cases
Not every workflow deserves the same starting posture. Some are safe to pilot now; others need a much higher bar before they go anywhere near production.
Category
undefined
Examples
undefined
Governance posture
Safer starting points
undefined
Internal knowledge search; dashboard summaries; anomaly explanation; case triage without final decision; compliance report drafting.
undefined
Good first pilots. Keep human review and log source context.
Restricted: value plus real risk
undefined
Customer communications; claims recommendations; fraud rule tuning; credit or underwriting support; clinical workflow support; regulatory filing preparation.
undefined
Require formal intake, human approval, audit trail, data minimization, and runtime monitoring.
Not appropriate without heavy oversight
undefined
Autonomous denial of claims or benefits; autonomous credit decisions; autonomous clinical diagnosis; irreversible customer-impacting actions without review.
undefined
Avoid as first-wave use cases. Require exceptional justification, legal review, and strong human oversight.
What Good Looks Like in Production
Where this actually pays off once it's running, and the specific things to keep an eye on in each domain.
Domain
undefined
Agentic value
undefined
What to watch
Fraud
undefined
Detect transaction anomalies, assess rule viability as thresholds change, identify overlapping rules, and escalate threats.
undefined
Alert fatigue, bias, false positives, unauthorized action, and drift in rule performance.
Compliance
undefined
Flag lineage issues, compare operations to regulatory documentation, draft reports, and run pre-submission quality gates.
undefined
Broken upstream joins, outdated policy references, missing evidence, and unverifiable outputs.
Risk analysis
undefined
Update risk profiles, simulate scenarios, analyze key drivers, and run root-cause analysis across large datasets.
undefined
Unapproved metrics, sensitive-data exposure, model overreach, and lack of explainability.
Analytics modernization
undefined
Use agents to help create metrics, build semantic layers, migrate BI assets, and shorten backlogs.
undefined
Certification, lineage, code review, and promotion from development to production.
Operating Model
Reporting value alone makes the case for the project. Reporting risk alongside it makes the trust case, and it's the half of the dashboard most teams leave out.
Track Value and Risk Together
Most teams only report the left column, because it's the one that makes the project look good. Boards are increasingly asking for both.
Value metrics
undefined
Risk and control metrics
Cycle-time reduction
undefined
Human override rate
Cost per case
undefined
Unauthorized or blocked tool-call attempts
Analyst productivity
undefined
Policy violations
Time to insight/time to action
undefined
Data-access exceptions
Backlog reduction
undefined
Drift in actions, outputs, or recommendations
Error reduction
undefined
Time to disable, rollback, or route to human
Adoption by tenant, group, or workflow
undefined
Incidents by severity and root cause
The First 90 Days
A realistic rollout in four stages, starting with classification and ending with a real review of the highest-risk use case.
Weeks
undefined
Action
undefined
Action
1-2
undefined
Classify every candidate use case by autonomy, data sensitivity, impact, and jurisdiction.
undefined
Prioritized use-case portfolio; remove workflows that do not need agency.
3-6
undefined
Build the lowest-exposure use case with governance included.
undefined
Working agent with semantic grounding, permissions, logs, and human review.
7-10
undefined
Build the reusable identity, audit, context, and tool-permission layer.
undefined
Default production pattern for future agents.
11-13
undefined
Move one high-exposure use case through a real security and compliance review.
undefined
Platform-level findings and fixes, not one-off exceptions.
SECURITY REVIEW PROMPT
Before the next review, ask: Can we place every active AI workload on the autonomy scale without guessing? Can we explain any AI-supported decision to an auditor without a war room? Do we know which agents have their own identities and which are still borrowing human access?
Regulatory Note: Do Not Wait for the Timeline to Settle
The EU AI Act entered into force on 1 August 2024 and is generally applicable from 2 August 2026, with staged exceptions. Article 50 transparency obligations are a near-term milestone for providers and deployers of relevant AI systems. A May 2026 provisional agreement would delay some high-risk AI obligations, including stand-alone high-risk systems to 2 December 2027 and high-risk systems embedded in products to 2 August 2028, subject to formal adoption and implementation details.
For production teams, the practical conclusion is simple: do not wait. Transparency, data governance, human oversight, logging, auditability, and explainability are architecture choices. They are cheaper to build before production than to retrofit after a pilot becomes a business dependency.
PRACTICAL COMPLIANCE POSTURE
Treat transparency and auditability as product requirements, not legal footnotes. Make the agent disclose when appropriate, ground answers in approved context, maintain usable evidence, and route high-impact decisions through human review.
PUBLICATION-READY CHECKLIST
Run this before any agent goes live. Each line is something a reviewer should be able to confirm, not assume.
Area
undefined
Ready when
Use case
undefined
Workflow owner, business objective, impact category, and success metric documented.
Autonomy
undefined
L0-L5 autonomy level assigned and reviewed.
Data
undefined
Data classes, residency, retention, and minimization documented.
Grounding
undefined
Authoritative semantic objects, metrics, dashboards, rules, and knowledge sources identified.
Identity
undefined
Dedicated agent identity created with least-privilege scopes.
Tools
undefined
Read/write tools listed, scoped, tested, rate-limited, and logged.
Human oversight
undefined
Approval, escalation, and override points designed and tested.
Auditability
undefined
A full run can be reconstructed: who asked, what data was used, what the agent did, and who approved.
Security
undefined
Adversarial tests completed: prompt injection, goal hijack, privilege abuse, data leakage, cascade failure.
Operations
undefined
Monitoring, incident response, rollback, and monthly review are assigned to owners.
Vendor risk
undefined
Retention, training use, audit rights, certifications, exit, BYO LLM, and deployment options reviewed.
Regulatory
undefined
Applicable laws and sector frameworks mapped with legal/compliance sign-off.
Closing
Agentic AI in regulated industries is manageable when the architecture matches the risk. The work is not mysterious: classify the workload, control the data path, ground the agent in governed business context, give it its own identity, limit what it can do, and make every step observable.
Success here has very little to do with model size. It comes down to whether the agent is governed, compliant, accurate, auditable, open, and sovereign enough for the environment it actually has to run in.
References
- Gartner. "Gartner Predicts Over 40% of Agentic AI Projects Will Be Canceled by End of 2027." 25 June 2025.
- OWASP GenAI Security Project. "OWASP Top 10 for Agentic Applications for 2026."
- NIST. AI Risk Management Framework.
- NIST AI 600-1. Artificial Intelligence Risk Management Framework: Generative Artificial Intelligence Profile.
- ISO/IEC 42001.* Artificial intelligence management system.*
- European Commission. AI Act overview and implementation timeline.
- European Commission*. Code of Practice on Transparency of AI-Generated Content / Article 50 transparency obligations.*
- Council of the EU.* "Artificial intelligence: Council and Parliament agree to simplify and streamline rules."* 7 May 2026.
Enjoy this article as well as all of our content.
Does GoodData look like the better fit?
Get a demo now and see for yourself. It’s commitment-free.
