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.
{
"action": "call_api",
"target": "https://api.openai.com/v1/chat",
"expected_cost": 0.002,
"confidence": 0.6,
"context": "user wants summary"
}
{
"should_execute": true,
"confidence": 0.82,
"risk": "low",
"reason": "Low cost and high
likelihood of success",
"decision_factors": {
"cost_score": 0.9,
"confidence_score": 0.7,
"risk_score": 0.2
}
}
Three factors combine into a score. Above 0.6 — execute. Below — don't.
should_execute: true. Otherwise false, with a plain-English reason.
{
"action": "call_api",
"target": "https://api.openai.com/v1/chat",
"expected_cost": 0.002,
"confidence": 0.6,
"context": "user wants summary"
}
// hit Run to call the live API