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
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.
The same flowchart in three formats. Count the tokens.
>LR a:c Start b:d Check? c:r Done a>b b>c yes
graph LR
a([Start]) --> b{Check?}
b -->|yes| c[Done] 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.
Open the editor for the fastest path, use the CLI in scripts, or install the packages in your app.
Built for people arriving from ChatGPT, Claude, Mermaid, or DOT. Paste, render, tweak, then export SVG or PNG.
Open editorUse 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 pngglypho from mermaid flow.mmdglypho info diagram.gAdd 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.