1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//! # clau.rs - Rust SDK for Claude Code
//!
//! A type-safe, async-first Rust SDK for Claude Code that transforms the CLI tool
//! into a powerful programmatic API.
//!
//! ## Quick Start
//!
//! ```rust,no_run
//! use clau::{Client, Config};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), clau::Error> {
//! let client = Client::new(Config::default());
//!
//! let response = client
//! .query("Write a hello world in Rust")
//! .send()
//! .await?;
//!
//! println!("{}", response);
//! Ok(())
//! }
//! ```
// Re-export core types
pub use ;
// Re-export runtime types
pub use ;
// Re-export MCP types when ready
// pub use clau_mcp::{McpConfig, McpServer};
/// Prelude module for convenient imports