AI Governance and Security

Why this topic matters

Many AI failures are not model-intelligence failures. They are control-boundary failures. The system reads untrusted content as instruction, exposes sensitive context in traces, calls a tool it should not have been able to call, or produces a confident recommendation where only a human decision is acceptable.

OWASP’s current LLM risk taxonomy remains useful because it frames AI systems as security systems, not only NLP systems. Current OpenAI and MCP guidance also points to the same operational direction: use defense in depth, limit the impact of prompt injection, scope permissions, and treat tool and resource connectivity as security-relevant surfaces.

For ESG workflows, governance pressure is tightening. The European Commission states that Regulation 2024/3005 on ESG rating activities entered into force on January 1, 2025 and applies from July 2, 2026, strengthening transparency and governance expectations around ESG rating methodologies. For benchmark workflows, existing BMR obligations already make auditability, methodology control, and review boundaries non-negotiable. The Commission’s Benchmarks Regulation FAQ also describes a review that narrows scope toward significant and climate benchmarks with intended application from January 1, 2026. Treat that latter point as an indicator of direction and confirm the current consolidated legal text before using it as a compliance assumption.

Conceptual model / diagrams

The control model should separate trusted from untrusted layers.


flowchart TD
    A[Trusted policy and permissions] --> B[Application]
    C[Untrusted user or retrieved content] --> B
    B --> D[Model]
    D --> E[Validator and approval gate]
    E --> F[Safe response or controlled action]

Core patterns or workflows

Separate trusted and untrusted context

Do not let user input, retrieved text, or tool returns behave like system policy. Keep separate:

  • policy and role instructions
  • task instructions
  • untrusted user content
  • untrusted retrieved or tool-returned content

This is the baseline defense against prompt injection and tool manipulation.

Scope tools and permissions narrowly

Every AI tool should have:

  • a defined purpose
  • the narrowest feasible permission scope
  • argument validation
  • output sanitization
  • explicit logging

Read-only tools should remain read-only unless the workflow truly requires action. High-risk actions such as production writes, file deletion, or benchmark-affecting changes should always sit behind approval gates.

Protect sensitive data

Governance controls should define:

  • which data classes may be sent to hosted models
  • which must remain on internal or approved boundaries
  • how PII and secrets are masked in prompts and traces
  • how tool outputs are sanitized before returning to the model
  • who can inspect AI traces or reviewer packets

Approval gates and human-in-the-loop control

Use approval gates whenever the workflow can:

  • change production data
  • influence a benchmark-affecting decision
  • publish client-facing ESG or financial narratives
  • override deterministic business rules
  • expose external communications or filings

Human review is not a workaround. It is part of the designed control model.

Governance artifacts

Production AI systems should have named governance artifacts:

  • use-case definition
  • approved data boundary
  • prompt and model version ownership
  • evaluation threshold
  • rollback rule
  • trace and retention policy
  • approval boundary definition

Without these, governance remains rhetorical.

Production examples

ESG analytics controls

An ESG assistant may help classify, extract, or summarize, but it should not autonomously produce an official client-facing ESG rating or controversy decision without a governed review path. Evidence linkage, reviewer identity, and methodology references should all be retained.

Index operations controls

An index-support assistant may:

  • explain methodology
  • retrieve corporate-actions context
  • draft reviewer notes

It should not:

  • approve constituent inclusion
  • modify index weights
  • publish restatements
  • override methodology or audit controls

Data-platform copilot controls

A data-engineering copilot may retrieve logs, explain failures, and draft SQL. It should not gain broad write access to production systems simply because tool use is available.

Risks / anti-patterns

  • Treating retrieved content as trusted because it came from an internal store.
  • Logging raw prompts and tool payloads without classification or masking.
  • Giving broad write or network permissions to general-purpose assistants.
  • Confusing a helpful recommendation with an approved decision.
  • Applying a single blanket provider policy to all use cases instead of classifying by data sensitivity and action risk.

Recommendations / operating rules

  • Keep trusted policy and untrusted content in separate channels.
  • Default tools to least privilege and read-only access.
  • Put high-risk actions behind logged approval gates.
  • Record enough provenance to show what evidence and versions shaped the output.
  • Re-evaluate governance when the workflow, data boundary, or regulatory context changes.

Domain-specific applications

  • ESG workflows need methodology transparency, evidence retention, and careful control over customer-facing interpretations.
  • Index workflows need explicit non-autonomy for benchmark-affecting actions and durable audit trails.
  • Data-engineering workflows need strong secret handling, trace redaction, and narrow tool permissions.

Evaluation / validation considerations

Governance quality should also be tested:

  • prompt-injection resistance
  • unsafe tool-call rate
  • secret or PII leakage rate
  • approval-gate bypass attempts
  • reviewer ability to reconstruct why the answer was produced

Troubleshooting / failure modes

  • If the model follows instructions from retrieved documents, the trust boundary is weak.
  • If reviewers cannot tell which sources shaped the answer, auditability is incomplete.
  • If the system performs risky actions automatically “for convenience,” excessive agency has already been designed in.
  • If legal or compliance teams cannot answer where the data went, vendor-boundary governance is not operationalized.

AI Governance and Security References