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

Alexandru Mareș@allemaar
Alexandru Mareș
  1. Home
  2. Clusters
  3. Yon
Email
RSS
YounndAIYou and AI, unifiedBuilt withNollamaNollama
Cluster · active

Cluster — YON


# Cluster: YON

## Short definition

The Cluster of work covering **YON** — the constructed notation for AI cognition that separates grammar from vocabulary and treats text as a stream-first, line-independent record format.

## Long explanation

YON is the notation through which YounndAI cognitive systems read, think, and emit structured records. Unlike free-form prompts (no structure), JSON (rigid blocks that fail catastrophically on a single bad token), or YAML (block-shaped, indentation-sensitive), YON is **stream-first**: each line is a self-contained record that can be parsed, validated, or acted upon as it arrives. This matches how language models actually generate text and removes a class of failure modes that block formats inherit by design.

The other distinctive move is **grammar / vocabulary separation**. The grammar is fixed and minimal — a small structural language describing tags, fields, lists, references. Vocabularies plug in per-domain (`yon.sai`, `yon.content`, `yon.tasks`, ...). One parser, many domains. This Cluster collects every Body about YON: the spec, the parser benchmarks, the application essays, the comparisons with other agent notations.

## Why it matters

Notation shapes what you can think. Block formats forced an entire generation of LLM systems to produce-then-parse-then-fail — and to design around that failure mode (token-by-token streaming hacks, partial-JSON repair, retry loops). YON is what happens when the format *matches* the generative process rather than fighting it. The first-order benefit is correctness; the second-order benefit is composability — domain-specific cognitive vocabularies can ship on top of one parser.

This Cluster is the **language layer** of YounndAI's product line (sibling Org Alex owns). Every other concept (Elastic Automators, SAI Academy) eventually flows through YON when implemented at the cognitive-systems level.

## Best starting point

1. **The Block Problem essay:** [[2026-E0001 - The Block Problem/_metadata|E0001 — The Block Problem]] — why block formats are mismatched to LLM generation.
2. **Notation as Alignment:** [[2026-E0015 - Notation as Alignment/_metadata|E0015 — Notation as Alignment]] — the design stance behind YON.
3. **One Line One Thought:** [[2026-E0017 - One Line One Thought/_metadata|E0017 — One Line One Thought]] — the line-independence principle.
4. **Then:** browse the related Bodies below.

## Main paper / article / repo

- **Project hub:** [[yon.younndai.com|YON]] (`alm-os/Projects/YON - yon.younndai.com/`)
- **Domain:** [yon.younndai.com](https://yon.younndai.com)
- **Concept card:** [[yon|/concepts/yon]]
- **Spec / parser:** under development (Apache 2.0)

## All related Bodies

Bodies in this Cluster:

- [[2026-E0001 - The Block Problem/_metadata|E0001 — The Block Problem]] (2026-04-01) — foundational mismatch motivating YON
- [[2026-E0014 - The Strong Form/_metadata|E0014 — The Strong Form]] — argument for explicit structure
- [[2026-E0015 - Notation as Alignment/_metadata|E0015 — Notation as Alignment]] — why notation choice shapes cognition
- [[2026-E0016 - The Borges Warning/_metadata|E0016 — The Borges Warning]] — adjacent: language and meaning
- [[2026-E0017 - One Line One Thought/_metadata|E0017 — One Line One Thought]] — line-independence principle
- [[2026-E0025 - Why Constructed Languages Always Failed - Until Now/_metadata|E0025 — Why Constructed Languages Always Failed — Until Now]] — situates YON in the longer history of constructed languages
- (More Bodies as the Arc continues.)

## Videos / diagrams / infographics

- Per-episode video shorts; permalinks captured in each episode's `_metadata.md`.
- Future: notation-comparison diagrams; YON parse-tree visualizations.

## External references

- IndieWeb POSSE — adjacent canonicalization stance for human content.
- Wirth-style grammars and EBNF — the lineage YON's grammar layer draws on.
- Domain-specific languages literature (Fowler, Spinellis) — the vocabulary-pluggability analogue.

## Related topics

- [[ai-cognition|Cluster: AI Cognition]] — what YON enables at the cognition layer
- [[elastic-automators|Cluster: Elastic Automators]] — Elastic Automators expressed in YON
- Constructed-language history (Cluster TBD)

## FAQs

**Q. Isn't YON just YAML with a different name?**
A. No. YAML is block-structured, indentation-sensitive, and fails on partial parses. YON is stream-first, line-independent, with a grammar-vocabulary split absent from YAML.

**Q. Does YON replace JSON?**
A. For LLM-driven cognition: yes, by design. For static configuration files where the whole document is produced atomically: JSON is fine; YON's design pays its costs only where streaming matters.

**Q. What's the relationship to JSONL?**
A. Closer than to JSON or YAML. YON shares JSONL's line-as-unit move but adds a grammar layer (records have typed tags, not anonymous JSON objects) and the grammar-vocabulary split.

## Latest updates

- *(in development)* — YON v1.0 spec.
- *(in development)* — `@younndai/yon-parser`.
- Episodes E0014–E0017, E0025 published.