OpenKedge documentation
The docs cover the control model, approval flow, and concrete examples that show how OpenKedge keeps important AI actions governed in production systems.
Intent
Why AI actions begin as stated requests instead of direct execution.
Contracts
How OpenKedge narrows approved actions into bounded execution contracts.
IEEC
The evidence model that makes every important action explainable and auditable.
Pipeline
The seven-stage architecture from intent proposal to evidence chain.
DevOps Guardrail
A concrete EC2 termination scenario showing policy rejection before execution.
OpenKedge makes PDDS practical.
The framework translates the paradigm into protocol mechanics, reference implementations, evidence records, and governed runtime boundaries.
Reference code for governed autonomous infrastructure.
OpenKedge provides implementation patterns that teams can inspect, adapt, and use as a foundation for PDDS-aligned pilots.
Choose an AI action with real operational risk: cloud change, data workflow, service action, or approval process.
Define who owns the rule, which approvals matter, what scope is allowed, and what evidence leadership needs.
Test the action, watch policy respond, and review the evidence trail with executive, compliance, and technical teams.
import { createProposal, evaluateProposal } from "@openkedge/sdk-js";
const proposal = createProposal({
actor: "agent.ops.autoscaler",
target: "aws:ec2:i-0ab1cdef23456789",
intent: "terminate_instance",
desiredOutcome: "remove_unused_capacity",
});
const decision = await evaluateProposal(proposal);
if (decision.status === "approved") {
await decision.execute();
}