upvote
"when there are far quicker and efficient ways of scanning through changes and organizing code with better ergonomics?"

Like what?

reply
Standard CLI version control tools like git diff, git log, or any built-in IDE diff viewer. Scrolling through a text summary of changes is inherently faster and more ergonomic than generating a 3D spatial visualization and watching an agent physically navigate through it.
reply
(Though I disagree, not sure why this comment was flagged? vouched for it)

If you have a big codebase, text diff is not faster to see what was done here and there, then a visual overview. I don't know about this project, but experimented with other tools of this kind and am building one myself. With text diff - you have to parse lots of text and you cannot see on one glance that, oh, these changes are in the rendering, this is DB - and here was done something with the server connection. If done right, I can immediately or very quickly see what was changed - and also decide if the agent (or human) did work in the right spots or gone off track. Now doing this right is not easy, but reading lot's of text is definitely slower then seeing, oh in this area there was a change.

reply
Counterpoint: it's not

I absolutely hate using diff view except when I'm debugging. Reading (or even skimming) 2 text files at once demands a lot of concentration. Now following activity in visual displays like these also takes concentration, and the process can certainly be refined further, but they can help you get a quick overview of what's going on in the same way as a profiling graph.

reply