Agent Client Protocol (ACP)
31–40 of 104 posts
Re: Agent Client Protocol (ACP)
#32Earlier quoted context omitted.
> Nowadays, it is better to write prompts Very big doubt . AI can help for a few very specific tasks, but the hallucinations still happen, and making things up (especially APIs) is unacceptable.
Hard disagree. LLMs are now incredibly good for any coding task (with popular languages).
And don't respond with a childish "skill issue lol" like it's Twitter. What specific skill do you think people are lacking?
Re: Agent Client Protocol (ACP)
#33Earlier quoted context omitted.
In languages with strong compile-time checks (like say rust) the obvious problems can mostly be solved by having the agent try to compile the program as a last step, and most agents now do that on their own. In cases where that doesn't work (more permissive languages like python, or http APIs) you can have the AI write tests and execute them. Or ask the AI to prototype and test features separately before adding them…
> the obvious problems can mostly be solved by having the agent try to compile the program The famous "It compiles on my machine." Is that where engineering is going? Spending $billions to get the same result as the laziest developer ever?
That obviously does not mean that it's good software. That's why the rest of my comment exists. But "AI is hallucinating libraries/APIs" is something that can be trivially solved with good software practices from the 00s, and that the AI can resolve by itself using those techniques. It's annoying for autocomplete AI, but for agents it's a non-issue
Re: Agent Client Protocol (ACP)
#34I would love it, but please don't add JSON-RPC to the world... It's too heavy for editor.
Re: Agent Client Protocol (ACP)
#35Re: Agent Client Protocol (ACP)
#36I would love it, but please don't add JSON-RPC to the world... It's too heavy for editor.
Are people who assert that JSON-RPC is "heavy" writing code we all rely on?
Re: Agent Client Protocol (ACP)
#37Claude, come up with a protocol for communicating between AI agents and IDEs/editors. Create node, python and rust libraries. Create a website with a landing page
Re: Agent Client Protocol (ACP)
#38I'm fine with treating AI like a human developer: I ask AI to write a feature (or fix a bug, or do a refactoring) and then I read the commit. If the commit is not to my liking, I "git reset --hard", improve my prompt and ask the AI to do the task again. I call this "prompt coding": https://www.gibney.org/prompt_coding This way, there is no interaction between my coding environment and the AI at all. Just like working…
Most of the time I don't bother reprompting it either. If it doesn't understand the first time then I'm better off making the change myself, rather than sink time into a cycle of reprompting and rejection.
On the other hand, if it understands what I want the first time I have more confidence that it's on the same wavelength as me.
Re: Agent Client Protocol (ACP)
#39With already https://agentcommunicationprotocol.dev (ACP) same name seems confusing now. even though differences are there in both.
https://lfaidata.foundation/communityblog/2025/08/29/acp-joi...
Re: Agent Client Protocol (ACP)
#40The protocol for interacting with code is files and text. You need to define an interface for Ai to click buttons? Or to create keyboard macros that simulate clicking buttons? We are all doomed!
It's like the Jupyter protocol, from which people do derive utility.