agent-sdk-toolkit 0.1.0-alpha.3

Optional tool-pack helpers layered over agent-sdk-core primitive contracts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Toolkit pack assembly helpers. Use these modules to turn toolkit operations into
//! core package capabilities, sidecars, and routes. Pack assembly is data-only and
//! does not execute tools or mutate a runtime package until explicitly installed.
//!
mod bundle;
mod ergonomic;
mod snapshot;

pub use bundle::ToolkitPackBundle;
pub use ergonomic::{AsyncTool, Tool, ToolBuilder, ToolPackBuilder, ToolkitToolExecutionMode};
pub use snapshot::tool_snapshot;