ai-agent 0.88.0

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! LSP (Language Server Protocol) service module

pub mod lsp_client;
pub mod types;

// Config module stub
mod config;

// Additional stubs
mod lsp_diagnostic_registry;
mod lsp_server_instance;
mod lsp_server_manager;
mod manager;
mod passive_feedback;

pub use lsp_client::*;
pub use types::*;