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
| Package | Language | Tier | Status | Access |
|---|---|---|---|---|
cpt-core | TypeScript | Core | Private / local | Controlled |
cpt-pro | TypeScript | Pro | Private / local | Controlled |
cpt-physics | Python | Core | Private / local | Controlled |
cpt-physics-pro | Python | Pro | Private / local | Controlled |
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.
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);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.
- All internal validation suites passing
- Controlled external pilot completed without blocking issues
- Documentation coverage above minimum threshold
- Independent reproducibility check completed
- Review readiness assessment passed
- TypeScript / Python cross-implementation parity certified at pro tier