Use Cases

These are hypothetical developer examples for understanding the adapter contract. They are not customer case studies, endorsements, or claims of production deployment.

Each example follows the same pattern:

  1. an agent wants to call a tool;
  2. the adapter sends an action request to the control plane;
  3. policy returns allow or deny;
  4. denied actions skip execution;
  5. allowed actions can be handed to a broker with constrained permissions;
  6. the response preserves the same audit envelope.

Finance Reporting Agent

Protected action:

{
  "actor": "finance-agent-demo",
  "action": "finance.report.export",
  "resource": "monthly-close-demo"
}

Example policy shape:

Cloud Operations Agent

Protected action:

{
  "actor": "ops-agent-demo",
  "action": "aws.ec2.terminate_instances",
  "resource": "demo-instance"
}

Example policy shape:

MCP Developer Tool Agent

Protected action:

{
  "actor": "dev-agent-demo",
  "action": "mcp.github.create_pull_request",
  "resource": "example/repo"
}

Example policy shape:

A2A External Agent Task

Protected action:

{
  "actor": "external-agent-demo",
  "action": "a2a.partner.create_task",
  "resource": "support-demo"
}

Example policy shape:

Healthcare Operations Agent

Protected action:

{
  "actor": "healthcare-agent-demo",
  "action": "healthcare.patient.export_phi",
  "resource": "clinic-demo"
}

Example policy shape:

SaaS Support Agent

Protected action:

{
  "actor": "support-agent-demo",
  "action": "saas.user.disable_account",
  "resource": "customer-demo"
}

Example policy shape: