turboclaudeagent 0.3.0

Interactive Agent SDK for TurboClaude - Use Claude agents in your Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Agent definitions

/// Agent definition for specialized agent personas
pub struct AgentDefinition {
    /// Agent name
    pub name: String,
}

impl AgentDefinition {
    /// Create a new agent
    pub fn new(name: impl Into<String>) -> Self {
        Self { name: name.into() }
    }
}