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
//! Hook utilities for agent tool permission checking and helper functions.
//!
//! This module provides:
//! - `can_use_tool`: The CanUseToolFn type and related types for permission checking
//! - `helpers`: Helper functions for structured output and argument substitution

pub mod can_use_tool;
pub mod helpers;

pub use can_use_tool::*;
pub use helpers::*;