Loading...
Loading...
Omega Agent OS plugs into your copilots, tools, and workflows to provide real-time judgement, risk scoring, and guardrails — before your agents act.
/api/agent/advise using a public demo key (never your root key)./api/decision and /api/simulate to show full judgement, rules, and futures.{
"ok": true,
"decision": {
"verdict": "ALLOW_WITH_CONDITIONS",
"riskLevel": "MEDIUM",
"reasoning": "Live responses will appear here once you run a check.",
"notes": [
"Agents are evaluated against tenant policies.",
"High-risk actions are auto-escalated to humans.",
"All calls are logged to RequestLog with PII-safe redaction."
]
},
"meta": {
"engine": "omega-agent-os",
"shadowMode": false
}
}This sandbox uses a limited demo key. In production, your agents will call this endpoint with tenant-scoped keys issued from your dashboard.
The lab calls /api/decision and /api/simulate with the same engine your production stack uses. Perfect for debugging, demos, and investor mind-melters.
Omega never executes actions. It only scores risk, applies safety rules, and suggests safer paths so your agents don't blow up your life, business, or reputation.
const res = await fetch("https://omegaengine.ai/api/decision", {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": process.env.OMEGA_API_KEY as string, // server env, never in the browser
},
body: JSON.stringify({
scenario,
context,
riskTolerance: "MEDIUM",
domain: "BUSINESS",
}),
});
const { decision } = await res.json();
// decision.riskLevel, decision.rulesVerdict, decision.safetyFlags…// Omega Agent OS is standing by…
{
"status": "waiting_for_scenario",
"hint": "Describe what your agent wants to do, then hit \"Score Decision\"."
}Once a decision is scored, you'll see risk, regret, rules, and safety flags here.
Hit Simulate Futures to see optimistic, likely, and worst-case paths before your agent acts.