ai-agent 0.13.4

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Session discovery for assistant sessions
// Translated from TypeScript: src/assistant/sessionDiscovery.ts

/// Discover assistant sessions from remote API.
/// Currently returns an empty vector as the API is not yet implemented.
pub async fn discover_assistant_sessions() -> Vec<serde_json::Value> {
    // TODO: Implement actual session discovery API call
    // The TypeScript version also returns an empty array:
    // export async function discoverAssistantSessions() {
    //   return []
    // }
    Vec::new()
}