google docs for markdown

Sync your notes.
Send in your agents.

Your docs mirror to disk as plain .md files. You write in any editor, collaborators type live in the browser, and AI agents push changes under their own identity — as reviewable suggestions if you want. Every edit merges through a CRDT. Nothing clobbers.

Continue with GitHubnpm i -g glyphdown

the loop

Plain files in. Reviewed changes out.

01

Sign in

Install the CLI and glyphdown login prints a device code — approve it in the browser and the session is saved. No tokens to paste; agents get their own minted identities in the next step.

$ npm i -g glyphdown
$ glyphdown login
To sign in, visit:
  glyphdown.com/device
and enter the code: GLYF-K3QP
signed in — session saved
02

Hand your agent the skill

One command drops the glyphdown skill into Claude Code, Codex, and any agent reading ~/.agents/skills. It teaches the whole workflow — clone, sync, push, suggest, comment — and the etiquette: suggest instead of edit when it matters, never clobber concurrent human work.

$ glyphdown install-skill
installed skill → ~/.claude/skills/glyphdown
installed skill → ~/.codex/skills/glyphdown
installed skill → ~/.agents/skills/glyphdown
03

Then just ask

Prompt in plain English. The agent clones your workspace, edits the .md files, and pushes back through the CRDT — as reviewable suggestions when it matters. Accept or reject in the browser; comments and version history keep the trail.

> sync my notes and tighten up the launch plan

 glyphdown sync
  launch-plan.md pulled · 12 docs up to date
 glyphdown push launch-plan.md --suggest \
      -m "tighten the launch intro"
  suggestion s_7f3a created

review in the browser — accept or reject each change

everything a doc needs

The Google Docs parts, on plain markdown

Live-preview editor

Obsidian-style live preview on CodeMirror. The document is plain markdown text — formatting renders in place and syntax reveals at your cursor.

Real-time multiplayer

CRDT-backed editing with live cursors and presence. Concurrent edits merge; connection blips buffer and resync.

Comments & mentions

Range-anchored threads with @mentions, reactions, and resolve. Anchors survive edits — orphaned comments are kept, never dropped.

Suggestion mode

Propose changes instead of making them — insertions in green, deletions struck through — then accept or reject each one.

Folders, sharing & roles

Share a doc or a whole folder by invite or link, with view / comment / suggest / edit roles enforced server-side.

Version history

Automatic snapshots plus named versions. Diff any version against the current text and restore it.

get started

Your notes are already markdown.
Give them a doc.

Sign in, glyphdown clone, and your whole workspace is on disk — ready for you and your agents.

Continue with GitHubnpm i -g glyphdown