From bcdf8c8cde31e826000f1b2d6eeaebdd865a07c1 Mon Sep 17 00:00:00 2001 From: Michelle Tilley Date: Mon, 8 Jun 2026 09:12:45 -0700 Subject: feat: Capture command output + expose to new `atuin_output` tool (#3510) --- crates/atuin-daemon/src/components/mod.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crates/atuin-daemon/src/components/mod.rs') diff --git a/crates/atuin-daemon/src/components/mod.rs b/crates/atuin-daemon/src/components/mod.rs index 5950d5d5..447e31df 100644 --- a/crates/atuin-daemon/src/components/mod.rs +++ b/crates/atuin-daemon/src/components/mod.rs @@ -11,12 +11,15 @@ //! //! - [`history::HistoryComponent`]: Command history lifecycle management //! - [`search::SearchComponent`]: Fuzzy search over history +//! - [`semantic::SemanticComponent`]: In-memory semantic command captures //! - [`sync::SyncComponent`]: Cloud sync pub mod history; pub mod search; +pub mod semantic; pub mod sync; pub use history::HistoryComponent; pub use search::SearchComponent; +pub use semantic::SemanticComponent; pub use sync::SyncComponent; -- cgit v1.3.1