Shorter syntax. Fewer tokens.
Fewer LLM mistakes.

Glypho is a graph notation format built for how we create diagrams now — with AI. The same diagram in a fraction of the tokens, with syntax LLMs get right on the first try.

Paste Glypho, Mermaid, or DOT. Render immediately. Export SVG or PNG.

StartRoutePath APath BProcessEndyesno

Try it — edit the code

StartDecisionDo the thingSkip itDoneyesno

Same diagram, different cost

The same flowchart in three formats. Count the tokens.

Glypho 17 tokens
>LR
a:c Start
b:d Check?
c:r Done
a>b
b>c yes
Mermaid 28 tokens
graph LR
  a([Start]) --> b{Check?}
  b -->|yes| c[Done]
DOT 52 tokens
digraph {
  rankdir=LR
  a [label="Start" shape=ellipse]
  b [label="Check?" shape=diamond]
  c [label="Done" shape=box]
  a -> b
  b -> c [label="yes"]
}

Token counts are approximate (cl100k_base). See the editor for exact counts on your own diagrams.

Use Glypho your way

Open the editor for the fastest path, use the CLI in scripts, or install the packages in your app.

Fastest path Editor

Paste code. Export diagrams.

Built for people arriving from ChatGPT, Claude, Mermaid, or DOT. Paste, render, tweak, then export SVG or PNG.

Open editor
  • Paste Glypho, Mermaid, or DOT
  • See the diagram update live
  • Export SVG or PNG
Automation CLI

Render, convert, inspect.

Use the CLI in build scripts, content pipelines, or terminals where you want SVG and PNG output without opening the editor.

npm install -g @glypho/cli
glypho render diagram.g -f png
glypho from mermaid flow.mmd
glypho info diagram.g
View CLI package
Integration Packages

Parse and render in code.

Add the parser and renderer when you want custom workflows in Node.js, the browser, or React.

npm install @glypho/parser @glypho/renderer

Parse .g, convert formats, render SVG strings, or mount the React component.