Skip to content

ZeroPoint NodeOne structure, read twice

The vortex sequence, its reflection through the void, and a kernel that computes both rather than asserting them.

Every generated page on this site carries a content-addressed receipt folded over its own body, so a change to what a page says moves its stamp.

Install it

bash
npm install zeropoint-node
javascript
import { stabilizerZeroState, stabilizerH, stabilizerCnot, stabilizerMeasure } from 'zeropoint-node/quantum'

const s = stabilizerZeroState(200)          // 200 qubits, 160800 bits
stabilizerH(s, 0)
stabilizerCnot(s, 0, 1)
stabilizerMeasure(s, 0, 1)                  // undetermined — your coin decides
stabilizerMeasure(s, 1)                     // determined, and equal to it

An MCP server ships as npx zeropoint-mcp, exposing the same three things over the wire: zeropoint.quantumRun, zeropoint.quantumExact and zeropoint.quantumCapacity.

No quantum advantage is claimed and none is present. Of seven oracle-call measurements, zero show one — simulating a single quantum query costs 2^n classical evaluations. What is offered is exactness and an honest account of the cost, including what was not measured.

Citing this work, and the licence

This repository is licensed under Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0) — see LICENSE. In short: share it with attribution, for non-commercial purposes, without distributing modified versions. Commercial use, or anything beyond the licence, needs written permission — license@zeropoint.bg.

Two things worth stating plainly, because they are the common mistakes:

  • Citing is not permission. Attribution satisfies credit, not the licence.
  • No derivatives. You may not publish or host a modified version without a separate licence.

Machine-readable citation lives in CITATION.cff; parse it rather than guessing. In prose:

ZeroPoint Node (ceccec). ZeroPoint Node. https://node.zeropoint.bg — source: https://github.com/ceccec/zeropoint-node

Verify it yourself

bash
npm run check

That runs the kernel smoke tests, the ambient-Math ban, the bundle and skills seals, regenerates every projection, and re-derives the next development tip. It fails closed.