From 09b048bc34ef28e8e436037a2798b67c56f46063 Mon Sep 17 00:00:00 2001 From: Vitalii Tverdokhlib Date: Mon, 17 Aug 2026 07:53:04 +0300 Subject: [PATCH] feat(agent): expose ACP host adapter API --- tauri-plugin-agent/src/lib.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tauri-plugin-agent/src/lib.rs b/tauri-plugin-agent/src/lib.rs index 9ccb2c3..569461c 100644 --- a/tauri-plugin-agent/src/lib.rs +++ b/tauri-plugin-agent/src/lib.rs @@ -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` 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;