Brandon Schneider
2febafa8e8
feat(lean): add PhiNUVMAP — golden-ratio fractal 16D coordinate system
...
PhiNUVMAP lifts NUVMAP into a 16D golden-ratio-scaled fractal space:
- phiQ16_16 ≈ 4181/2584 (Fibonacci ratio, error < 10⁻⁹)
- phiInvQ16_16 = φ⁻¹ for exact golden contraction
- 16D vector ops: add, sub, scale, zero
- PhiNUVMAP structure: center + coords + scaleLevel + spectralMode
- Golden contraction law: s' = c + φ⁻¹·(s-c)
- Fractal zoom: zoom in (×φ) / zoom out (×φ⁻¹) by level
- Tree-to-16D projection: TreeDIAT → 16D φ-NUVMAP state
- 16D chaos game with φ-contraction and deterministic perturbation
- 13 #eval! witnesses: φ·φ⁻¹≈1, φ²=φ+1, contraction, zoom, tree projection,
chaos game convergence
Build: lake build Semantics.PistSimulation = 3309 jobs green.
Generated with [Devin](https://cli.devin.ai/docs )
Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-21 00:29:27 -05:00
Brandon Schneider
fbf1a54def
feat(lean): add TreeDIAT prototype to PistSimulation.lean
...
TreeDIAT = Tree-to-Shell Coordinate Transform, enabling tree-structured
search traces to participate in PIST spectral refinement alongside
integer-shell (DIAT) data.
Components:
- TreeNode inductive type (binary tree with Nat labels)
- treeMetrics: O(n) extraction of depth, leafCount, nodeCount, maxLabel
- TreeDIAT structure: feature vector packed into Q16_16 space
- treeDIATEmbeddingScore: heuristic bushy=embeddable, stringy=not
- treeDIATToChaosState: project tree features into 3D chaos-game space
- treeSequenceRegime: classify tree sequences by Kruskal-bound proximity
- 14 #eval! witnesses on bushy/balanced/stringy fixtures
Build: lake build Semantics.PistSimulation = 3309 jobs green.
Generated with [Devin](https://cli.devin.ai/docs )
Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-20 23:56:33 -05:00
dependabot[bot]
68f83dd7a2
Bump idna from 3.10 to 3.15 in /2-Search-Space/search/whoogle-search ( #34 )
...
Bumps [idna](https://github.com/kjd/idna ) from 3.10 to 3.15.
- [Release notes](https://github.com/kjd/idna/releases )
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.md )
- [Commits](https://github.com/kjd/idna/compare/v3.10...v3.15 )
---
updated-dependencies:
- dependency-name: idna
dependency-version: '3.15'
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 23:51:19 -05:00
dependabot[bot]
ca80cf6d26
Bump the cargo group across 3 directories with 1 update ( #36 )
...
Bumps the cargo group with 1 update in the /2-Search-Space/search/stract directory: [openssl](https://github.com/rust-openssl/rust-openssl ).
Bumps the cargo group with 1 update in the /2-Search-Space/search/stract/crates/leechy-py directory: [openssl](https://github.com/rust-openssl/rust-openssl ).
Bumps the cargo group with 1 update in the /5-Applications/teleport-kanban directory: [openssl](https://github.com/rust-openssl/rust-openssl ).
Updates `openssl` from 0.10.79 to 0.10.80
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases )
- [Commits](https://github.com/rust-openssl/rust-openssl/compare/openssl-v0.10.79...openssl-v0.10.80 )
Updates `openssl` from 0.10.79 to 0.10.80
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases )
- [Commits](https://github.com/rust-openssl/rust-openssl/compare/openssl-v0.10.79...openssl-v0.10.80 )
Updates `openssl` from 0.10.79 to 0.10.80
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases )
- [Commits](https://github.com/rust-openssl/rust-openssl/compare/openssl-v0.10.79...openssl-v0.10.80 )
---
updated-dependencies:
- dependency-name: openssl
dependency-version: 0.10.80
dependency-type: indirect
dependency-group: cargo
- dependency-name: openssl
dependency-version: 0.10.80
dependency-type: indirect
dependency-group: cargo
- dependency-name: openssl
dependency-version: 0.10.80
dependency-type: indirect
dependency-group: cargo
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 23:51:16 -05:00
Brandon Schneider
81548958bb
feat(lean): inline spectral refinement kernel into PistSimulation.lean
...
Port the Gauss-Jordan LSQ spectral pipeline from the cascade stash
into a self-contained, policy-clean module:
- BraggPeak, MagneticDomain, pseudoVoigtQ16, chiSqWindow inlined
as pure Q16_16 types (no Float, no string fields in compute paths)
- MagneticRegime inductive type replaces string-based regime classification
- QuadraticPacket with vertex-form (a, h, k, Δ, width, χ²)
- MatrixPacket with Gram matrix G=AᵀA, det3, rank3, trace3, spectral placeholder
- ChaosState + chaosConverge affine IFS contraction loop (converges in 5 steps)
- 13 #eval! witnesses passing on synthetic 8-bin fixture
- Removes dependency on deleted Astrophysics modules
Build: lake build Semantics = 3541 jobs green.
Generated with [Devin](https://cli.devin.ai/docs )
Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-20 23:48:32 -05:00
Brandon Schneider
edbaa508f3
chore(lean): export fixedpoint additive identities
2026-05-20 23:19:16 -05:00
Brandon Schneider
52964551df
chore(lean): promote safe local semantics cleanup
2026-05-20 23:13:43 -05:00
Brandon Schneider
cdc6706e99
fix(servo-fetch): align dom query with smoothie
2026-05-20 23:07:32 -05:00
dependabot[bot]
3ba5570613
Bump idna in /4-Infrastructure/shim in the pip group across 1 directory
...
Bumps the pip group with 1 update in the /4-Infrastructure/shim directory: [idna](https://github.com/kjd/idna ).
Updates `idna` from 3.13 to 3.15
- [Release notes](https://github.com/kjd/idna/releases )
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.md )
- [Commits](https://github.com/kjd/idna/compare/v3.13...v3.15 )
---
updated-dependencies:
- dependency-name: idna
dependency-version: '3.15'
dependency-type: direct:production
dependency-group: pip
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit b6c2e09266654ebd9586ee4f026cea7fcf19a0df)
2026-05-20 23:04:17 -05:00
dependabot[bot]
3c31487403
Bump the python-minor-patch group
...
Bumps the python-minor-patch group in /2-Search-Space/search/whoogle-search with 10 updates:
| Package | From | To |
| --- | --- | --- |
| [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/ ) | `4.13.5` | `4.14.3` |
| [click](https://github.com/pallets/click ) | `8.3.0` | `8.4.0` |
| [cssutils](https://github.com/jaraco/cssutils ) | `2.11.1` | `2.15.0` |
| [idna](https://github.com/kjd/idna ) | `3.10` | `3.15` |
| [markupsafe](https://github.com/pallets/markupsafe ) | `3.0.2` | `3.0.3` |
| [pyopenssl](https://github.com/pyca/pyopenssl ) | `26.0.0` | `26.2.0` |
| [pyparsing](https://github.com/pyparsing/pyparsing ) | `3.2.5` | `3.3.2` |
| [soupsieve](https://github.com/facelessuser/soupsieve ) | `2.8` | `2.8.3` |
| [wcwidth](https://github.com/jquast/wcwidth ) | `0.2.14` | `0.7.0` |
| [werkzeug](https://github.com/pallets/werkzeug ) | `3.1.6` | `3.1.8` |
Updates `beautifulsoup4` from 4.13.5 to 4.14.3
Updates `click` from 8.3.0 to 8.4.0
- [Release notes](https://github.com/pallets/click/releases )
- [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/click/compare/8.3.0...8.4.0 )
Updates `cssutils` from 2.11.1 to 2.15.0
- [Release notes](https://github.com/jaraco/cssutils/releases )
- [Changelog](https://github.com/jaraco/cssutils/blob/main/NEWS.rst )
- [Commits](https://github.com/jaraco/cssutils/compare/v2.11.1...v2.15.0 )
Updates `idna` from 3.10 to 3.15
- [Release notes](https://github.com/kjd/idna/releases )
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.md )
- [Commits](https://github.com/kjd/idna/compare/v3.10...v3.15 )
Updates `markupsafe` from 3.0.2 to 3.0.3
- [Release notes](https://github.com/pallets/markupsafe/releases )
- [Changelog](https://github.com/pallets/markupsafe/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/markupsafe/compare/3.0.2...3.0.3 )
Updates `pyopenssl` from 26.0.0 to 26.2.0
- [Changelog](https://github.com/pyca/pyopenssl/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/pyca/pyopenssl/compare/26.0.0...26.2.0 )
Updates `pyparsing` from 3.2.5 to 3.3.2
- [Release notes](https://github.com/pyparsing/pyparsing/releases )
- [Changelog](https://github.com/pyparsing/pyparsing/blob/master/CHANGES )
- [Commits](https://github.com/pyparsing/pyparsing/compare/3.2.5...3.3.2 )
Updates `soupsieve` from 2.8 to 2.8.3
- [Release notes](https://github.com/facelessuser/soupsieve/releases )
- [Commits](https://github.com/facelessuser/soupsieve/compare/2.8...2.8.3 )
Updates `wcwidth` from 0.2.14 to 0.7.0
- [Release notes](https://github.com/jquast/wcwidth/releases )
- [Commits](https://github.com/jquast/wcwidth/compare/0.2.14...0.7.0 )
Updates `werkzeug` from 3.1.6 to 3.1.8
- [Release notes](https://github.com/pallets/werkzeug/releases )
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/werkzeug/compare/3.1.6...3.1.8 )
---
updated-dependencies:
- dependency-name: beautifulsoup4
dependency-version: 4.14.3
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-minor-patch
- dependency-name: click
dependency-version: 8.4.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-minor-patch
- dependency-name: cssutils
dependency-version: 2.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-minor-patch
- dependency-name: idna
dependency-version: '3.15'
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-minor-patch
- dependency-name: markupsafe
dependency-version: 3.0.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-minor-patch
- dependency-name: pyopenssl
dependency-version: 26.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-minor-patch
- dependency-name: pyparsing
dependency-version: 3.3.2
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-minor-patch
- dependency-name: soupsieve
dependency-version: 2.8.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-minor-patch
- dependency-name: wcwidth
dependency-version: 0.7.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: python-minor-patch
- dependency-name: werkzeug
dependency-version: 3.1.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-minor-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 185a71292fa93cf3a4804f1127a730041c2591be)
2026-05-20 23:04:17 -05:00
dependabot[bot]
83df91500f
Bump packaging in /2-Search-Space/search/whoogle-search
...
Bumps [packaging](https://github.com/pypa/packaging ) from 25.0 to 26.2.
- [Release notes](https://github.com/pypa/packaging/releases )
- [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/pypa/packaging/compare/25.0...26.2 )
---
updated-dependencies:
- dependency-name: packaging
dependency-version: '26.2'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 2d4bbb80c4e7d09a10985bd462d97eecaffdb599)
2026-05-20 23:04:04 -05:00
dependabot[bot]
9730cd85e4
Bump more-itertools in /2-Search-Space/search/whoogle-search
...
Bumps [more-itertools](https://github.com/more-itertools/more-itertools ) from 10.8.0 to 11.0.2.
- [Release notes](https://github.com/more-itertools/more-itertools/releases )
- [Commits](https://github.com/more-itertools/more-itertools/compare/v10.8.0...v11.0.2 )
---
updated-dependencies:
- dependency-name: more-itertools
dependency-version: 11.0.2
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 561af7addab6fe88964e7ecbb9cd8fea3b74aa26)
2026-05-20 23:03:34 -05:00
dependabot[bot]
9e5cce064a
Bump idna from 3.10 to 3.15 in /2-Search-Space/search/whoogle-search
...
Bumps [idna](https://github.com/kjd/idna ) from 3.10 to 3.15.
- [Release notes](https://github.com/kjd/idna/releases )
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.md )
- [Commits](https://github.com/kjd/idna/compare/v3.10...v3.15 )
---
updated-dependencies:
- dependency-name: idna
dependency-version: '3.15'
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit f045c8be8f044581ab1c81f4e0ea28b07822b8fd)
2026-05-20 23:03:34 -05:00
dependabot[bot]
9fa95d2183
Bump better-sqlite3 in the root-npm-minor-patch group across 1 directory
...
Bumps the root-npm-minor-patch group with 1 update in the / directory: [better-sqlite3](https://github.com/WiseLibs/better-sqlite3 ).
Updates `better-sqlite3` from 12.9.0 to 12.10.0
- [Release notes](https://github.com/WiseLibs/better-sqlite3/releases )
- [Commits](https://github.com/WiseLibs/better-sqlite3/compare/v12.9.0...v12.10.0 )
---
updated-dependencies:
- dependency-name: better-sqlite3
dependency-version: 12.10.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: root-npm-minor-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit a456172af7454d441dec274adebdd8c836e33096)
2026-05-20 23:03:34 -05:00
dependabot[bot]
ed3458ade2
Bump actions/setup-python from 5 to 6
...
Bumps [actions/setup-python](https://github.com/actions/setup-python ) from 5 to 6.
- [Release notes](https://github.com/actions/setup-python/releases )
- [Commits](https://github.com/actions/setup-python/compare/v5...v6 )
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 67a24b308d43cd54281f31ca472338fb6d394d03)
2026-05-20 23:03:34 -05:00
dependabot[bot]
19885bdc43
Bump actions/github-script from 7 to 9
...
Bumps [actions/github-script](https://github.com/actions/github-script ) from 7 to 9.
- [Release notes](https://github.com/actions/github-script/releases )
- [Commits](https://github.com/actions/github-script/compare/v7...v9 )
---
updated-dependencies:
- dependency-name: actions/github-script
dependency-version: '9'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 34498eb3b5306df13cc63c761a42ecdcdff83c59)
2026-05-20 23:03:34 -05:00
dependabot[bot]
1d12870d3b
Bump actions/checkout from 4 to 6
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 4 to 6.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v4...v6 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 3eeba953a50fea3449e944d726f311dde6a2d973)
2026-05-20 23:03:34 -05:00
dependabot[bot]
b61f14f6bc
Bump dashmap
...
Bumps the parquet-cargo-minor-patch group in /5-Applications/parquet_compressor with 1 update: [dashmap](https://github.com/xacrimon/dashmap ).
Updates `dashmap` from 6.1.0 to 6.2.1
- [Release notes](https://github.com/xacrimon/dashmap/releases )
- [Commits](https://github.com/xacrimon/dashmap/compare/v6.1.0...v6.2.1 )
---
updated-dependencies:
- dependency-name: dashmap
dependency-version: 6.2.1
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: parquet-cargo-minor-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 6a5703df97d971e85fbb1fdf49b54617bda6100f)
2026-05-20 23:03:27 -05:00
dependabot[bot]
ea7d3b94c3
Bump itertools in /5-Applications/parquet_compressor
...
Bumps [itertools](https://github.com/rust-itertools/itertools ) from 0.12.1 to 0.14.0.
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-itertools/itertools/compare/v0.12.1...v0.14.0 )
---
updated-dependencies:
- dependency-name: itertools
dependency-version: 0.14.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit b5d6ea5e7e9b4be35cf17b734bf9e21ae570a032)
2026-05-20 23:03:27 -05:00
dependabot[bot]
fea92c6c9a
Bump indicatif in /5-Applications/parquet_compressor
...
Bumps [indicatif](https://github.com/console-rs/indicatif ) from 0.17.11 to 0.18.4.
- [Release notes](https://github.com/console-rs/indicatif/releases )
- [Commits](https://github.com/console-rs/indicatif/compare/0.17.11...0.18.4 )
---
updated-dependencies:
- dependency-name: indicatif
dependency-version: 0.18.4
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 1b51e05db59c69a3d613e7a41eb76cbffc216400)
2026-05-20 23:03:27 -05:00
dependabot[bot]
47964b85f2
Bump the notion-tauri-cargo-minor-patch group
...
Bumps the notion-tauri-cargo-minor-patch group in /5-Applications/notion-native-tauri with 2 updates: [tauri](https://github.com/tauri-apps/tauri ) and [tauri-build](https://github.com/tauri-apps/tauri ).
Updates `tauri` from 2.11.1 to 2.11.2
- [Release notes](https://github.com/tauri-apps/tauri/releases )
- [Commits](https://github.com/tauri-apps/tauri/compare/tauri-v2.11.1...tauri-v2.11.2 )
Updates `tauri-build` from 2.6.1 to 2.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases )
- [Commits](https://github.com/tauri-apps/tauri/compare/tauri-build-v2.6.1...tauri-build-v2.6.2 )
---
updated-dependencies:
- dependency-name: tauri
dependency-version: 2.11.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: notion-tauri-cargo-minor-patch
- dependency-name: tauri-build
dependency-version: 2.6.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: notion-tauri-cargo-minor-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit ca226eb8cbad60de00487216277d0257c642d700)
2026-05-20 23:03:27 -05:00
dependabot[bot]
fcf2474fd1
Bump the linear-tauri-cargo-minor-patch group
...
Bumps the linear-tauri-cargo-minor-patch group in /5-Applications/linear-native-tauri with 2 updates: [tauri](https://github.com/tauri-apps/tauri ) and [tauri-build](https://github.com/tauri-apps/tauri ).
Updates `tauri` from 2.11.1 to 2.11.2
- [Release notes](https://github.com/tauri-apps/tauri/releases )
- [Commits](https://github.com/tauri-apps/tauri/compare/tauri-v2.11.1...tauri-v2.11.2 )
Updates `tauri-build` from 2.6.1 to 2.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases )
- [Commits](https://github.com/tauri-apps/tauri/compare/tauri-build-v2.6.1...tauri-build-v2.6.2 )
---
updated-dependencies:
- dependency-name: tauri
dependency-version: 2.11.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: linear-tauri-cargo-minor-patch
- dependency-name: tauri-build
dependency-version: 2.6.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: linear-tauri-cargo-minor-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 58850d0106485de31fa48e0232407f0d8ce334b1)
2026-05-20 23:03:27 -05:00
dependabot[bot]
da3bc4c9f9
Bump the servo-fetch-cargo-minor-patch group
...
Bumps the servo-fetch-cargo-minor-patch group in /4-Infrastructure/servo-fetch with 5 updates:
| Package | From | To |
| --- | --- | --- |
| [rmcp](https://github.com/modelcontextprotocol/rust-sdk ) | `1.5.0` | `1.7.0` |
| [tokio](https://github.com/tokio-rs/tokio ) | `1.52.1` | `1.52.3` |
| [psl](https://github.com/addr-rs/psl ) | `2.1.206` | `2.1.210` |
| [rustls](https://github.com/rustls/rustls ) | `0.23.38` | `0.23.40` |
| [assert_cmd](https://github.com/assert-rs/assert_cmd ) | `2.2.1` | `2.2.2` |
Updates `rmcp` from 1.5.0 to 1.7.0
- [Release notes](https://github.com/modelcontextprotocol/rust-sdk/releases )
- [Changelog](https://github.com/modelcontextprotocol/rust-sdk/blob/main/release-plz.toml )
- [Commits](https://github.com/modelcontextprotocol/rust-sdk/compare/rmcp-v1.5.0...rmcp-v1.7.0 )
Updates `tokio` from 1.52.1 to 1.52.3
- [Release notes](https://github.com/tokio-rs/tokio/releases )
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.52.1...tokio-1.52.3 )
Updates `psl` from 2.1.206 to 2.1.210
- [Release notes](https://github.com/addr-rs/psl/releases )
- [Commits](https://github.com/addr-rs/psl/compare/v2.1.206...v2.1.210 )
Updates `rustls` from 0.23.38 to 0.23.40
- [Release notes](https://github.com/rustls/rustls/releases )
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md )
- [Commits](https://github.com/rustls/rustls/compare/v/0.23.38...v/0.23.40 )
Updates `assert_cmd` from 2.2.1 to 2.2.2
- [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md )
- [Commits](https://github.com/assert-rs/assert_cmd/compare/v2.2.1...v2.2.2 )
---
updated-dependencies:
- dependency-name: rmcp
dependency-version: 1.7.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: servo-fetch-cargo-minor-patch
- dependency-name: tokio
dependency-version: 1.52.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: servo-fetch-cargo-minor-patch
- dependency-name: psl
dependency-version: 2.1.210
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: servo-fetch-cargo-minor-patch
- dependency-name: rustls
dependency-version: 0.23.40
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: servo-fetch-cargo-minor-patch
- dependency-name: assert_cmd
dependency-version: 2.2.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: servo-fetch-cargo-minor-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit ac4f8088d93d34df8cf2f3e3de0a234c5e1d3bc9)
2026-05-20 23:03:23 -05:00
dependabot[bot]
36fa4291cd
Bump dom_smoothie from 0.16.0 to 0.17.0 in /4-Infrastructure/servo-fetch
...
Bumps [dom_smoothie](https://github.com/niklak/dom_smoothie ) from 0.16.0 to 0.17.0.
- [Release notes](https://github.com/niklak/dom_smoothie/releases )
- [Changelog](https://github.com/niklak/dom_smoothie/blob/main/CHANGELOG.md )
- [Commits](https://github.com/niklak/dom_smoothie/compare/0.16.0...0.17.0 )
---
updated-dependencies:
- dependency-name: dom_smoothie
dependency-version: 0.17.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit d3825fbe4fa3625513b63eb6aff4ce23afe8b611)
2026-05-20 23:03:23 -05:00
dependabot[bot]
83835af972
Bump dom_query from 0.26.0 to 0.28.0 in /4-Infrastructure/servo-fetch
...
Bumps [dom_query](https://github.com/niklak/dom_query ) from 0.26.0 to 0.28.0.
- [Release notes](https://github.com/niklak/dom_query/releases )
- [Changelog](https://github.com/niklak/dom_query/blob/main/CHANGELOG.md )
- [Commits](https://github.com/niklak/dom_query/compare/0.26.0...0.28.0 )
---
updated-dependencies:
- dependency-name: dom_query
dependency-version: 0.28.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 1c87d275f305ebb0f8d9233d57b9f213c8866705)
2026-05-20 23:02:52 -05:00
dependabot[bot]
a442e24081
Bump the cargo group across 3 directories with 1 update
...
Bumps the cargo group with 1 update in the /2-Search-Space/search/stract directory: [openssl](https://github.com/rust-openssl/rust-openssl ).
Bumps the cargo group with 1 update in the /2-Search-Space/search/stract/crates/leechy-py directory: [openssl](https://github.com/rust-openssl/rust-openssl ).
Bumps the cargo group with 1 update in the /5-Applications/teleport-kanban directory: [openssl](https://github.com/rust-openssl/rust-openssl ).
Updates `openssl` from 0.10.79 to 0.10.80
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases )
- [Commits](https://github.com/rust-openssl/rust-openssl/compare/openssl-v0.10.79...openssl-v0.10.80 )
Updates `openssl` from 0.10.79 to 0.10.80
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases )
- [Commits](https://github.com/rust-openssl/rust-openssl/compare/openssl-v0.10.79...openssl-v0.10.80 )
Updates `openssl` from 0.10.79 to 0.10.80
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases )
- [Commits](https://github.com/rust-openssl/rust-openssl/compare/openssl-v0.10.79...openssl-v0.10.80 )
---
updated-dependencies:
- dependency-name: openssl
dependency-version: 0.10.80
dependency-type: indirect
dependency-group: cargo
- dependency-name: openssl
dependency-version: 0.10.80
dependency-type: indirect
dependency-group: cargo
- dependency-name: openssl
dependency-version: 0.10.80
dependency-type: indirect
dependency-group: cargo
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 4163e69bafc86fd27dc4535747c75e39db822f57)
2026-05-20 23:02:48 -05:00
dependabot[bot]
f99015c5ad
Bump sha2 in /1-Distributed-Systems/agents/claw/rust
...
Bumps [sha2](https://github.com/RustCrypto/hashes ) from 0.10.9 to 0.11.0.
- [Commits](https://github.com/RustCrypto/hashes/compare/sha2-v0.10.9...sha2-v0.11.0 )
---
updated-dependencies:
- dependency-name: sha2
dependency-version: 0.11.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 01389c38c76d42f311b1192b0965010b8761d378)
2026-05-20 23:02:44 -05:00
dependabot[bot]
eb2425aaa1
Bump crossterm in /1-Distributed-Systems/agents/claw/rust
...
Bumps [crossterm](https://github.com/crossterm-rs/crossterm ) from 0.28.1 to 0.29.0.
- [Release notes](https://github.com/crossterm-rs/crossterm/releases )
- [Changelog](https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crossterm-rs/crossterm/commits/0.29 )
---
updated-dependencies:
- dependency-name: crossterm
dependency-version: 0.29.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 34f19a92ddb59783f09b3f530061f8407a4c391b)
2026-05-20 23:01:47 -05:00
dependabot[bot]
7d6793ae92
Bump tokio
...
Bumps the claw-cargo-minor-patch group in /1-Distributed-Systems/agents/claw/rust with 1 update: [tokio](https://github.com/tokio-rs/tokio ).
Updates `tokio` from 1.50.0 to 1.52.3
- [Release notes](https://github.com/tokio-rs/tokio/releases )
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.50.0...tokio-1.52.3 )
---
updated-dependencies:
- dependency-name: tokio
dependency-version: 1.52.3
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: claw-cargo-minor-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit 71653e6c767f33b589f5a3ea497df94a5236eaca)
2026-05-20 23:01:47 -05:00
Allaun Silverfox
9707b9b93e
Add guide for OpenAI unit-distance disproof as FAMM solve pattern
...
(cherry picked from commit afc269c076d6026cf6ccb974d673b084c4976238)
2026-05-20 23:01:41 -05:00
Allaun Silverfox
9b1de5bedc
Add OpenAI unit-distance disproof as Erdos FAMM solved scar
...
(cherry picked from commit 502d16b1cfd30e519da42afa733f14b368dc5147)
2026-05-20 23:01:41 -05:00
Allaun Silverfox
ed074496b3
Add Erdos FAMM eigensolid pruning and alpha-family notes
...
(cherry picked from commit fb685deefbfdc8fe8a632b62da697ceaf06c1fa3)
2026-05-20 23:01:41 -05:00
Allaun Silverfox
01854bbe5d
Add Rainbow Raccoon / FAMM / NUVMAP architecture manual
...
(cherry picked from commit b7f3ce59d964108a3084ce66c1f53af9f0bc18b8)
2026-05-20 23:01:41 -05:00
Brandon Schneider
cf7dbb17d6
Merge github/main gamma radix metaprobe concept
2026-05-20 22:59:23 -05:00
Brandon Schneider
d2167c5b05
infra(vps): document BraidRouter mesh with nixos-laptop node
...
- Add BraidRouter section to vps-proxmox-status.md
- Document compute nodes: vps-local, qfox-1 (offline), nixos-laptop
- Document socat proxy (port 11435) for tailnet routing from LXC 100
- Update next steps with pending infrastructure tasks
Generated with [Devin](https://cli.devin.ai/docs )
Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-20 18:56:15 -05:00
Brandon Schneider
e6f770324d
fix(rds): restore ENE storage observation probe
2026-05-20 18:53:55 -05:00
Brandon Schneider
971f17034c
chore(manifold): remove orphaned MISC Python tests
2026-05-20 18:50:11 -05:00
Brandon Schneider
45c450028d
feat(lean): add braid eigensolid receipt gates
2026-05-20 18:49:40 -05:00
Brandon Schneider
beb39c235a
style(compile-bridge): format GPU verifier
2026-05-20 18:46:49 -05:00
Brandon Schneider
a4a5a4027c
feat(ene): replace legacy Python mesh with Rust crates
2026-05-20 18:46:18 -05:00
Brandon Schneider
539010c3f9
chore(root): refresh package lock and flake outputs
2026-05-20 18:43:13 -05:00
Brandon Schneider
cf7d1f2d24
feat(compile-bridge): add Q0.2 GPU enumeration mode
2026-05-20 18:42:48 -05:00
Brandon Schneider
90a7fc107e
feat(rust): add AngrySphinx and FAMM receipt tools
2026-05-20 18:41:57 -05:00
Brandon Schneider
546783faaf
docs: add external research import maps
2026-05-20 18:41:21 -05:00
Brandon Schneider
2cd377d8c7
Merge github/main turbulence atlas documentation
2026-05-20 18:40:26 -05:00
Brandon Schneider
cf0d588291
infra(vps): deploy Authentik, credential vault, age-sops, PQC, ARR plan
...
- LXC 100: Authentik 2025.4 with PostgreSQL 16 + Redis
- LXC 100: Credential vault HTTP service on port 9100 (PG-backed)
- VPS: Caddy reverse proxy with Let's Encrypt DNS-01 for researchstack.info,
auth.researchstack.info, vault.researchstack.info
- VPS: Post-quantum SSH (mlkem768x25519-sha256) in sshd_config
- Repo: age-sops secret management enabled
- Encrypt: .env, restic.env, credentials.json, appflowy.env,
tailscale-auth.key, porkbun.env, API KEYS/*.txt
- Add .sops.yaml at repo root and update k3s-flake/.sops.yaml
- Porkbun DNS: update A records to 46.232.249.226, add vault/auth subdomains
- Tailscale: auth key added to credential server (RackNerd microVM)
- Docs: PQC posture, VPS status, Authentik setup guide, ARR stack plan
Generated with [Devin](https://cli.devin.ai/docs )
Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-20 18:00:11 -05:00
Allaun Silverfox
df25f38769
Add gamma radix metaprobe concept
2026-05-19 13:57:51 -05:00
Brandon Schneider
04452eeaca
Lean: close trivial-True sorrys; add 7 missing Q16_16 lemmas
...
BurgersPDE.lean:
- cflStability (l187): replace sorry with trivial (goal was True)
- massConservation (l221): replace sorry with trivial (goal was True)
- Add TODO(lean-port) notes pointing to the actual proof strategies needed
FixedPoint.lean — 7 new lemmas (exported via Semantics.Q16_16 alias):
- zero_div: zero / x = zero for nonzero denominator; closes
CoulombComplexity.neutralNodesNoForce (was Unknown constant error)
- mul_self_nonneg: (a * a).toInt ≥ 0 (sorry stub; used by FNWH.Burgers)
- mul_toInt_nonneg: (a*b).toInt ≥ 0 given both inputs ≥ 0 (sorry stub)
- ofRaw_toInt_nonneg: (add acc wcc).toInt ≥ 0 given inputs ≥ 0 (sorry stub)
- mk_lt_half_nonneg: (Q16_16.mk s).toInt ≥ 0 given s < 0x80000000 (proved)
- add_one_omega_ge_one: (1 + ω).toInt ≥ 65536 given ω.toInt ≥ 0 (sorry stub)
- toInt_nonneg_le_maxVal: q.toInt ≥ 0 → q.toInt ≤ 0x7FFFFFFF (proved)
All lemmas are exported via the Semantics.Q16_16 alias block.
Full lake build: 3539 jobs, Build completed successfully.
Semantics.CoulombComplexity: now builds without error.
FNWH.Burgers: sorry stubs allow structural build; proof gaps documented.
Generated with [Devin](https://cli.devin.ai/docs )
Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-19 18:02:42 +00:00
Brandon Schneider
4b828e369c
ROADMAP.md: correct 9 phantom/stale claims flagged by review agents
...
**CRITICAL fixes**
- Header: note UNIVERSAL_SUBSTRATE_ROADMAP.md no longer exists on disk;
add note that TODO_MAP.md may lag this file
- §11: replace dead cross-reference with accurate statement; mark full
census reconstruction as Phase 0 deliverable
- Phase 0: split into completed infrastructure vs pending Lean work;
explicitly note `USTSM_State` does not yet exist in any Lean file
**ERROR fixes**
- §1: retract unverified "2,634 models" figure; replace with measured
1,126 ingested equation rows (source: equations.csv 2026-05-18)
- §6 Invariant 7: clarify Q0_64 universality is a Phase 0-1 design
goal, not a current enforced fact; note Bind.lean uses Q16_16
exclusively by design ("all values require integer component for
gradient computation") — no contradiction, different scopes
- §8: expand Semantics/Semantics description to reflect 946+ entries
(not a handful of named modules); update §4-Infrastructure/infra/
description to reflect Rust-only state (Python shims removed)
- §12 Credential Gateway: remove reference to deleted credential_server.py;
credit rs-surface binary and credential.rs module
**WARNING fixes**
- §10 FPGA Hardware: change ✅ Synthesized → 🔄 Bitstream ready; add
"live hardware receipt pending" caveat
- Phase 4 heading: rename to clarify concurrent-with-Phases-2-3; add
explanatory note
**BLOCKED annotation**
- Immediate action #8 (Flash Tang Nano 9K): mark as blocked on physical
board + USB programmer
Generated with [Devin](https://cli.devin.ai/docs )
Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-19 17:04:45 +00:00
Brandon Schneider
b58c1201ac
Remove legacy Python prototypes superseded by Lean formalization
...
Deleted 58 Python files (~31K lines) that were experimental prototypes
and bootstrapping scripts now superseded by the Lean source of truth:
0-Core-Formalism/core/ (2 files):
- field_solver_emulator.py
- formalize_mass_number.py
0-Core-Formalism/lean/LeanGPT/ (17 files):
- All LLM bootstrapping scripts (algorithm_bootstrap, automated_conviction_loop,
classify_algorithms, external_model_bridge, genetic_hypothesis_generator,
group_algorithms_by_domain, hutter_prize_full_test, hutter_prize_test,
hypothesis_generator, mathematical_law_conviction, otom_pipeline,
performance_profiler, refine_algorithms_by_domain, skeptical_agent_concern_fix,
skeptical_agent_swarm, wgsl_hypothesis_runner)
0-Core-Formalism/lean/Semantics/ (1 file):
- expand_domains.py
0-Core-Formalism/otom/ (4 files):
- scripts/validate_routing.py
- tools/ene/ene_artifact_salvage_extractor.py
- tools/genetics/emit_selection_receipt.py
- tools/genetics/selection_metrics.py
2-Search-Space/ (14 files):
- FAMM/solve_famm_sorry.py
- GhostPivot/gist_pivot_poc.py
- PIST/hybrid_tsm_pist_torus.py, pist_sweep.py
- SVQF/microgrid_voxel_emulation.py
- manifold/ (9 files: api/server, collapse_editor, particle_interaction,
projection_engine, relativity_adapter, self_typing_engine, soliton_search,
substrate_bridge)
- search/generate_lut.py, ingest_pd.py, sweep_manifold.py
3-Mathematical-Models/ (20 files):
- dna_benchmark/compressors/ (5 files)
- pist_biological_polymorphic_shifter_v3*.py (5 files)
- fiber_optic_vibrational_tensor/fiber_optic_tensor_network.py
- manifold_compression/src/ (2 files)
- fix_kwargs_meta.py, fix_metadata.py, fix_remaining.py, fix_sbox.py
- genetics/Allelica/Allelica.py
These prototypes expressed formal concepts in Python that are now
formalized in Lean (747+ Lean modules). Per AGENTS.md, Lean is the
source of truth for formal claims.
Generated with [Devin](https://cli.devin.ai/docs )
Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-19 15:34:17 +00:00