ai-agent-sdk 0.5.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
//! Plugin module - ported from ~/claudecode/openclaudecode/src/types/plugin.ts
//!
//! This module provides the plugin types and infrastructure for the Rust SDK.

pub mod commands;
pub mod loader;
pub mod mcp;
pub mod skills;
pub mod types;

pub use commands::*;
pub use loader::*;
pub use mcp::*;
pub use skills::*;
pub use types::*;