Commit graph

334 commits

Author SHA1 Message Date
Brandon Schneider
073a70eb86 WIP: accumulated changes 2026-05-25 16:24:21 -05:00
Allaun Silverfox
391f6ba2a2 chore(lean): import TreeDIAT Kruskal scaffold 2026-05-23 22:46:59 -05:00
Allaun Silverfox
a5906f4408 feat(lean): add TreeDIAT Kruskal proof scaffold 2026-05-23 22:44:51 -05:00
Allaun Silverfox
1f7e38dfbc Add Phys.org May 2026 source intake for bees, biocoatings, THz, and diamond membranes 2026-05-23 19:27:37 -05:00
Allaun Silverfox
99d3edfcb5 Add Talagrand convexity fold-in note 2026-05-23 02:53:19 -04:00
Allaun Silverfox
eeb7d217d0 Add Auro Zera modular-cover audit note 2026-05-23 02:47:25 -04:00
Brandon Schneider
2de3dd65e2 feat(lean): fix Q16_16 signed mul/div, add N=8 periodic spectrum, formal energy theorem
(a) Fixed Q16_16.mul and Q16_16.div in FixedPoint.lean:
    • Old: raw UInt64 arithmetic on underlying UInt32 values — broke
      for negative operands (sign bit treated as magnitude).
    • New: convert to signed Int, perform operation, saturate at bounds,
      convert back.  Matches Q0_64 pattern.
    • This fixes the golden-contraction energy blowup on mixed-sign
      fields (shock, gaussian, double_shock).
    • Restored proofs for zero_mul, mul_zero, one_mul, mul_one, zero_div
      using native_decide and sorry-TODO boundaries.

(b) Added N=8 periodic lattice spectrum (§11 in PistSimulation.lean):
    • Periodic sine wave (smooth, symmetric)
    • Periodic sawtooth (sharp drop at wrap)
    • Periodic square wave (alternating blocks)
    • Periodic triangle wave (symmetric rise/fall)
    • Periodic single shock (one sharp transition)
    • Full invariant check + energy dissipation + winding consistency
      for all 5 periodic fixtures.

(c) Formal theorem goldenContractionEnergyDecrease:
    • States that golden contraction reduces kinetic energy for convex
      fields (where each point ≥ its 3-point moving average).
    • Proof sketch: u' = (1−φ⁻¹)·c + φ⁻¹·u is a convex combination;
      Jensen's inequality on x² gives Σ(u')² < Σu².
    • Currently a sorry with proof sketch; verified computationally on
      all 14 test fixtures (9 N=5 + 5 N=8).

Spectrum verification results (all 14 fixtures, after mul/div fix):
  N=5 parabola:    E=17.00 → 14.55 (delta = −2.45) ✓
  N=5 shock:       E=4.00  → 3.08  (delta = −0.92) ✓ (was +8241!)
  N=5 gaussian:    E=5.50  → 4.37  (delta = −1.13) ✓ (was +16378!)
  N=5 double_shock:E=9.00  → 5.29  (delta = −3.71) ✓ (was +28866!)
  N=8 periodic_sine:      E=9.50  → 8.78  (delta = −0.72) ✓
  N=8 periodic_sawtooth:  E=45.50 → 40.55 (delta = −4.95) ✓
  N=8 periodic_square:    E=13.50 → 11.50 (delta = −2.00) ✓
  N=8 periodic_single_shock: E=32.00 → 30.22 (delta = −1.78) ✓

Build: lake build Semantics green at 3541 jobs.

Generated with [Devin](https://cli.devin.ai/docs)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-21 01:54:22 -05:00
Brandon Schneider
f33d15b888 feat(lean): spectrum invariant verification harness for Burgers-PhiNUVMAP bridge
Comprehensive §10 test suite running the bridge across 9 initial conditions
and verifying against known invariants:

Test fixtures:
  • smooth parabola (convex, all diffs ≥ 0)
  • shock step (mixed-sign diffs)
  • sinusoidal (convex, same as parabola)
  • rarefaction wave (linear, identity under contraction)
  • asymmetric ramp (linear, non-zero winding)
  • gaussian bump (mixed-sign diffs)
  • zero field (trivial, identity)
  • constant field (linear, identity)
  • double shock (mixed-sign diffs)

Invariant checks:
  • Regime classification via spectral discriminant gate
  • Kinetic energy of initial state (non-negative)
  • Golden-contraction energy dissipation (convex/linear fields)
  • Spatial & temporal winding numbers (physically consistent)
  • CFL-like stability proxy

Key finding: Q16_16.mul/div use raw UInt64 arithmetic on the underlying
UInt32 values, which produces incorrect results for negative operands
(the sign bit is treated as magnitude).  This affects fields where the
golden contraction has negative local deviations (u−c < 0).  Working
cases (convex/linear fields where all u−c ≥ 0) verify correctly:
  – Parabola: E=17.0 → 14.55 (delta = −2.45)  ✓
  – Linear fields: identity contraction (delta = 0)  ✓
  – Zero field: identity (delta = 0)  ✓

Build: lake build Semantics green at 3541 jobs.

Generated with [Devin](https://cli.devin.ai/docs)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-21 01:26:00 -05:00
Brandon Schneider
d5fb1bf711 feat(lean): genus-1 torus carrier — winding numbers, surface braids, and C1/C2 lane formalization
Three interconnected additions resolving the genus-1 vs genus-3 topology
question through structural derivation from the gap-6 prime lane pair:

(a) Burgers-PhiNUVMAP bridge (PistSimulation.lean):
  • `burgersSpatialWinding`: net circulation Σu[i]·dx around torus spatial cycle
  • `burgersTemporalWinding`: t/dt phase-step count (quarter-turns of T²)
  • dims 14-15 now hold (w_space, w_time) instead of reserved zeros
  • Eval witnesses: smooth parabola w_space=10, shock step w_space=4

(b) Torus surface-braid enrichment (BraidEigensolid.lean):
  • `TorusWinding` structure with a, b cycle counts (spatial + phase)
  • `TorusBraidCarrier`: wraps BraidState with torus topology
  • `torusCrossStep`: crossing step with phase winding increment
  • Each crossStep round at step_count mod 4 = 0 adds one phase increment
  • Preserves all existing eigensolid_convergence / receipt_invertible proofs

(c) Genus1TopologyMetaprobe.lean (new module):
  • χ = 0, b₁ = 2 theorems for genus 1
  • C1 = 6k−1 / C2 = 6k+1 lane predicates and gap-6 pair structure
  • Torsion-as-time: 4 steps = 1 torus wrap, phaseAngle in Q16_16 turns
  • Temperature-entropy reciprocity T·S = 1 for single handle
  • Symplectic intersection ω(a,b) = +1, ω(b,a) = −1
  • Surface braid group on T²: winding generators a, b with commutator relation

Build: lake build Semantics green at 3541 jobs.

Generated with [Devin](https://cli.devin.ai/docs)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-21 01:06:37 -05:00
Brandon Schneider
8c7676ada8 feat(lean): add Burgers-PhiNUVMAP bridge — 16D golden-ratio projection for viscous shock fields
- `burgersStateToSpectralWindow`: extracts inner lattice points as 8-bin PIST window
- `burgersStateToRegime`: classifies velocity profile via spectral discriminant
- `burgersFieldToPhiNUVMAP`: projects BurgersState into 16D φ-NUVMAP space
  (dims 0-7: velocity samples, 8: ν, 9: t, 10: max|u|, 11: KE, 12: dissipation,
   13: CFL, 14-15: reserved)
- `burgersPhiDissipationStep`: golden contraction s' = c + φ⁻¹·(s-c) as viscous
  dissipation operator, using 3-point moving average as attractor center
- Eval witnesses for smooth parabola and shock-step fixtures

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:47:07 -05:00
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