Software

Package ecosystem

TypeScript and Python implementations of the CPT framework, organized into core and pro tiers. All packages are currently in private local validation and are not available through public registries.

Package matrix

PackageLanguageTierStatusAccess
cpt-coreTypeScriptCorePrivate / localControlled
cpt-proTypeScriptProPrivate / localControlled
cpt-physicsPythonCorePrivate / localControlled
cpt-physics-proPythonProPrivate / localControlled

Capability split

Core tier

cpt-core  /  cpt-physics

  • Physics constants (CPT-computed and SI reference)
  • Scalar topology computations
  • Basic electrodynamics modeling
  • Unit conversion utilities

Pro tier

cpt-pro  /  cpt-physics-pro

  • Vectorized topology APIs
  • Nuclear structure engine
  • Extended precision computational modes
  • Advanced electrodynamics modeling

Current distribution mode

All CPT packages are currently distributed as local artifacts within a controlled validation pipeline. No packages are published to npm, PyPI, or any other public registry at this time.

Early access is available to qualified collaborators by request. Controlled-access participants receive package artifacts directly under terms covering confidentiality and responsible use. See the Licensing Notice for details.

Public publication is gated on completion of the validation roadmap. See the Roadmap for the current phase and gating criteria.

Quick-start examples

These examples illustrate the API surface. Packages are not yet publicly available.

TypeScriptcpt-core
import { CptCore } from 'cpt-core';

const core = new CptCore();

// CPT-computed physics constants
const alpha = core.constants.fineStructure();
const c     = core.constants.speedOfLight();
console.log(`Fine-structure constant: ${alpha}`);
console.log(`Speed of light:          ${c} m/s`);

// Scalar topology computation
const result = core.topology.scalar({ knot: 1, order: 1 });
console.log('Topology result:', result);
Pythoncpt_physics
from cpt_physics import CptCore

core = CptCore()

# CPT-computed physics constants
alpha = core.constants.fine_structure()
c     = core.constants.speed_of_light()
print(f"Fine-structure constant: {alpha}")
print(f"Speed of light:          {c} m/s")

# Scalar topology computation
result = core.topology.scalar(knot=1, order=1)
print(f"Topology result: {result}")

Public release criteria

All criteria below must be met before packages are published to public registries. Current status: criteria not yet fully met.