Evaluate actions before they execute.
Every agent should ask one question before acting: should this execute?
Send a proposed action — with cost, confidence, and a target — and get back a go/no-go decision in milliseconds. No model, no config, no overhead.
Agent-discoverable via /.well-known/api-catalog
{
"target": "https://api.openai.com/v1/chat",
"action_type": "write",
"expected_cost": 0.002,
"confidence": 0.82,
"reversible": true,
"scope": "user"
}
{
"should_execute": true,
"confidence": 0.84,
"risk": "low",
"reason": "Reversible action clears
reduced threshold",
"decision_factors": {
"cost_score": 0.95,
"confidence_score": 0.82,
"domain_risk": 0.15,
"action_risk": 0.30,
"scope_risk": 0.20
}
}
Five factors combine into a score. The threshold shifts based on reversibility.
read scores near zero. delete and admin score high. Ten action types supported.
global scope or unknown domain raises risk independently.
{
"target": "https://api.openai.com/v1/chat",
"action_type": "write",
"expected_cost": 0.002,
"confidence": 0.82,
"reversible": true,
"scope": "user"
}
// hit Run to call the live API