MEMGUARD — STATE VERIFICATION

Is my memory/state still correct right now?

Operational
MemGuard is NOT EP. NOT NoLeak. State verification is its own layer. Verify your memory before you act.
VERIFICATIONS
$0.01
PER CALL
AVG DRIFT

WHAT IT DOES

Autonomous agents fail silently — not because their logic is wrong, but because their state is stale. A trade fires on old price data. A restarted agent assumes its context is still valid. A handoff passes drifted state between agents. MemGuard catches these before execution. Send your current state and expected reference — MemGuard returns a drift score, confidence rating, suggested action, and a cryptographic proof hash.

API

POST /memguard/check Request: { "state": { "price": 100, "ts": 1710000000 }, "referenceState": { "price": 105, "ts": 1709990000 }, "agentId": "your_agent" } Response: { "stateValid": false, "driftScore": 0.30, "confidence": 0.72, "suggestedAction": "rehydrate", "proofHash": "sha256...", "latencyMs": 38 }

DRIFT THRESHOLDS

driftScoresuggestedActionMeaning
< 0.1proceedState is fresh — act safely
0.1 – 0.3refreshMinor drift — update before acting
0.3 – 0.6rehydrateSignificant drift — re-fetch full state
> 0.6escalateSevere drift — do not act

PRICING

TierPriceOutput
Basic$0.005/callstateValid only
Standard$0.01/calldriftScore + confidence
Advanced$0.02/callsuggestedAction + full analysis
Batch$0.05+Bulk state checks

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

AGENT LOOP POSITION

MemGuardNoLeakEP
QuestionIs my state valid?Should I execute?Is this authorized?
Endpoint/memguard/check/noleak/check/ep/validate
OutputdriftScore + actionGER + confidenceproof_hash + policy
ConnectionNone — three fully independent services
GitHub Virtuals ACP Get Access