claude-agent-sdk-rust 1.0.0

Rust SDK for Claude Agent - Build production-ready AI agents with Claude
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Plugin configuration types.

use serde::{Deserialize, Serialize};

/// SDK plugin configuration.
///
/// Currently only local plugins are supported via the "local" type.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct SdkPluginConfig {
    /// Plugin type (currently only "local").
    #[serde(rename = "type")]
    pub plugin_type: String,
    /// Path to the plugin directory.
    pub path: String,
}