zeph-acp 0.12.1

ACP (Agent Client Protocol) server for IDE embedding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0

#[derive(Debug, thiserror::Error)]
pub enum AcpError {
    #[error("transport error: {0}")]
    Transport(String),

    #[error("IDE returned error: {0}")]
    ClientError(String),

    #[error("capability not available: {0}")]
    CapabilityUnavailable(String),

    #[error("channel closed")]
    ChannelClosed,
}