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 (.g) is graph notation that's short enough to write by hand and simple enough for AI to learn from a single prompt. Paste it, render it, export SVG or PNG.
The same diagram in three formats. Count the tokens.
>LR a:c Hungry b:d "Cook?" c:r Eat a>b b>c yes
graph LR
a([Hungry]) --> b{Cook?}
b -->|yes| c[Eat] digraph {
rankdir=LR
a [label="Hungry" shape=ellipse]
b [label="Cook?" shape=diamond]
c [label="Eat" 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.