Earlier quoted context omitted.
I've spent more than 40 hours/week and close to $1,000 in API credits using these tools. For me the ranking goes. But, we all will have difference experiences. 1. Claude Code 2. Cursor 3. Cline. 4. Windsurf
How you can place windsuf in number 4 is interesting, especially given it's very similar to cursor but is leaner on the UI and Cline is a vs-code plugin that very verbose. I'll stick with Windsurf, especially given their upcoming announcement.
OpenAI Codex CLI: Lightweight coding agent that runs in your terminal
271–280 of 298 posts
Re: OpenAI Codex CLI: Lightweight coding agent that runs in your terminal
#272Re: OpenAI Codex CLI: Lightweight coding agent that runs in your terminal
#273https://github.com/openai/codex/blob/main/codex-cli/src/comp... Hey comment this thing in! const thinkingTexts = ["Thinking"]; /* [ "Consulting the rubber duck", "Maximizing paperclips", "Reticulating splines", "Immanentizing the Eschaton", "Thinking", "Thinking about thinking", "Spinning in circles", "Counting dust specks", "Updating priors", "Feeding the utility monster", "Taking off", "Wireheading", "Counting to i…
Uhh… why is React in a terminal tool?
Re: OpenAI Codex CLI: Lightweight coding agent that runs in your terminal
#274Earlier quoted context omitted.
too expensive. I cant understand why everyone is into claude code vs using claude in cursor or windsurf.
Anecdotally, Claude code performs much better than Claude within Cursor. Not sure if it’s a system prompt thing or if I’ve just convinced myself of it because the aesthetic is so much better, but either way the end result feels better to me.
Re: OpenAI Codex CLI: Lightweight coding agent that runs in your terminal
#275Next, set your OpenAI API key as an environment variable: export OPENAI_API_KEY="your-api-key-here" Note: This command sets the key only for your current terminal session. To make it permanent, add the export line to your shell's configuration file (e.g., ~/.zshrc). Can't any 3rd party utility running in the same shell session phone home with the API key? I'd ideally want only codex to be able to access this var
You could create a shell function - e.g. `codex() { OPENAI="xyz" codex "$@" }'. To call the original command use `command codex ...`. People downvoting legitimate questions on HN should be ashamed of themselves.
Re: OpenAI Codex CLI: Lightweight coding agent that runs in your terminal
#276Earlier quoted context omitted.
No, Amazon Q is using Amazon Q. You can't change the model, it's calling itself "Q" and it's capped to $20 (Q Developer Pro plan). There is also a free tier available - https://aws.amazon.com/q/developer/ It's very much a "Claude Code" in the sense that you have a "q chat" command line command that can do everything from changing files, running shell commands, reading and researching, etc. So I can say "q chat" and t…
> the entire appeal of Claude Code is that it does everything itself, like figuring out what files to read/change how is this appealing? I think I must be getting old because the idea of letting a language model run wild and run commands on my system -- that's unsanitized input! --horrifies me! What do you mean just let it change random files?? I'm going to have to learn a new trade, IDK
Re: OpenAI Codex CLI: Lightweight coding agent that runs in your terminal
#277Earlier quoted context omitted.
"gemini 2.5 pro exp" is superior to Claude Sonnet 3.7 when I use it with Aider [1]. And it is free (with some high limit). [1] https://aider.chat/
Compared to cline aider had no chance, the last time I tried it (4 month ago). Has it really changed? Always thought cline is superior because it focuses on sonnet with all its bells an whistles. While aider tries to be an universal ide coding agent which works well with all models. When I try gemmini 2.5 pro exp with cline it does very well but often fails to use the tools provided by cline which makes it way less e…
Re: OpenAI Codex CLI: Lightweight coding agent that runs in your terminal
#278So, OpenAI’s Codex CLI is Claude Code, but worse? Cursor-Agent-Tools > Claude Code > Codex CLI https://pypi.org/project/cursor-agent-tools/
This tool has nothing to do with Cursor. Very misleading to use popular brand like that, possible scam.
Cursor Agent Tools is a Python-based AI agent that replicates Cursor's coding assistant capabilities, enabling function calling, code generation, and intelligent coding assistance with Claude, OpenAI, and locally hosted Ollama models.
Re: OpenAI Codex CLI: Lightweight coding agent that runs in your terminal
#279Not sure why they used React for a CLI. The code in the repo feels like it was written by an LLM—too many inline comments. Interestingly, their agent's system prompt mentions removing inline comments https://github.com/openai/codex/blob/main/codex-cli/src/util... . > - Remove all inline comments you added as much as possible, even if they look normal. Check using \`git diff\`. Inline comments must be generally avoide…