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
//! SQLite-backed agent-pool coordination store.
//!
//! This module provides an optional concrete `AgentPoolStore` adapter. Core owns
//! the portable pool records and semantics; this toolkit module owns SQLite I/O.

mod sqlite_store;

pub use sqlite_store::SqliteAgentPoolStore;