Acp Go Sdk
Description
Go SDK for the Agent Client Protocol (ACP), offering typed requests, responses, and helpers so Go applications can build ACP-compliant agents, clients, and integrations
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
ACP Go SDK
Go library for the Agent Client Protocol (ACP) - a standardized communication protocol between code editors and AI‑powered coding agents.
Learn more about the protocol itself at .
Installation
go get github.com/coder/acp-go-sdk@v0.13.5
Get Started
Understand the Protocol
Start by reading the [official ACP documentation](https://agentclientprotocol.com) to understand the core concepts and protocol specification.
Try the Examples
The [examples directory](https://github.com/coder/acp-go-sdk/tree/main/example) contains simple implementations of both Agents and Clients in Go. You can run them from your terminal or connect to external ACP agents.
go run ./example/agentstarts a minimal ACP agent over stdio.go run ./example/claude-codedemonstrates bridging to Claude Code.go run ./example/clientconnects to a running agent and streams a sample turn.go run ./example/geminibridges to the Gemini CLI in ACP mode (flags: -model, -sandbox, -debug, -gemini /path/to/gemini).
You can watch the interaction by running `go run ./example/client` locally.
Explore the API
Browse the Go package docs on pkg.go.dev for detailed API documentation:
If you're building an [Agent](https://agentclientprotocol.com/protocol/overview#agent):
- Implement the
acp.Agentinterface (and optionallyacp.AgentLoaderforsession/load). - Create a connection with
acp.NewAgentSideConnection(agent, os.Stdout, os.Stdin). - Send updates and make client requests using the returned connection.
If you're building a [Client](https://agentclientprotocol.com/protocol/overview#client):
- Implement the
acp.Clientinterface
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11