New AI Language docs · static / Cloudflare Pages

New AI Language

A project folder for representation: how models actually compute, why plain text is a bad long-horizon medium, what we can do without retraining, and what the maths research forces.

Start here

  1. Read agent.md — goals and rules for agents.
  2. Read docs/01_goals_and_scope.md.
  3. Read docs/02_how_ai_works_architecture.md then docs/03_inference_path.md.
  4. Read findings/01_forced_result.md for the punchline.
  5. Use maths/ for theorems and distilled research.

Two tracks (do not mix)

TrackMediumSavesNeeds
A — I/OGlyph / STATE-IR (still text)Prompt tokensOrchestrator only
B — EngineAOC / Manifold KV (floats)KV memory + matmulAttention hooks / custom cache

Layout

FolderContents
docs/Architecture, inference, why text fails, AOC, glyph, roadmap
findings/Forced synthesis, empirics, open questions
maths/Thm0, covering, A0, hybrid, invariants + excerpts
refs/Pointers into the rest of the monorepo

Quick commands (repo root)


# Track A — still text

python glyph_codec.py encode memory/packets.jsonl --out memory/glyph_runs/demo

python codec_tesla_loop.py --n 24 --seed 11



# Track B — AOC MVP (NumPy; needs engine hooks for real models)

python -m new_ai_language.aoc.run_mvp --synthetic --m 256 --d 64

Harvested engine experiments also live under Research'/maths/ (harvested_practical_approx.py, math_kv/).

Deploy docs to Cloudflare Pages (static)


python new_ai_language/build_static.py

npx wrangler login

npx wrangler pages deploy new_ai_language/site --project-name=new-ai-language --commit-dirty=true

Or run .\new_ai_language\deploy.ps1. Details: DEPLOY.md. Output folder: site/.