revert #294/#295/#296 + clean on top#299
Conversation
Three reverts (newest first): Revert #296 — 'COCA-Bundle vs Jina-CLAM comparison' Revert #295 — 'probe-routing followup data available' Revert #294 — 'probe-queue routing assessment' Then one fresh commit with correct content: bf16-hhtl-terrain.md — Probe Routing section: M1 → polarquant_hip_probe.rs (farthest-pair, not Ward) P2-P4 → shader-lab WireSweep (JIT-first, Phase 0 done) Architecture notes: CAM_PQ IS COCA-based, orthogonal only at LEAF, ICC calibrates family heel vector, CascadeConfig for HHTL variation, jitson Cranelift JIT templates, data availability EPIPHANIES.md — FINDING: M1/P2-P4 route through existing Lab infra IDEAS.md — Open: inverted-pyramid awareness streaming via CausalEdge64 through SPO+COCA→CAM_PQ pipeline (the actual open question)
Excavation Report — What's Actually Live vs AspirationalThe Audit (15 PRs, brutally honest)PRs #285-#293: Math substrate — SOLID
All 45 jc tests pass. The math substrate is the strongest part of this session's output. PRs #294-#296: Docs written without reading — REVERTED (correctly)
Pattern: "writes without reading first." Real file paths, wrong architectural understanding. PRs #297-#299: Self-correction arc
Session corrected itself within 90 minutes. No production code hallucinated. Excavatable Ideas — What's Live vs What Needs WiringActually Live (code exists, tests pass, wired into something)
Built But Not Wired (the gap to close)
The Two Actual Goals You NamedGoal 1: Gaussian Splats (Pillar 7 α-Akkumulation)What exists: Honest assessment: This is a LIKELY-REDISCOVERY (marked as such in IDEAS.md). The existing cascade already skips 95% of pairs via HHTL tiers. Adding α-blending would give a different termination criterion (accumulated confidence vs metric distance) but the practical speedup over what exists is unclear. What would actually be new and useful: NOT another cascade optimization. Instead: Gaussian-splat-style rendering of the SPO graph for visualization. Each committed fact in the TripletGraph becomes a 3D splat (position = embedding, opacity = NARS confidence, color = qualia signature). The renderer is what's missing — Actionable PR: Build Goal 2: Cognitive Shader Actually WiredWhat exists:
What's NOT wired — the missing cognitive loop: /// THE FUNCTION THAT DOESN'T EXIST YET.
pub fn cognitive_tick(driver: &mut ShaderDriver) -> TickResult {
// 1. Ingest: read new StreamDto from the bus
let stream = driver.bus().next_batch();
// 2. Encode: bind + braid + bundle into trajectory
let trajectory = driver.encode(stream); // MarkovBundler
// 3. Score: F = FreeEnergy::compose(likelihood, kl)
let f = FreeEnergy::compose(
vsa_cosine(unbind(trajectory, role_key), codebook),
driver.awareness().divergence_from(prior),
);
// 4. Resolve: Commit / Epiphany / FailureTicket
let resolution = f.resolve();
// 5. Commit: write back to BindSpace + AriGraph
driver.persist_cycle(resolution);
// 6. Awareness update
driver.awareness_mut().revise(key, outcome);
// 7. Render: project BindSpace state into framebuffer
driver.render_to_framebuffer();
TickResult { resolution, f }
}Steps 1, 2, 5 have implementations scattered across files. Steps 3, 4, 6 have types but no wiring. Step 7 doesn't exist at all. Actionable PR sequence:
These three PRs turn the cognitive shader from "typed structs with scattered helpers" into "a thing that actually ticks." ~600 LOC total. What I'd skip
Recommended execution order
Want me to build them? |
Was
Drei gemergte PRs reverten, dann frisch korrekt drauf schreiben.
Reverts
ideas: COCA-Bundle vs Jina-CLAM bucket comparison— Prämisse falsch: CAM_PQ IS COCA-basiert, eine Pipelinedocs: followup data available— erbt falsches Routing von docs(probe-queue): assess P2/P3/P4 routing — honest "needs production data" #294docs: probe-queue routing assessment— M1 als bgz-tensor/CHAODA eingeordnet statt polarquant_hip_probe.rs, P2-P4 als standalone bgz-tensor calibrate statt shader-lab WireSweepFrischer Inhalt
bf16-hhtl-terrain.md — Probe Routing:
polarquant_hip_probe.rs+turboquant_correction_probe.rsshader-labWireSweep(JIT-first, Phase 0 done)EPIPHANIES.md — FINDING: existierende Lab-Infra deckt M1/P2-P4 ab
IDEAS.md — Open: inverted-pyramid awareness streaming via CausalEdge64 durch SPO+COCA→CAM_PQ pipeline