delete dead flat-file journal tool and ephemeral stripping

Journal entries are written to the memory graph via journal_new/
journal_update, not appended to a flat file. Remove thought/journal.rs
(67 lines), strip_ephemeral_tool_calls (55 lines), default_journal_path,
and all wiring. -141 lines.

Co-Authored-By: Proof of Concept <poc@bcachefs.org>
This commit is contained in:
Kent Overstreet 2026-04-02 15:35:56 -04:00
parent aceaf0410e
commit 809679b6ce
5 changed files with 1 additions and 142 deletions

View file

@ -11,7 +11,6 @@ pub mod working_stack;
// Re-export shared infrastructure from thought
pub use crate::thought::{ToolOutput, ProcessTracker, truncate_output};
pub use crate::thought::memory;
pub use crate::thought::journal;
use crate::agent::types::ToolDef;