Where the two products diverge
01 Open source vs commercial license
AEGIS core is fully MIT/Apache — clone the repo, run the
gateway, read every policy decision line yourself. Paid
Cloud is optional. Prediction Guard is commercial-only;
you pay for a license before you can run it, and you can't
inspect the enforcement logic in production. Bespoke
deployments in regulated environments increasingly need
"we can read the source" as a hard checkbox.
02 Merkle-chained audit vs plain-log audit
Both write policy-decision logs. AEGIS additionally
hashes each entry into a per-agent chain and Ed25519-signs
the transparency-log root. If a bad actor with DB write
access wants to rewrite history, they need the signing
key too — Prediction Guard's approach records decisions
but does not currently commit to a chain that would
surface tampering. For SOC 2 Type II + auditor-signed-off
evidence, the chain matters.
03 Workflow anchoring + rollback
AEGIS's rules bind to specific workflow node UUIDs
(binding_uuid → node_uuid → tool_name
precedence). Prediction Guard's policies attach at the
model/endpoint level — same rule fires uniformly across
every use of that endpoint. Same-tool-different-node
differentiation isn't a primitive. AEGIS also ships a
saga engine with binding-scoped compensators; PG stops
at "block."