Skip to main content

We try to speak plainly: what belongs on the open web and what is still bench work are spelled out on Research status. Good-faith corrections and sharp questions help us keep that line honest. If you need evaluation, licensing, a prototype, or an NDA conversation, start with Partners or Contact.

Demo appendix: phyllux-core

This page is replicable mechanics in the open lane—part of Phyllux’s north star (honest research you can rerun). Install from the public core package (path published with partner bundles). These commands document behavior as of the appendix date, not a service SLA. For what the company claims more broadly, see Research status and PhiKey.

Consumer fiction tooling is not covered here. For Novelmate Studio product pages and boundaries, use novelmatestudio.com and Research status row five.

This appendix shows open constants and mechanics already in the package. It is not a substitute for counsel on what else may be published under your black-box policy. Never paste production seeds, passwords, private lattice material, or customer ciphertext into issues, chats, or the public site — use synthetic placeholders only. Before any deploy, see Safe public publish and run npm run preflight (or npm run scan:public only).

1. Constants (JSON)

cd core
pip install -e ".[dev]"
python -m phyllux_core constants

Example output:

{
  "golden_angle_deg": 137.508,
  "phikey_numerator": 742,
  "phikey_skip_interval": 137,
  "phikey_ratio": 5.416058394160584,
  "node_count": 121,
  "anchor_node_1_based": 61
}

2. Skip windows on a long literal string

Input must be at least one full window long (default skip 137) to emit window records.

python -m phyllux_core skip-demo "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Example output (300 x characters):

{
  "skip": 137,
  "windows": [
    { "start": 0, "len": 137 },
    { "start": 137, "len": 137 }
  ],
  "xor_first_bytes": 0
}

3. 121 node mesh (truncated)

python -m phyllux_core mesh --format json

First nodes only:

{
  "golden_angle_deg": 137.508,
  "phikey_ratio": 5.416058394160584,
  "nodes": [
    { "index": 1, "r": 1.0, "theta_deg": 137.508, "x": -0.737..., "y": 0.675..., "is_anchor": false },
    { "index": 2, "r": 1.414..., "theta_deg": 275.016, ... }
    ...
  ]
}

4. Integrity bundle on a small file

python -m phyllux_core integrity path/to/file.txt

Example shape:

{
  "xor_first_of_skip_windows": 0,
  "byte_sum_mod_742": 199,
  "window_count": 0,
  "input_length": 72,
  "skip": 137,
  "phikey_ratio": 5.416058394160584
}

window_count is zero when the file is shorter than one window. Use a longer file to exercise windowed fields.

Strategic acquisition · ← Research status · PhiKey · Pattern lab · Docs · Partners