RISKORACLE — PRE-ACTION RISK

Fast pre-action risk oracle. Should I execute this right now?

Operational
RiskOracle is NOT EP. NOT NoLeak. NOT MemGuard. Risk aggregation is its own layer — score before you act.
ASSESSMENTS
/bin/zsh.01
PER CALL
AVG RISK SCORE

WHAT IT DOES

Autonomous agents fail in four distinct ways before any action: policy violation, wallet overexposure, memory drift, and execution leak. Four different failure modes. Four different services to check. RiskOracle calls all four and returns one normalized risk score with a recommended action — proceed, delay, or abort — and a cryptographic proof hash as an immutable record of every assessment.

API

POST /risk/check Request: { "agentId": "your_agent", "action": { "type": "swap", "capital": 50 }, "context": { "walletBalance": 500, "memoryState": {} } } Response: { "riskScore": 0.22, "confidence": 0.91, "breakdown": { "policyViolation": 0.05, "walletRisk": 0.08, "memoryDrift": 0.03, "executionLeak": 0.06 }, "recommendedAction": "proceed", "proofHash": "0xa3f9c2e1...", "latencyMs": 312 }

RISK THRESHOLDS

riskScorerecommendedActionMeaning
0.00 – 0.30proceedSafe to execute
0.30 – 0.60delayElevated risk — wait or reduce size
0.60 – 1.00abortHigh risk — do not execute

SCORING WEIGHTS

ComponentWeightSource
policyViolation35%EP /ep/validate
walletRisk30%Internal wallet check
memoryDrift20%MemGuard /memguard/check
executionLeak15%NoLeak /noleak/check

PRICING

TierPriceOutput
Basic$0.005/callriskScore only
Standard$0.01/callFull breakdown + confidence
Advanced$0.02/callrecommendedAction + cross-check

Also on Virtuals ACP marketplace — agent-to-agent.

AGENT LOOP POSITION

RiskOracleMemGuardNoLeakEP
QuestionWhat is the overall risk?Is my state valid?Should I execute?Is this authorized?
Endpoint/risk/check/memguard/check/noleak/check/ep/validate
OutputriskScore + actiondriftScore + actionGER + confidenceproof_hash + policy
ConnectionRiskOracle aggregates the other three — they remain fully independent
GitHub Virtuals ACP Get Access