Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion tauri-plugin-agent/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ use tauri::{
Manager, Runtime,
};

mod acp;
/// Native ACP session API for product adapters that need a host-owned runner.
///
/// Products obtain `State<AcpState>` from their `AppHandle` and invoke these
/// functions with host-selected `SpawnAgentArgs`; Components never receive the
/// state, child-process handle, or credentials.
pub mod acp;
mod commands;
mod journal;
mod mcp_bridge;
Expand Down
Loading