claude-code-agent-sdk 0.1.39

Rust SDK for Claude Code CLI with bidirectional streaming, hooks, custom tools, and plugin support
Documentation
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
//! Simple query function for one-shot interactions

use tracing::{debug, info, instrument};

use crate::errors::{ClaudeError, Result};
use crate::internal::client::InternalClient;
use crate::internal::message_parser::MessageParser;
use crate::internal::transport::subprocess::QueryPrompt;
use crate::internal::transport::{SubprocessTransport, Transport};
use crate::types::config::ClaudeAgentOptions;
use crate::types::messages::{Message, UserContentBlock};
use futures::stream::{Stream, StreamExt};
use std::pin::Pin;

/// Validate options for one-shot queries
///
/// One-shot queries don't support bidirectional control protocol features
/// like `can_use_tool` callbacks or hooks. This function validates that
/// incompatible options are not set.
fn validate_oneshot_options(options: &ClaudeAgentOptions) -> Result<()> {
    if options.can_use_tool.is_some() {
        return Err(ClaudeError::InvalidConfig(
            "can_use_tool callback is not supported in one-shot queries. \
            Use ClaudeClient for bidirectional communication with permission callbacks."
                .to_string(),
        ));
    }

    if options.hooks.is_some() {
        return Err(ClaudeError::InvalidConfig(
            "hooks are not supported in one-shot queries. \
            Use ClaudeClient for bidirectional communication with hook support."
                .to_string(),
        ));
    }

    Ok(())
}

/// Query Claude Code for one-shot interactions.
///
/// This function is ideal for simple, stateless queries where you don't need
/// bidirectional communication or conversation management.
///
/// **Note:** This function does not support `can_use_tool` callbacks or hooks.
/// For permission handling or hook support, use [`ClaudeClient`] instead.
///
/// # Errors
///
/// Returns an error if:
/// - `options.can_use_tool` is set (use ClaudeClient instead)
/// - `options.hooks` is set (use ClaudeClient instead)
/// - Claude CLI cannot be found or started
///
/// # Examples
///
/// ```no_run
/// use claude_code_agent_sdk::{query, Message, ContentBlock};
///
/// #[tokio::main]
/// async fn main() -> anyhow::Result<()> {
///     let messages = query("What is 2 + 2?", None).await?;
///
///     for message in messages {
///         match message {
///             Message::Assistant(msg) => {
///                 for block in &msg.message.content {
///                     if let ContentBlock::Text(text) = block {
///                         println!("Claude: {}", text.text);
///                     }
///                 }
///             }
///             _ => {}
///         }
///     }
///
///     Ok(())
/// }
/// ```
#[instrument(
    name = "claude.query",
    skip(prompt, options),
    fields(
        has_options = options.is_some(),
    )
)]
pub async fn query(
    prompt: impl Into<String>,
    options: Option<ClaudeAgentOptions>,
) -> Result<Vec<Message>> {
    let prompt_str = prompt.into();
    let query_prompt = QueryPrompt::Text(prompt_str);
    let opts = options.unwrap_or_default();

    info!("Starting one-shot Claude query");
    validate_oneshot_options(&opts)?;

    let client = InternalClient::new(query_prompt, opts)?;
    let result = client.execute().await?;

    debug!("Query completed, received {} messages", result.len());
    Ok(result)
}

/// Query Claude Code with streaming responses for memory-efficient processing.
///
/// Unlike `query()` which collects all messages in memory before returning,
/// this function returns a stream that yields messages as they arrive from Claude.
/// This is more memory-efficient for large conversations and provides real-time
/// message processing capabilities.
///
/// **Note:** This function does not support `can_use_tool` callbacks or hooks.
/// For permission handling or hook support, use [`ClaudeClient`] instead.
///
/// # Performance Comparison
///
/// - **`query()`**: O(n) memory usage, waits for all messages before returning
/// - **`query_stream()`**: O(1) memory per message, processes messages in real-time
///
/// # Errors
///
/// Returns an error if:
/// - `options.can_use_tool` is set (use ClaudeClient instead)
/// - `options.hooks` is set (use ClaudeClient instead)
/// - Claude CLI cannot be found or started
///
/// # Examples
///
/// ```no_run
/// use claude_code_agent_sdk::{query_stream, Message, ContentBlock};
/// use futures::stream::StreamExt;
///
/// #[tokio::main]
/// async fn main() -> anyhow::Result<()> {
///     let mut stream = query_stream("What is 2 + 2?", None).await?;
///
///     while let Some(result) = stream.next().await {
///         match result? {
///             Message::Assistant(msg) => {
///                 for block in &msg.message.content {
///                     if let ContentBlock::Text(text) = block {
///                         println!("Claude: {}", text.text);
///                     }
///                 }
///             }
///             _ => {}
///         }
///     }
///
///     Ok(())
/// }
/// ```
#[instrument(name = "claude.query_stream", skip(prompt, options))]
pub async fn query_stream(
    prompt: impl Into<String>,
    options: Option<ClaudeAgentOptions>,
) -> Result<Pin<Box<dyn Stream<Item = Result<Message>> + Send>>> {
    let prompt_str = prompt.into();
    let query_prompt = QueryPrompt::Text(prompt_str);
    let opts = options.unwrap_or_default();

    info!("Starting streaming Claude query");
    validate_oneshot_options(&opts)?;

    let mut transport = SubprocessTransport::new(query_prompt, opts)?;
    transport.connect().await?;

    debug!("Stream established");

    // Move transport into the stream to extend its lifetime
    let stream = async_stream::stream! {
        let mut message_stream = transport.read_messages();
        while let Some(json_result) = message_stream.next().await {
            match json_result {
                Ok(json) => {
                    match MessageParser::parse(json) {
                        Ok(message) => yield Ok(message),
                        Err(e) => {
                            yield Err(e);
                            break;
                        }
                    }
                }
                Err(e) => {
                    yield Err(e);
                    break;
                }
            }
        }
    };

    Ok(Box::pin(stream))
}

/// Query Claude Code with structured content blocks (supports images).
///
/// This function allows you to send mixed content including text and images
/// to Claude. Use [`UserContentBlock`] to construct the content array.
///
/// **Note:** This function does not support `can_use_tool` callbacks or hooks.
/// For permission handling or hook support, use [`ClaudeClient`] instead.
///
/// # Errors
///
/// Returns an error if:
/// - The content vector is empty (must include at least one text or image block)
/// - `options.can_use_tool` is set (use ClaudeClient instead)
/// - `options.hooks` is set (use ClaudeClient instead)
/// - Claude CLI cannot be found or started
/// - The query execution fails
///
/// # Examples
///
/// ```no_run
/// use claude_code_agent_sdk::{query_with_content, Message, ContentBlock, UserContentBlock};
///
/// #[tokio::main]
/// async fn main() -> anyhow::Result<()> {
///     // Create content with text and image
///     let content = vec![
///         UserContentBlock::text("What's in this image?"),
///         UserContentBlock::image_url("https://example.com/image.png"),
///     ];
///
///     let messages = query_with_content(content, None).await?;
///
///     for message in messages {
///         if let Message::Assistant(msg) = message {
///             for block in &msg.message.content {
///                 if let ContentBlock::Text(text) = block {
///                     println!("Claude: {}", text.text);
///                 }
///             }
///         }
///     }
///
///     Ok(())
/// }
/// ```
#[instrument(
    name = "claude.query_with_content",
    skip(content, options),
    fields(
        has_options = options.is_some(),
    )
)]
pub async fn query_with_content(
    content: impl Into<Vec<UserContentBlock>>,
    options: Option<ClaudeAgentOptions>,
) -> Result<Vec<Message>> {
    // Validate options first (fail fast - cheaper check)
    let opts = options.unwrap_or_default();
    validate_oneshot_options(&opts)?;

    // Then validate content
    let content_blocks = content.into();
    UserContentBlock::validate_content(&content_blocks)?;

    info!(
        "Starting one-shot Claude query with {} content blocks",
        content_blocks.len()
    );

    let query_prompt = QueryPrompt::Content(content_blocks);
    let client = InternalClient::new(query_prompt, opts)?;
    let result = client.execute().await?;

    debug!(
        "Query with content completed, received {} messages",
        result.len()
    );
    Ok(result)
}

/// Query Claude Code with streaming and structured content blocks.
///
/// Combines the benefits of [`query_stream`] (memory efficiency, real-time processing)
/// with support for structured content blocks including images.
///
/// **Note:** This function does not support `can_use_tool` callbacks or hooks.
/// For permission handling or hook support, use [`ClaudeClient`] instead.
///
/// # Errors
///
/// Returns an error if:
/// - The content vector is empty (must include at least one text or image block)
/// - `options.can_use_tool` is set (use ClaudeClient instead)
/// - `options.hooks` is set (use ClaudeClient instead)
/// - Claude CLI cannot be found or started
/// - The streaming connection fails
///
/// # Examples
///
/// ```no_run
/// use claude_code_agent_sdk::{query_stream_with_content, Message, ContentBlock, UserContentBlock};
/// use futures::stream::StreamExt;
///
/// #[tokio::main]
/// async fn main() -> anyhow::Result<()> {
///     // Create content with base64 image
///     let content = vec![
///         UserContentBlock::image_base64("image/png", "iVBORw0KGgo...")?,
///         UserContentBlock::text("Describe this diagram in detail"),
///     ];
///
///     let mut stream = query_stream_with_content(content, None).await?;
///
///     while let Some(result) = stream.next().await {
///         match result? {
///             Message::Assistant(msg) => {
///                 for block in &msg.message.content {
///                     if let ContentBlock::Text(text) = block {
///                         println!("Claude: {}", text.text);
///                     }
///                 }
///             }
///             _ => {}
///         }
///     }
///
///     Ok(())
/// }
/// ```
#[instrument(name = "claude.query_stream_with_content", skip(content, options))]
pub async fn query_stream_with_content(
    content: impl Into<Vec<UserContentBlock>>,
    options: Option<ClaudeAgentOptions>,
) -> Result<Pin<Box<dyn Stream<Item = Result<Message>> + Send>>> {
    // Validate options first (fail fast - cheaper check)
    let opts = options.unwrap_or_default();
    validate_oneshot_options(&opts)?;

    // Then validate content
    let content_blocks = content.into();
    UserContentBlock::validate_content(&content_blocks)?;

    info!(
        "Starting streaming Claude query with {} content blocks",
        content_blocks.len()
    );

    let query_prompt = QueryPrompt::Content(content_blocks);
    let mut transport = SubprocessTransport::new(query_prompt, opts)?;
    transport.connect().await?;

    debug!("Content stream established");

    let stream = async_stream::stream! {
        let mut message_stream = transport.read_messages();
        while let Some(json_result) = message_stream.next().await {
            match json_result {
                Ok(json) => {
                    match MessageParser::parse(json) {
                        Ok(message) => yield Ok(message),
                        Err(e) => {
                            yield Err(e);
                            break;
                        }
                    }
                }
                Err(e) => {
                    yield Err(e);
                    break;
                }
            }
        }
    };

    Ok(Box::pin(stream))
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::types::hooks::{HookContext, HookInput, HookJsonOutput, Hooks, SyncHookJsonOutput};
    use crate::types::permissions::{PermissionResult, PermissionResultAllow};
    use std::sync::Arc;

    #[test]
    fn test_validate_oneshot_options_accepts_default() {
        let opts = ClaudeAgentOptions::default();
        assert!(validate_oneshot_options(&opts).is_ok());
    }

    #[test]
    fn test_validate_oneshot_options_accepts_normal_options() {
        let opts = ClaudeAgentOptions::builder()
            .model("claude-sonnet-4-20250514")
            .cwd("/tmp")
            .build();
        assert!(validate_oneshot_options(&opts).is_ok());
    }

    #[test]
    fn test_validate_oneshot_options_rejects_can_use_tool() {
        let callback: crate::types::permissions::CanUseToolCallback =
            Arc::new(|_tool_name, _tool_input, _context| {
                Box::pin(async move { PermissionResult::Allow(PermissionResultAllow::default()) })
            });

        let opts = ClaudeAgentOptions::builder().can_use_tool(callback).build();

        let result = validate_oneshot_options(&opts);
        assert!(result.is_err());

        let err = result.unwrap_err();
        assert!(matches!(err, ClaudeError::InvalidConfig(_)));
        assert!(err.to_string().contains("can_use_tool"));
    }

    #[test]
    fn test_validate_oneshot_options_rejects_hooks() {
        async fn test_hook(
            _input: HookInput,
            _tool_use_id: Option<String>,
            _context: HookContext,
        ) -> HookJsonOutput {
            HookJsonOutput::Sync(SyncHookJsonOutput::default())
        }

        let mut hooks = Hooks::new();
        hooks.add_stop(test_hook);
        let hooks_map = hooks.build();

        let opts = ClaudeAgentOptions::builder().hooks(hooks_map).build();

        let result = validate_oneshot_options(&opts);
        assert!(result.is_err());

        let err = result.unwrap_err();
        assert!(matches!(err, ClaudeError::InvalidConfig(_)));
        assert!(err.to_string().contains("hooks"));
    }

    #[test]
    fn test_validate_oneshot_options_rejects_both() {
        let callback: crate::types::permissions::CanUseToolCallback =
            Arc::new(|_tool_name, _tool_input, _context| {
                Box::pin(async move { PermissionResult::Allow(PermissionResultAllow::default()) })
            });

        async fn test_hook(
            _input: HookInput,
            _tool_use_id: Option<String>,
            _context: HookContext,
        ) -> HookJsonOutput {
            HookJsonOutput::Sync(SyncHookJsonOutput::default())
        }

        let mut hooks = Hooks::new();
        hooks.add_stop(test_hook);
        let hooks_map = hooks.build();

        let opts = ClaudeAgentOptions::builder()
            .can_use_tool(callback)
            .hooks(hooks_map)
            .build();

        // Should fail on first check (can_use_tool)
        let result = validate_oneshot_options(&opts);
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("can_use_tool"));
    }
}