We use cookies to understand how you use this site and improve your experience.

Alexandru Mareș@allemaar
Alexandru Mareș
  1. Home
  2. Writing
  3. The Medium
Email
RSS
YounndAIYou and AI, unifiedBuilt withNollamaNollama

The Medium

Alexandru Mareș

On this page

  • The Medium
  • Three Versions of the Same Rule
  • Storage, Display, Cognition
  • The Invisible Part
PreviousThe Lineage
NextThe Pliable Mind
Related
The Lineage12/03/2026
The Pliable Mind12/03/2026
The Vocabulary12/03/2026
Published12/03/2026
Read time3 min
Topics
Language & CognitionThinkingPhilosophyYON
Actions
00
Comments

Loading comments…

Leave a comment

0/2000

The Medium

Marshall McLuhan wouldn't have been surprised by any of this.

His thesis, "the medium is the message," was the claim that the form of a communication medium shapes thought more profoundly than any content carried through it. The printing press didn't just spread ideas faster; it created linear thinking, individualism, and nationalism. Television didn't just broadcast programs; it created a culture of images, celebrities, and spectacle.

McLuhan's insight was that we focus on content, what the book says, what the show broadcasts, and ignore the medium itself, which is where the real cognitive transformation happens. The content is the "juicy piece of meat carried by the burglar to distract the watchdog of the mind."

I think about this constantly when working on YON.

Three Versions of the Same Rule

Consider three ways to express the same behavioral constraint:

A Markdown README:

When modifying code in this repository, always check for a colocated behavioral contract first.

A JSON configuration:

{ "level": "MUST", "when": "modifying code", "then": "check .yon" }

A YON declaration:

@RULE lvl=MUST | when="modifying code" | then="check for colocated .yon"

The content is identical. The same instruction. The same intent. The medium is different.

The Markdown version is prose, a paragraph in a sea of paragraphs. Nothing distinguishes this rule from a suggestion, a description, or a greeting. The JSON version is data, a configuration object with a key called "level" whose value is the string "MUST." The agent processes it as data to store. The YON version is a : announces its kind, declares its enforcement weight, the pipe-separated fields create a machine-scannable structure.

typed behavioral declaration
@RULE
lvl=MUST

McLuhan would say: you're looking at the meat. Look at the burglar. How the rule is expressed determines how the agent processes it. Not what it reads, but how it thinks about what it reads.

Storage, Display, Cognition

I've come to think there are three kinds of media, not just "the medium":

Storage media hold information for retrieval. JSON, databases, file systems. The design question is: can I get it back?

Display media present information for humans. Markdown, HTML, PDF. The design question is: can a human understand it?

Cognitive media shape how a processor reasons about information. The design question is: does the structure create the right thinking patterns?

Most notation formats are storage or display media. They optimize for retrieval or readability. YON is a cognitive medium. It optimizes for reasoning quality: the structure of the notation is designed to create specific cognitive patterns in the agent that processes it.

This distinction isn't pedantic. It changes what you optimize for. If you think of YON as a storage format, you optimize for compactness and parseability. If you think of it as a cognitive format, you optimize for reasoning fidelity. Does the structure create accurate, complete, rule-respecting cognition?

The Invisible Part

McLuhan's deepest insight was that the most powerful effects of media are invisible. Fish don't notice water. We don't notice that print culture made us think linearly. We don't notice that social media is making us think in fragments.

I think the same invisibility applies to notation. When an AI agent processes JSON, neither the agent nor the developer notices that JSON's flat, typeless structure creates a cognitive environment where all information has equal weight. There's no enforcement level. There's no cognitive priming. There's no distinction between "this is a rule" and "this is a description." Everything is just keys and values.

That absence isn't neutral. It's a cognitive medium that treats all information as equal, and produces reasoning that treats all information as equal.

When the agent processes YON, the typed structure creates an environment where rules have weight, documents have kinds, and enforcement has levels. The notation makes distinctions that JSON doesn't, and those distinctions create grooves in the agent's reasoning.

The medium isn't just the message. For an AI agent, the medium is the mind.


Previous: The Grooves Next in the series: The Lineage, on how notation systems have always changed what minds can do.