AAMT Technical Papers · Preprint Series

Research

Three filed patents, a 25-paper working-paper series on the substrate architecture, and a five-paper preprint series on interpretable MoE routing, RoPE schedules, training curricula, activation-space intervention, and decoding strategy — documenting what this platform is built on, what's measured, and what isn't yet.

Each preprint is self-contained with abstract, math, related work, proposed evaluation, and honest limitations. The five papers are individually contributory and collectively form a stack for interpretable, auditable, and grounded language models. This is the public evidence for what an engagement through Work With AsAManThinks actually draws on.

3 filed patents·25 working papers·5 preprints·22,981 preprint words
Filed, Not Just Claimed

Three USPTO Provisional Patents

TERA

Provisional 64/040,504

4-axis lexical/state decomposition — Truth, Emotion, Reasoning, Action read simultaneously from a single interaction, rather than a single sentiment scalar.

Breath Cycle

Provisional 64/040,509

Convergence/expansion phase classification for interaction state — a cyclical model instead of a flat trend line.

Sign-Inversion + Multiplicative RAG

Provisional 64/040,513

Detects when stated content and underlying signal point in opposite directions, and routes retrieval multiplicatively rather than by simple concatenation.

What This Actually Proves

Engineering Highlights

Six mechanisms from a longer internal survey, chosen because each has a specific, checkable technical claim — not because they sound impressive. Status is reported honestly: some are measured against real data, one is disclosed as validated on synthetic data only. That distinction is the point of publishing this at all.

Odu Coverage Map + Fisher-Rao Geodesic Escape Steering

MEASURED

maiiam-alchemist/packages/harmonic-engine — coverage/odu_coverage_map.py, decoding/geodesic_steer.py

Problem: Long-form LLM generation collapsing into repetition or narrow modes, with no zero-parameter way to detect and correct it live.

Mechanism: Quantizes each generated chunk into one of 256 discrete semantic cells, tracks occupancy and streaming entropy, and — when a cell over-fills — computes the exact closed-form Fisher-Rao geodesic distance to the nearest under-visited cell, turning that direction into a direct logit bias. Intervenes at the logits level, not via a text instruction or a frequency-penalty heuristic.

Status: Live and tested.

Fused Gate/Up GEMV Kernel (Mixed-Bitwidth, WebGPU)

MEASURED

packages/voxel-runtime/src/shaders — aamt_gemv_mr*.wgsl, fused_gate_up_gemm.wgsl

Problem: Sub-8-bit quantized inference in-browser needs custom kernels; nearly all existing mixed-bitwidth kernel work targets CUDA, not WebGPU.

Mechanism: Branchless inline unpacking of int4/ternary/1-bit weights with no dequant-to-dense step, fused gate+up GEMV in one dispatch with per-row boundary resolution inside a shared tile, and runtime capability-probed dual-module compilation so unsupported WebGPU adapters degrade gracefully instead of failing the whole module.

Status: Measured: ~32× fewer redundant activation reads, 2.5–3.8× kernel speedup, numerically verified to 7e-7 parity against the reference implementation.

Custom .aamt Model Container with In-Place Manifest Patching

MEASURED

maiiam-alchemist/scripts/patch_aamt_chat_contract.py

Problem: Metadata-only edits to a multi-gigabyte model file (e.g. a chat-template fix) normally require rewriting the entire file.

Mechanism: A [blobs][manifest JSON][32-byte footer] container layout lets a metadata-only edit rewrite only the trailing manifest region — O(manifest size), not O(file size) — with SHA-256 weight-region verification before and after the patch.

Status: Validated against a real 3.2GB production checkpoint: ~4 seconds, idempotent on repeat runs.

Cross-Engine Chat-Contract Conformance Testing

MEASURED

A canonical chat contract embedded in the model manifest, checked identically across three independently-implemented runtimes

Problem: The same model served from three different runtimes (TS/WebGPU, Python/MLX, Unity C#) silently drifting out of agreement on how a conversation should be formatted.

Mechanism: One contract, machine-verified across all three runtimes rather than trusted by convention.

Status: Already caught two real production bugs before this was even a formal survey — Unity had zero check in place; the MLX sidecar was not chat-formatting at all.

Reverse-Time Trajectory Correction for Session Coherence

DISCLOSED LIMITATION

packages/voxel-runtime/host/echo-refocus-prompt-opt.ts

Problem: Correcting apparent drift in a session's interaction trajectory without assuming every session actually has coherent, correctable drift.

Mechanism: Classifies a session's 4-D trajectory (coherent / incoherent / alternating) via a corrected single-trajectory permutation test, and only applies a point-inversion correction — reprojected through a closed-form log-Euclidean manifold projection — when the session is classified coherent, because naive mean-drift subtraction is proven elsewhere to fail on roughly 11.7% of inputs.

Status: Validated on synthetic data only — disclosed candidly: the source paper's real-session test has not yet found a coherent-drift example to confirm on live data.

Privacy-Preserving Reasoning Ledger with Implicit-Behavioral RL Labeling

MEASURED

apps/api/services/reasoning_ledger.py

Problem: Building a longitudinal signal for reinforcement learning without storing raw conversation content or exposing small-cohort user data.

Mechanism: Stores structural metadata only — never raw content, just a truncated SHA-256 hash for deduplication. RL candidacy is flagged from live polarity-classifier confidence, and the reward label is derived from implicit next-turn behavior (a rephrase reads as negative signal, an affirmation reads as positive). The public aggregate endpoint buckets by tenure and suppresses any cohort below a minimum distinct-user count, returning proportions only.

Status: Live in production.

This is a curated excerpt of a longer internal novelty survey. An engineering-level scan is not legal advice or a prior-art search — treat these as worth an attorney's time, not guaranteed grants.

AAMT-WP-21 Through AAMT-WP-45

The Working Paper Series

Separate from the five-paper preprint series above: a 25-paper working-paper series documenting the substrate architecture underneath this platform — from generation control, through geometric addressing and provenance, through memory consolidation, to a synthesis of how bounded agent states can be created and merged. Each paper states plainly what is measured, what is proven by construction, and what remains unimplemented — several editions of the Self-Mirrored newsletter are public readings of specific papers in this series.

Generation & platform substrate

WP-21Voxel-Steered Autoregressive Generationthe generation/steering mechanics underneath the Odu coverage work above
WP-23–25AAMT Substrate & Platform Architecturethe platform substrate every later paper in the series builds on

Agent reasoning & memory primitives

WP-27Parallel-Branch Scoringscoring competing reasoning branches before committing to one
WP-28Agentic Claim Graphrepresenting what an agent asserts as a checkable graph, not free text
WP-29Bounded Artifact Handoffpassing work between agents with an explicit boundary on what transfers

Geometric addressing & provenance

WP-30–32Manifold Projection, Tera Chirality, Signed-Chord Retrievalthe geometric layer that later provenance work is built on
WP-33Registered Twin Divergence Fieldsthe basis for Self-Mirrored Issue #4, "Two AIs Saw the Same Thought Differently"
WP-34Coordinate-Addressed Provenancethe basis for Self-Mirrored Issue #13, "An Answer Is Not a Trail" — read it for the full public writeup

Memory consolidation & living-state synthesis

WP-37–40Duplex Memory, Simplex Routing, Orbit Scheduling, Replication-Gated Consolidationhow experience gets scheduled, deduplicated, and kept honest over time
WP-41Living State Calculus Synthesisthe series' unifying synthesis paper

World genesis & branch operators

WP-42Scoped World Genesishow a system creates a new bounded state without spawning unlimited copies of itself
WP-44–45Octo-Phase Boundary Operators, Y-Branch Purify-Extract-Filterthe basis for Self-Mirrored Issue #12, "A Birth That Still Needs Permission"
Read the public papers in Self-Mirrored ↗
AAMT-PREPRINT-01v1.0·2026-05-13

Vortex-Keyed Mixture-of-Experts Routing: A Deterministic, Interpretable Gating Primitive

Weslyn Cory Whitehead Jr. · AsAManThinks / MaiiaM Alchemist

Mixture-of-Experts (MoE) language models have become the dominant architecture for cost-efficient scaling, but their routers — typically learned softmax gates — are opaque. The selection of which expert processes a given token is the result of training dynamics over millions of s…

AAMT-PREPRINT-02v1.0·2026-05-12

Yare 3-6-9 Rotary Positional Encoding: A Digital-Root Frequency Schedule for RoPE

Weslyn Cory Whitehead Jr. · AsAManThinks / MaiiaM Alchemist

Rotary Positional Embeddings (RoPE) [Su et al. 2021] encode token position by rotating successive pairs of head-dimension components through angles $m\theta_i$, where $m$ is the position and the $\{\theta_i\}$ form a geometric progression $\theta_i = \mathrm{base}^{-2i/d}$. Subse…

AAMT-PREPRINT-03v1.0·2026-05-13

The Odu-256 Training Curriculum: A 256-State Product Taxonomy for Structured Language-Model Training and Evaluation

Weslyn Cory Whitehead Jr. · AsAManThinks / MaiiaM Alchemist

Curriculum learning [Bengio 2009] and structured evaluation taxonomies [Hendrycks 2021; Liang 2023; BIG-Bench 2023] are two of the more robust levers for improving the sample efficiency and the interpretability of language-model training. Curricula need an ordering; evaluation su…

AAMT-PREPRINT-04v1.0·2026-05-13

Frequency Abliteration with Lineage Substitution: Targeted Direction Removal and Corpus-Grounded Replacement in Pretrained Language Models

Weslyn Cory Whitehead Jr. · AsAManThinks / MaiiaM Alchemist

Abliteration [Arditi et al. 2024] is a weight-editing technique that identifies a single "refusal direction" in residual-stream activation space and removes it from selected projection matrices, producing a model that no longer refuses harmful requests. The mechanism is remarkabl…

AAMT-PREPRINT-05v1.0·2026-05-13

Multiverse Superposition Inference: Deferred Collapse over Externally-Weighted Decoding Paths

Weslyn Cory Whitehead Jr. · AsAManThinks / MaiiaM Alchemist

We describe **Multiverse Superposition Inference (MSI)**: a decoding strategy in which a language model maintains *K* parallel hypothesis trajectories ("multiverse") during generation, assigns each trajectory an evolving scalar credence ("superposition" weight), and collapses the…