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
12
//! Toolkit-specific deterministic test helpers. Use these fakes for content stores,
//! argument stores, and scripted protocol harnesses without live editors, MCP
//! servers, or product hosts. Helpers mutate only in-memory state unless noted.
//!
pub mod protocol;

mod stores;

pub use protocol::{
    IsolatedJsonRpcProcess, McpHostProxy, ScriptedAcpAgent, ScriptedAcpClient, ScriptedMcpServer,
};
pub use stores::{InMemoryJsonArgumentStore, InMemoryToolkitContentStore};