Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions COMMANDS_EXAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,22 +74,22 @@ export CLOUD_ML_REGION=<google-location>

```shell
acp \
--agent claude \
--agent claude-acp \
--provider vertex-ai \
--model claude-opus-4-6 \
--prompt "Say Hello"
```
or use the default model: `claude-opus-4-6` using the provider `vertex-ai`
```shell
acp \
--agent claude \
--agent claude-acp \
--provider vertex-ai \
--prompt "Read the skills/dummy/SKILL.md instructions and say hello at the root of the project."
```

```shell
acp \
--agent claude \
--agent claude-acp \
--provider vertex-ai \
--prompt "Execute the **java-project-discovery** skill. Inspect the workspace root directory, determine the build setup, target Java version, and framework configurations, and return the structured JSON output."
```
Expand Down
9 changes: 7 additions & 2 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.aesh</groupId>
<artifactId>aesh-bom</artifactId>
<version>${aesh.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.quarkus.platform</groupId>
<artifactId>quarkus-bom</artifactId>
Expand All @@ -41,12 +48,10 @@
<dependency>
<groupId>org.aesh</groupId>
<artifactId>aesh</artifactId>
<version>${aesh.version}</version>
</dependency>
<dependency>
<groupId>org.aesh</groupId>
<artifactId>aesh-processor</artifactId>
<version>${aesh.version}</version>
<scope>provided</scope>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions client/src/main/java/io/quarkiverse/acp/AcpCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
import io.quarkiverse.agentclientprotocol.sdk.client.transport.AgentParameters;
import io.quarkiverse.agentclientprotocol.sdk.client.transport.StdioAcpClientTransport;
import io.quarkiverse.agentclientprotocol.sdk.spec.schema.v1.*;
import org.aesh.command.CommandDefinition;
import org.jboss.logging.Logger;

import org.aesh.command.Command;
import org.aesh.command.CommandResult;
import org.aesh.command.GroupCommandDefinition;
import org.aesh.command.invocation.CommandInvocation;
import org.aesh.command.option.Option;

Expand Down Expand Up @@ -43,7 +43,7 @@
* acp --agent-binary my-agent --agent-args "serve" --prompt "Say hello"
* }</pre>
*/
@GroupCommandDefinition(
@CommandDefinition(
name = "acp",
description = "acp tool for any acp compatible agent (OpenCode, Claude, Pi, Gemini, etc.)",
generateHelp = true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package io.quarkiverse.acp.registry;

import org.aesh.command.Command;
import org.aesh.command.CommandDefinition;
import org.aesh.command.CommandResult;
import org.aesh.command.GroupCommandDefinition;
import org.aesh.command.invocation.CommandInvocation;

/**
Expand All @@ -16,7 +16,7 @@
* acp reg remove opencode # remove an installed agent
* }</pre>
*/
@GroupCommandDefinition(
@CommandDefinition(
name = "reg",
description = "Manage ACP agents via the registry (list, install, remove)",
groupCommands = {ListAgentsCommand.class, InstallCommand.class, RemoveCommand.class}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<aesh.version>3.11</aesh.version>
<aesh.version>3.16.3</aesh.version>
<acp-core.version>0.11.0</acp-core.version>
<jackson-databind.version>2.18.2</jackson-databind.version>
<jboss-logmanager.version>3.2.2.Final</jboss-logmanager.version>
<quarkus.platform.version>3.37.1</quarkus.platform.version>
<slf4j-jboss-logmanager.version>2.1.0.Final</slf4j-jboss-logmanager.version>
<slf4j.version>2.0.9</slf4j.version>

<exec-maven-plugin.version>3.6.3</exec-maven-plugin.version>
<quarkus.platform.version>3.35.3</quarkus.platform.version>
</properties>

<dependencyManagement>
Expand Down