uira-orchestration 0.1.1

Agent definitions, SDK, tool registry, and hook implementations for Uira
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! LSP client infrastructure for Uira.
//!
//! This module provides a real LSP client implementation that can communicate
//! with language servers. Tool definitions are provided by uira-mcp-server.

pub mod client;
pub mod servers;
pub mod utils;

pub use client::{LspClient, LspClientImpl};
pub use servers::{get_server_config, known_servers, LspServerConfig};