evaluate_action
Assess AI agent actions against governance policies to determine if they should be allowed, require human review, or be blocked.
Instructions
Evaluate an AI agent action against the current governance policy.
Returns a decision: auto (allow), approve (needs human review), or block (deny).
Args:
action_type: The kind of operation (e.g. "read_file", "send_email", "delete").
target: The system being acted upon (e.g. "filesystem", "stripe", "database").
params: Arbitrary parameters for the operation.
description: Optional human-readable description.
agent_id: Optional identifier for the agent performing the action.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action_type | Yes | ||
| target | Yes | ||
| params | No | ||
| description | No | ||
| agent_id | No |