There is a beautiful, largely unexplored space opening up right now: the transformation of human knowledge, sensors, and actuators from a “Human-First” orientation to an “LLM-First” one.

We are currently stuck in a primitive loop of “PDF-to-Text.” We feed models raw streams of tokens and ask them to predict the next word top-to-bottom. Frankly, that’s lame. It’s the computational equivalent of passive reading.

Total LLMification

I’ve become obsessed with a better way: Total LLMification. Imagine a physics textbook. For a human, it’s a static PDF. But for an LLM, that same book should be a dynamic, functional environment. This isn’t just OCR; it’s a non-trivial, human-in-the-loop transformation that turns “reading” into “doing.”

The Blueprint for LLM-Legible Knowledge

To truly upgrade an LLM’s capability, we need to stop treating data as flat text and start treating it as structured training signals. Here is the topology for the perfect textbook transformation:

All narrative text is extracted into clean Markdown. We preserve the semantic structure—tables, lists, bolding, and italics—and render all math in LaTeX. Figures are extracted not just as pixels, but as distinct image entities tied to their context.

Every “Example Problem” in the book is converted into a Supervised Fine-Tuning (SFT) example. We parse references to previous figures or tables so the model learns how to retrieve context, not just hallucinate answers.

This is where it gets interesting. We don’t just feed the model the practice problems; we extract them into environment examples for Reinforcement Learning (RL).

This is the killer app. For every specific problem type, we don’t just teach the model the answer; we build a Python-based generator that creates infinite variations of that problem.

Take a simple question: “What is the angle between the hour and minute hands at 9:00 a.m.?”

Instead of learning that one fact, we generalize the logic into code. We can now generate a dataset of millions of unique time-angle problems:

The LLM as a Student

By indexing this data into a RAG database or serving it via MCP (Model Context Protocol) servers, we fundamentally change the learning process.

Just as a human student takes a high school physics course—reading the theory, watching the teacher solve examples, and then grinding through practice problems—an LLM can now “take” the course in the exact same way.