Implementation framework

OpenKedge makes PDDS practical.

The framework translates the paradigm into protocol mechanics, reference implementations, evidence records, and governed runtime boundaries.

01
Intent
02
Context
03
Policy
04
Contract
05
Identity
06
Execution
07
Evidence
08
Replay
Governed action pipeline
recordsrecordsrecordsfeeds back
AI Agentproposes an action
OpenKedge Control Layer
Is this allowed?check rules and context
What are the limits?narrow scope and time
Execute withinboundsonly the approved action
Live Systemscloud, data, services
Audit Trailwho askedwhat was decidedwhat limits appliedwhat happened
Informs futuredecisions
Decision stages
01
Intent Proposer
The AI system states what it wants to do (its proposed intent) before it receives any operational authority.
02
Context Check
The system reviews situational factors, dependencies, risk profile, timing, and current operating conditions.
03
Policy Review
The proposed intent is evaluated against governing rules, boundaries, and organizational policies.
04
Execution Contract
Any permitted action is bound to a specific execution contract defining its scope, limits, and expiration.
05
Proof-Derived Execution Identity
The system issues a cryptographic, time-bounded identity valid only for the duration of the approved contract.
06
Controlled Action
Only the approved state transition is permitted to execute, with no expansion or hidden branching.
07
Evidence Chain / IEEC
Every step—from proposed intent to final outcome—is recorded as a cryptographically linked evidence chain.
08
Replay & Policy Refinement
The recorded evidence feeds back into replay, simulation, policy adjustment, and continuous protocol refinement.
Open source implementations

Reference code for governed autonomous infrastructure.

OpenKedge provides implementation patterns that teams can inspect, adapt, and use as a foundation for PDDS-aligned pilots.

1. Pick a high-impact scenario

Choose an AI action with real operational risk: cloud change, data workflow, service action, or approval process.

2. Map the authority boundary

Define who owns the rule, which approvals matter, what scope is allowed, and what evidence leadership needs.

3. Run the governed pilot

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();
}