agent-sdk-toolkit 0.1.0-alpha.4

Optional tool-pack helpers layered over agent-sdk-core primitive contracts.
Documentation
//! Concrete workspace tool helpers layered over core tool/effect contracts. Use these
//! modules for bounded read, search, edit, write, and format-aware extraction
//! behavior under a host-selected workspace policy. Reads search local files;
//! edit/write helpers may mutate files only through explicit executor calls.
//!
mod archive;
mod dispatch;
mod legacy_office;
mod media;
mod ocr;
mod office;
mod pdf;
mod rendered;
mod sqlite;
mod summary;
mod text;
mod url_resource;

pub(super) use dispatch::{
    render_bounded_prefix_read, render_workspace_read, render_workspace_uri,
};
pub(super) use rendered::{RenderedRead, RenderedUriRead};

use dispatch::extraction_error;
use rendered::{TRUNCATION_GUIDANCE, add_truncation_guidance};