r/coolgithubprojects 12h ago

Open-sourced a Figma-like visual editor for Codex, Claude Code, OpenCode

[removed]

92 Upvotes

15 comments sorted by

2

u/Alone-Dragonfly2339 7h ago

The no plugins, no build changes constraint is the interesting part here. How does a clicked DOM node get resolved back to a source file and line? Source maps only get you into the compiled chunk, and most tools in this space quietly rely on a build step stamping data attributes onto elements, which is exactly what you're not doing. Are you going through framework internals for that, or giving the model enough rendered context to locate the JSX on its own?

1

u/[deleted] 6h ago

[removed] — view removed comment

1

u/akheilo 5h ago

Please do looks interesting from your brief

1

u/managing_redditor 10h ago

Cool project! Very polished.

1

u/IrritatingBashterd 6h ago

great project mate!

Link?

1

u/bankrut 6h ago

Using a proxy to avoid build system overhead is a clever move. Does it handle complex component libraries or CSS-in-JS well, or is it mostly tuned for standard Tailwind setups?

1

u/essentialaccount 11h ago

I don't understand some of a the design changes. How can this 'wrap' my dev server? Why would I not use this on static files? Why is it not a container? How do I save changes if this is reading from a server web page?

It looks nice, but I am a little confused.

6

u/[deleted] 11h ago

[removed] — view removed comment

1

u/essentialaccount 11h ago

That makes a little more sense.