Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 736 Bytes

File metadata and controls

27 lines (20 loc) · 736 Bytes
title Kotlin
description Kotlin library for the Agent Client Protocol

The kotlin-sdk provides implementations of both sides of the Agent Client Protocol that you can use to build your own agent server or client.

It currently supports JVM, other targets are in progress.

To get started, add the repository to your build file:

repositories {
    mavenCentral()
}

Add the dependency:

dependencies {
    implementation("com.agentclientprotocol:acp:0.1.0-SNAPSHOT")
}

The sample demonstrates how to implement both sides of the protocol.