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
//! warden — a local, read-only library and CLI over coding-agent session logs.
//!
//! warden never calls a model provider: there is no network code in the crate,
//! and no dependency capable of making a request.

pub mod adapters;
pub mod cli;
pub mod commands;
pub mod config;
pub mod doctor;
pub mod ingest;
pub mod output;
pub mod reports;
pub mod store;
pub mod suggest;