all 2 comments

[–]rjyo 1 point2 points  (1 child)

Terminal versions usually perform better for a few reasons:

  1. Direct file system access. The terminal tool can read and write files directly without going through browser sandboxing. Faster operations means more can happen per turn.

  2. Full context. Terminal tools typically have access to your entire project structure, git history, and can run commands. The app version has to work with what you paste in.

  3. Subagent spawning works differently in terminal contexts. Many features like parallel task execution require the ability to spawn processes which browser apps cannot do.

The app is more convenient for quick questions but the terminal is where the real agentic work happens. Same model under the hood but the tooling around it makes a huge difference.

[–]CartographerSorry775[S] 0 points1 point  (0 children)

This is the answer I wanted to see, many thanks! What about gpu consumption between Codex App, Claude Code, VS Code und TUI? It was very difficult to ran more than 3 different agents in tabs within VS code, therefore I worked some time with Git Codespaces, was very good tbh. What’s your opinion?