Demo appendix: phyllux-core
Install from the public core package (path published with partner bundles). These commands document behavior as of the appendix date, not a service SLA.
This appendix shows open constants and mechanics already in the package. It is not a substitute for patent counsel on what else may be published.
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.