@logixjs/core
    Preparing search index...

    Interface KernelImplementationRef

    interface KernelImplementationRef {
        buildId?: string;
        capabilities?: readonly string[];
        kernelId: KernelId;
        packageName: string;
        packageVersion?: string;
    }

    Hierarchy

    • KernelImplementationRef
      • KernelImplementationRef
    Index

    Properties

    buildId?: string

    Optional build hash/id for evidence diff explainability.

    capabilities?: readonly string[]

    Explainability-only labels; must not become semantic switches.

    kernelId: KernelId

    Requested kernel family id (not a version number). Actual activation / fallback must be interpreted via RuntimeServicesEvidence.

    packageName: string

    The npm package that provides the kernel implementation.

    packageVersion?: string

    Optional semver for explainability (not used as a semantic anchor).