Subscribe to the Non-Human & AI Identity Journal

How should security teams govern AI agents in shared workspaces?

Security teams should treat the workspace audience as part of the authorization decision. If the agent can be seen by people with different entitlements, the system must check whether every recipient is allowed to receive the data before the response is generated. Otherwise, the agent can disclose information correctly retrieved but incorrectly exposed.

Why This Matters for Security Teams

Shared workspaces change the security question from “what did the agent retrieve?” to “who is allowed to receive the output?” That distinction matters because an AI agent is an autonomous software entity with execution authority, not a passive search tool. If the agent can answer in a space where multiple users have different entitlements, the workspace becomes part of the authorisation boundary. Current guidance suggests treating output delivery as a runtime decision, consistent with the risk themes in OWASP Agentic AI Top 10 and NIST AI Risk Management Framework.

NHIMG research shows why this is urgent: in SailPoint’s AI Agents: The New Attack Surface report, 80% of organisations said their AI agents had already acted beyond intended scope, including inappropriately sharing sensitive data. That is exactly the failure mode in shared workspaces, where the agent may retrieve correctly but expose incorrectly. In practice, many security teams encounter this only after a sensitive answer has already been posted into the wrong channel, rather than through intentional governance design.

How It Works in Practice

Security teams should govern shared-workspace agents with intent-based authorisation, not static RBAC alone. The agent’s identity, the user asking the question, the workspace audience, and the data classification all need to be evaluated before any response is generated. That runtime decision can be enforced with policy-as-code using a control plane aligned to CSA MAESTRO agentic AI threat modeling framework and the OWASP Top 10 for Agentic Applications 2026.

Practically, the workflow should look like this:

  • Issue workload identity to the agent, so the system knows what the agent is and what tenant or service it belongs to.
  • Use just-in-time, ephemeral credentials for tool use and retrieval, rather than long-lived secrets that survive beyond the task.
  • Evaluate authorisation at request time, including the workspace audience and the sensitivity of the source material.
  • Redact, downgrade, or withhold responses when any recipient lacks access to the underlying data.
  • Log the decision path for audit, incident review, and policy tuning.

This is where NHI governance and agentic governance meet. The agent may have valid permissions to fetch a record, but that does not automatically grant permission to publish it into a shared chat. NHIMG’s OWASP NHI Top 10 and Ultimate Guide to NHIs — Lifecycle Processes for Managing NHIs both reinforce the same operating principle: identity, credential scope, and output exposure must be controlled as one chain. These controls tend to break down when agents are allowed to chain tools across multiple SaaS systems because the workspace policy cannot reliably follow every downstream hop.

Common Variations and Edge Cases

Tighter output controls often increase operational overhead, requiring organisations to balance confidentiality against collaboration speed. That tradeoff is real, especially in channels where teams expect the agent to summarise documents, tickets, or incidents for mixed audiences. Best practice is evolving, but there is no universal standard for this yet, so teams should define clear policy tiers rather than assume one workspace rule fits every use case.

Some environments need additional caution. In regulated workflows, the agent may need separate policies for internal employees, external guests, and service accounts. In multi-agent systems, one agent may be authorised to draft an answer while another performs retrieval, and each step may need different controls. For high-risk workflows, zero standing privilege and short-lived tokens reduce the blast radius if the agent is coerced or misrouted. Where legal or compliance teams can view the workspace but not the source system, the safe pattern is to generate a partial answer, not a full answer with a warning.

For deeper operational context, see NHIMG’s AI LLM hijack breach analysis and external guidance from NIST AI Risk Management Framework and MITRE ATLAS adversarial AI threat matrix. The core lesson is simple: if the workspace audience is mixed, the agent must authorise for the recipient, not just for the retrieval.

Standards & Framework Alignment

This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.

OWASP Agentic AI Top 10 and CSA MAESTRO address the attack and risk surface, while NIST AI RMF set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Agentic AI Top 10 LLM-08 Shared-workspace disclosure is an agent output exposure risk.
CSA MAESTRO A3 MAESTRO addresses runtime policy for agent decisions and outputs.
NIST AI RMF AI RMF governs accountability and risk controls for autonomous agents.

Assign ownership for agent output risk and enforce reviewable policy decisions at runtime.