Skip to main content

Lightweight deterministic execution substrate for governed operations.

Project description

KL Kernel Logic

Version: 0.5.0

A small deterministic execution model core.

KL Kernel Logic provides three components:

  • PsiDefinition: operation definition (what)
  • Kernel: atomic execution primitive (how)
  • CAEL: sequential behaviour order (in what order)

It does not handle orchestration, governance, or policy. Those belong to higher layers.

PyPI version Python License


Status

KL Kernel Logic v0.5.0 is a hardened, contract-stable kernel aligned with KL Execution Theory v0.1.0.

This version defines and enforces:

  • deterministic execution scope
  • normalized failure taxonomy
  • immutable, canonical execution traces
  • stable trace digests suitable for downstream derivation (DBL)

The kernel is considered frozen unless the theory contract is reopened.


Kernel Contract

The normative kernel contract is defined here:

All behavior, determinism guarantees, and failure semantics are governed exclusively by this contract.


Determinism

Determinism applies to the declared deterministic trace core only. Observational fields (e.g. wall-clock timestamps, run_id, exception text) are explicitly excluded and MUST NOT be used for derivation or control flow.


Installation

pip install kl-kernel-logic

Core Concepts

PsiDefinition

A minimal logical operation descriptor. The core treats PsiDefinition as opaque. It stores and passes through these values but never interprets them.

PsiDefinition(
    psi_type: str,
    name: str,
    metadata: Mapping[str, Any] | None = None,
)

PsiDefinition metadata is purely descriptive and never enters the Kernel or the ExecutionTrace unless explicitly passed to Kernel.execute().

Kernel

A deterministic execution engine. Deterministic in its execution model, not in the behaviour of user-provided tasks. Given a PsiDefinition and a callable, the Kernel executes the task and returns an ExecutionTrace.

Semantics:

  • task is called exactly once with **kwargs
  • success is True if and only if no exception is raised by task
  • output contains the return value on success, None on failure
  • runtime_ms is measured via a monotonic perf counter (observational)
  • in deterministic mode, runtime_ms is forced to 0.0
  • run_id is unique per execution (observational)
  • in deterministic mode, run_id is provided by deterministic providers and may be stable

The Kernel never interprets metadata, never makes policy decisions, and never retries. Kernel implements Δ as atomicity of execution and observation, not as state change. State belongs to user logic.

ExecutionTrace

Immutable record of a single Kernel execution.

Fields:

  • psi: the PsiDefinition used
  • run_id: unique identifier for this execution
  • success: True if task completed without exception
  • output: return value of task (or None on failure)
  • error: exception message (or None on success)
  • exception_type: exception class name (or None)
  • exception_repr: repr of exception (or None)
  • failure_code: normalized kernel-level failure code
  • started_at: UTC datetime when execution started (wall clock)
  • finished_at: UTC datetime when execution finished (wall clock)
  • runtime_ms: elapsed time in milliseconds (monotonic perf counter, observational)
  • metadata: the metadata dict passed to Kernel.execute(), not from PsiDefinition
  • kernel_meta: frozen kernel-level observational metadata

Time carries two layers: observational wall-clock time (UTC timestamps) and monotonic duration (runtime_ms). runtime_ms is suitable for per-step duration measurement, and ordering is established by CAEL step index, not by temporal fields.

The core never mutates traces after creation.

Fields marked as observational MUST NOT be used for ordering or semantic derivation.

Operational projection note: kernel_meta (if present) is an implementation-level observable and is not part of KL Execution Theory. It must not be treated as axiomatic state or used to redefine behavior semantics.

CAEL

Sequential Atomic Execution Layer. Runs a sequence of independent (psi, task, kwargs) steps via a single Kernel instance in deterministic order.

Semantics:

  • Steps are executed in order
  • If a step fails, execution stops immediately
  • CaelResult.success is True if and only if all steps succeeded
  • CaelResult.final_output is the output of the last successful step, or None if the first step fails
  • CaelResult.traces is the ordered list of ExecutionTrace objects (only executed steps)
  • CaelResult.failure_code indicates the failure reason when execution stops
  • CaelResult.failure_message carries the associated observational error message

CAEL does not pass output from one step to the next. Each step receives its own independent kwargs. It does not include retry logic, routing, or governance. CAEL establishes a total order over execution steps, independent of temporal measurements.


Usage

Basic Kernel Execution

from kl_kernel_logic import PsiDefinition, Kernel

def uppercase(text: str) -> str:
    return text.upper()

psi = PsiDefinition(psi_type="text", name="uppercase")
kernel = Kernel()

trace = kernel.execute(psi=psi, task=uppercase, text="hello")

print(trace.success)   # True
print(trace.output)    # "HELLO"

CAEL with Independent Steps

from kl_kernel_logic import PsiDefinition, Kernel, CAEL

def step_a() -> int:
    return 10

def step_b() -> int:
    return 20

psi_a = PsiDefinition(psi_type="math", name="first")
psi_b = PsiDefinition(psi_type="math", name="second")

cael = CAEL(kernel=Kernel())

result = cael.run([
    (psi_a, step_a, {}),
    (psi_b, step_b, {}),
])

print(result.success)       # True
print(result.final_output)  # 20
print(len(result.traces))   # 2

Scope and Non-Goals

This package does not handle:

  • Policy enforcement
  • Governance or access control
  • Rate limiting or quotas
  • Domain-specific logic
  • Retry or fallback strategies

KL Kernel Logic is a small deterministic substrate. Higher layers (gateways, governance layers, orchestrators) build on top of it.


KL Execution Theory

KL Kernel Logic implements Δ (atomic transitions) and V (behaviour sequences) in their stateless form, and provides observable projections of t (logical order and duration). State transitions belong to higher layers or to user logic. G (governance) and L (boundaries) live in higher layers such as gateways or governance systems.

KL Execution Theory


License

MIT License. See LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kl_kernel_logic-0.5.0.tar.gz (18.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kl_kernel_logic-0.5.0-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file kl_kernel_logic-0.5.0.tar.gz.

File metadata

  • Download URL: kl_kernel_logic-0.5.0.tar.gz
  • Upload date:
  • Size: 18.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.8

File hashes

Hashes for kl_kernel_logic-0.5.0.tar.gz
Algorithm Hash digest
SHA256 32d9ae10823441cd056cf0a3a5aa9a7840a1928c05ae267dedf799134d42bb9b
MD5 20f575e797507b23072c26851e10b186
BLAKE2b-256 75b64571b6c805a55bf725398ac7ccdd4c3c479d1643c31b29235e4939a78c51

See more details on using hashes here.

File details

Details for the file kl_kernel_logic-0.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for kl_kernel_logic-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c3cbb3e19c3518dede6cedf43c6a9e26626a51c483bcc5dc7cb8bd72780933f8
MD5 a62614f863183804cd15e3b9947a75f4
BLAKE2b-256 d8df3f123f0abc18413660753ddffc93c9200ed7360beed6d99f0ae5db6ecab8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page