warden-cli 0.1.1

A local, read-only CLI that analyzes your coding agent's session logs and turns that analysis into skills, slash commands, and prompts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! The JSONL event store. Append-only, monthly partitions, no database.
//!
//! `scanner` is the single read path; nothing outside this module opens event
//! files directly.

pub mod id;
pub mod paths;
pub mod record;
pub mod scanner;
pub mod writer;

pub use id::{event_id, text_hash, EventIdentity};
pub use paths::{expand_tilde, Partition, StorePaths};
pub use record::{Event, IngestCursor, PromptRecord, ToolCall, RECORD_VERSION};
pub use scanner::{Scan, ScanQuery, ScanStats, Scanner};
pub use writer::StoreWriter;