supercode-opencode-frontend 0.2.1

Version-pinned stock OpenCode HTTP compatibility adapter for Supercode SDK runtimes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Stock OpenCode frontend adapters over the canonical Supercode SDK runtime.
//!
//! This removable crate projects one already-running SDK runtime into the
//! exact HTTP vocabulary consumed by pinned OpenCode. It never owns an agent,
//! model loop, OpenCode database, source-harness store, or canonical session.

pub mod opencode_http_v1_2_15;
pub mod server;

pub use opencode_http_v1_2_15::{
    AdapterError, OpenCodeAdapter, OpenCodeEventProjection, OpenCodeRequest, OpenCodeResponse,
    ResponseBody, HISTORY_LIMIT, OPENCODE_CLI_VERSION, PROTOCOL_NAMESPACE,
};
pub use server::{
    CredentialError, OpenCodeClientCredential, OpenCodeEndpoint, OpenCodeEndpointHealth,
    OpenCodeServerHandle,
};