github-copilot-sdk 0.1.0

Rust SDK for programmatic control of the GitHub Copilot CLI via JSON-RPC. Technical preview, pre-1.0.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Auto-generated protocol types — do not edit manually.
//!
//! Generated from the Copilot protocol JSON Schemas by `scripts/codegen/rust.ts`.
#![allow(missing_docs)]
#![allow(rustdoc::bare_urls)]

pub mod api_types;
pub mod rpc;
pub mod session_events;

// Re-export session event types at the module root — no conflicts with
// hand-written types. API types are kept namespaced under `api_types::`
// because some names (Tool, ModelCapabilities, etc.) overlap with the
// hand-written SDK API types in `types.rs`.
pub use session_events::*;