← Back to home

AI Draws Complex Flows—One Sentence to an Editable Web Flowchart

Long-Form Video · EP0042 June 16, 2026 3:07
What this episode covers

When you're pitching a plan to a client or walking a colleague through one, you keep hitting complicated steps and processes that no amount of talking makes clear. That is exactly when a flowchart saves you.

This episode I'm sharing a skill I use constantly, "flowmaker": describe a flow in one sentence and it generates an editable web flowchart—start point, end point, and decision branches all following standard conventions, with nodes you can drag, text you can edit on double-click, edges you can rewire, and details you can expand. One click exports a PNG you can send to anyone. The key part: it's a single HTML file with zero backend. Double-click and it opens.

Companion files · Drop them into Claude Code

When you’re pitching a plan to a client or walking a colleague through one, you keep hitting complicated steps and processes that no amount of talking makes clear. That’s exactly when a flowchart saves you.

This episode I’m sharing a skill I use constantly—flowmaker, now open source (MIT): github.com/xntj-ai/flowmaker. What it does is simple and genuinely useful: describe a flow in one sentence, and it draws you an editable web flowchart.

One sentence, one flowchart

Once the skill is installed, you just tell Claude Code “I want a web flowchart, use flowmaker for it,” and then tell it what to draw.

Take the World Cup, which is on right now—how many people can really explain the format? How the group stage works, how the 32 teams that advance get decided. Anything like that—a pain to describe, obvious the second you draw it—just hand it over. What comes out follows all the standard flowchart conventions: there’s a start point, there’s an end point, and every step in between is laid out clearly.

Draggable, editable, exportable—not a dead image

This is where it differs most from other tools: the chart is alive.

  • Every node drags; you place them where you want.
  • You can draw edges between nodes directly; single- or double-click a node to edit what’s inside it. Every bit of text is editable.
  • The labels on the connecting lines are editable too, and you can drop in a new node whenever you want.
  • When you’re done, one click exports a PNG you can send straight to someone.

Nodes expand into details

Another example: some friends don’t know how to install Claude Code, so I can just say—use flowmaker to generate a beginner’s walkthrough for “how a user in mainland China installs Claude Code and connects it to a domestic third-party LLM API.”

Once it’s built you’ll notice every node carries a small marker you can click. Click it and the node expands. Take the “install Node.js” step: which site to go to (the link opens directly), which version to download, what command to run on each operating system. Every link in the chain is worked out in detail. It’s a genuinely beginner-friendly version of the instructions.

Plenty of tools make flowcharts, but almost none do all of this

This is the part most worth saying. There are tons of flowchart tools, but almost none manage all of the following at once:

  1. A single web file, zero backend: send it to someone, they double-click, and they’re using it and editing it—nothing to install, no server needed. (One heads-up: refresh the page and the chart is gone, so always export the image when you finish editing.)
  2. Editable right in the browser: node types, shapes, colors, every bit of text on the connecting lines—everything you see is editable.
  3. One-click PNG export for sharing.

The full technical write-up lives in the skill’s docs on GitHub, broken down step by step. Take a look if you’re interested.

How to use it

It’s simple: hand the Git URL to Claude Code and have it clone the skill into your skills directory.

You can also edit the “data island” in the template directly—the page itself is a flowchart editor, so you can even build a chart from scratch.

That said, going through the skill is the easiest route by far: let the model do the research, then have it draw the flow and the steps it found straight into a chart like this. Ridiculously handy.

There are plenty of flowchart tools, but almost none that are a single file, zero backend, and still draggable and editable right in the browser.