Pharo-ACP implements the Agent Client Protocol (ACP) within Pharo so that Pharo tools or agents can communicate using the standardized ACP format (allowing them to interoperate with any editor or client that supports ACP)
Official ACP site: https://agentclientprotocol.com/
To install stable version of Pharo-ACP in your image you can use:
Metacello new
githubUser: 'pharo-llm' project: 'pharo-acp' commitish: 'X.X.X' path: 'src';
baseline: 'LLMPharoACP';
loadFor development version install it with this:
Metacello new
githubUser: 'pharo-llm' project: 'pharo-acp' commitish: 'main' path: 'src';
baseline: 'LLMPharoACP';
load.