logoalt Hacker News

unsubtlecodertoday at 2:13 PM2 repliesview on HN

Interesting, one challenge with other ADEs (nice term btw) like Conductor is that code navigation is terrible and too much emphasis is on a GUI for Claude.

We really need the best of both worlds: IDE (powerful like Intellij) + ADE (multitasking code)

And how does it compare to other tools like Conductor?


Replies

luca-ctxtoday at 2:36 PM

Yes, our view is that the ADE shouldn’t be where you do most code navigation.

The ADE is best for steering multiple agents and reviewing their changes, especially once you care about isolated worktrees, diffs, artifacts, and landing changes cleanly.

When you need deep code navigation, the best answer is usually to open the worktree in your IDE. IDEs are already world-class at navigation and refactoring, so there’s no reason to rebuild that badly inside an agent UI.

Compared with Conductor, a few differences:

- Conductor relies mostly on the safety model of the underlying harnesses; ctx can run work in VM/container-isolated environments with explicit network policy.

- ctx has a local merge queue for landing changes from multiple agent worktrees onto each other.

- Conductor is a local Mac app; ctx also works with Linux and is designed for the “local app + remote Linux runtime” model for devapp/VPS.

- Conductor is focused mainly on Claude Code and Codex; ctx is meant to be a broader environment around multiple harnesses.

There are also substantial UX differences, but those are easier to judge by trying them.

Bnjorogetoday at 2:41 PM

Agree with this. I find myself switching panes between conductor or codex and zed because of code navigation. Maybe that's what cursor is trying to do in their new version, but I havent tried it yet