unified-agent-api-claude-code 0.3.5

Async wrapper around the Claude Code CLI for non-interactive prompting
Documentation
1
2
3
4
5
6
7
use claude_code::ClaudeUpdateRequest;

#[test]
fn update_argv() {
    let argv = ClaudeUpdateRequest::new().into_command().argv();
    assert_eq!(argv, ["update"]);
}