ACP protocol inside Pharo
# Pharo-ACP [](https://github.com/pharo-llm/pharo-acp) [](https://github.com/pharo-llm/pharo-acp/blob/master/LICENSE) [](https://github.com/pharo-llm/pharo-acp/pulls) [](https://github.com/pharo-llm/pharo-acp) [](https://github.com/pharo-llm/pharo-acp/actions/workflows/CI.yml) 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/](https://agentclientprotocol.com/) To install stable version of `Pharo-ACP` in your image you can use: ```smalltalk Metacello new githubUser: 'pharo-llm' project: 'pharo-acp' commitish: 'X.X.X' path: 'src'; baseline: 'LLMPharoACP'; load ``` For development version install it with this: ```smalltalk Metacello new githubUser: 'pharo-llm' project: 'pharo-acp' commitish: 'main' path: 'src'; baseline: 'LLMPharoACP'; load. ```