plain-text

Text files are forever. No lock-in. No corruption. No transformation.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "plain-text" with this command: npx skills add simhacker/moollm/simhacker-moollm-plain-text

Plain Text

"I don't want to worry about whatever cursed format OneNote uses still being something I can extract in 2035." — @Havoc, Hacker News (2025)


What Is It?

Plain text is MOOLLM's substrate. Everything important is stored in human-readable text files:

  • SESSION.md — Session logs in Markdown
  • ROOM.yml — Room state in YAML
  • CHARACTER.yml — Character data in YAML
  • SKILL.md — Skill documentation in Markdown

No proprietary formats. No binary blobs. No databases. Just text.


Why Plain Text Wins

1. Durability

FormatStatus in 2004Status in 2025Status in 2045?
Microsoft Word .docUbiquitousLegacyUnknown
OneNoteNewCurrentUnknown
Markdown .mdNewUbiquitousStill readable
Plain .txtAncientUniversalStill readable

Text files from 1970 are still readable. They will be readable in 2070.

2. No Lock-In

# This file requires:
# - Any text editor
# - That's it

No vendor. No license. No subscription. No "cloud service discontinued."

3. Git-Friendly

- player_location: start
+ player_location: maze

Plain text diffs are:

  • Readable — Humans understand the change
  • Mergeable — Git can combine concurrent edits
  • Auditable — History is meaningful

4. LLM-Native

From Anil Dash (2025):

"All of it — all of it — is controlled through Markdown files. When you see the brilliant work shown off from somebody who's bragging about what they made ChatGPT generate for them... all of the most advanced work has been prompted in Markdown."

LLMs:

  • Are trained on plain text (GitHub, web, books)
  • Output plain text naturally
  • Understand structure in text (headers, indentation, bullets)
  • Process text more efficiently than structured formats

5. Inspectable

cat SESSION.md     # Read it
grep "player" *.yml # Search it
diff old.yml new.yml # Compare it
git log SESSION.md  # Track it

No special tools. No viewers. No converters.


The Unix Philosophy

Ken Thompson and Dennis Ritchie knew this in 1969:

"Text is the universal interface."

Pipes, streams, filters — all work on text:

cat rooms/*.yml | grep "exits" | sort | uniq

MOOLLM inherits this: the filesystem IS the database.


Plain Text Formats in MOOLLM

FormatExtensionPurpose
Markdown.mdProse, documentation, session logs
YAML.ymlStructured data with comments
Templates.tmplEmpathic templates (YAML + placeholders)

All are plain text. All are human-readable. All work with standard tools.


The "Worse is Better" Principle

Richard Gabriel (1989):

"Simplicity is the most important consideration in a design."

Markdown is "worse" than DocBook:

  • Fewer features
  • Less precise
  • Less formally specified

But Markdown won because:

  • Easier to learn — 5 minutes
  • Easier to read — Raw or rendered
  • Easier to write — No closing tags
  • Easier to implement — Hundreds of parsers

Simple formats that actually get used beat complex formats that don't.


Plain Text and AI

The entire trillion-dollar AI industry runs on plain text:

AI ComponentFormat
Training dataText files (books, web, code)
PromptsMarkdown / plain text
OutputsText / Markdown
Context windowsMeasured in text tokens
RAG documentsOften Markdown
Agent instructionsMarkdown files

From Anil Dash:

"The trillion-dollar AI industry's system for controlling their most advanced platforms is a plain text format one guy made up for his blog."


MOOLLM's Commitment

1. Files as State

No databases. State is in files:

adventure-4/
├── ADVENTURE.yml      # Game state
├── start/
│   ├── ROOM.yml       # Room state
│   └── lamp.yml       # Object state
└── characters/
    └── don-hopkins/
        └── CHARACTER.yml  # Character state

2. Human-Readable Always

If a human can't read the file in vim, rethink the format.

3. Comments ARE Data

# CRITICAL: Do not delete this
# It contains the player's memories
memories:
  - "Met Bumblewick in the maze"

Comments are preserved, not stripped.

4. No Transformation Gap

The YAML you write is the YAML that runs. No compilation step hides meaning.


Anti-Patterns

Binary formats — Opaque, require special tools
Proprietary formats — Lock-in, potential for obsolescence
Database-only state — Not inspectable, not git-friendly
Generated-only files — If no human source exists, fragile
Minified output — Readable formats should stay readable


Exceptions

Some things aren't text:

  • Images — Binary, but referenced from text
  • Audio/Video — Binary, but metadata in YAML
  • Large datasets — May need binary for performance

For these: keep the metadata and references in plain text, even if the content is binary.


Dovetails With


Protocol Symbol

PLAIN-TEXT

Invoke when: Choosing formats, designing storage, considering durability.


The Bottom Line

"Markdown files from 2004 are still readable today. They'll be readable in 2045. Plain text is forever."

Write for the future. Write in plain text.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

self-repair

No summary provided by upstream source.

Repository SourceNeeds Review
General

persona

No summary provided by upstream source.

Repository SourceNeeds Review
General

dog

No summary provided by upstream source.

Repository SourceNeeds Review