zlacker

[return to "The Codex App"]
1. hmokig+MJ[view] [source] 2026-02-02 21:32:30
>>meetpa+(OP)
I'm still waiting for the big pivotal moment in this space, I think there is a lot of potential with rethinking an IDE to be Agent first, and lots of what is out there is still lacking. (It's like we all don't know what we don't know, so we are just recycling UX around trying to solve it)

I keep coming back to my basic terminal with tmux running multiple sessions. I recently though forked this https://github.com/tiann/hapi and been loving using tailscale to expose my setup on my mobile device for convenience (plus the voice input there)

◧◩
2. hollow+CM[view] [source] 2026-02-02 21:44:37
>>hmokig+MJ
There is little to no integration between deterministic IDE features(like refactorings) and LLMs. For example I don't want a statistical tool to rename a method by predicting tokens, I want it to use IDE features and not via another higher abstraction protocol like mpc, I want deeper integration. Sometimes I look at comments in code and think "why can't I have an agent checking if the content of a comment actually reflect the code below?" I feel like we're light years away from a killer integration
◧◩◪
3. hdjrud+4S[view] [source] 2026-02-02 22:04:51
>>hollow+CM
This might actually be another area language servers shine. As I understand it, the TS Language Server can do renames. Ergo, we ought to be able to have the LLM ask the lang server to do the rename instead of trying to do it itself. That'd be easier than trying to integrate with each IDE individually. (Whereby "IDE" seems to be synonymous with "VSCode" lately...)
◧◩◪◨
4. hollow+S01[view] [source] 2026-02-02 22:35:47
>>hdjrud+4S
Agree, another improvement i'd like along the lines or renames is lsp suggestions for method names, enums, functions, etc The llm should be able to autocomplete given lsp available symbols, this way it would avoid far less hallucinated methods
◧◩◪◨⬒
5. hmokig+w31[view] [source] 2026-02-02 22:45:26
>>hollow+S01
Claude, at least, already supports LSP servers though. https://code.claude.com/docs/en/plugins-reference#lsp-server...
[go to top]