Risk ScoringWeighted multi-dimensional risk calculation.
Dimension scores are weighted and combined into an overall risk level: Minimal (0-25), Limited (26-50), High (51-75), or Unacceptable (76-100). Visual breakdown shows contribution of each dimension. Stored as a risk assessment record linked to the agent.
// Risk assessment output
{
"agentId": "agent_123",
"riskLevel": "high",
"riskScore": 68,
"dimensions": {
"autonomy": { "answer": "autonomous", "score": 4 },
"impactScope": { "answer": "organization", "score": 3 },
"impactType": { "answer": "financial", "score": 3 },
"dataSensitivity": { "answer": "pii", "score": 3 },
"reversibility": { "answer": "difficult", "score": 3 },
"frequency": { "answer": "continuous", "score": 4 }
},
"recommendations": [
"Require human approval for all financial actions",
"Enable continuous monitoring with anomaly alerts",
"Restrict data access scopes to minimum required"
]
}