[package]
name = "distill-cli"
version = "0.5.0"
edition = "2024"
description = "CLI tool that monitors AI agent sessions, identifies patterns, and proposes skills"
license = "MIT"
repository = "https://github.com/nclandrei/distill"
homepage = "https://github.com/nclandrei/distill"
readme = "README.md"
authors = ["Andrei Nicolae"]
keywords = ["ai", "automation", "agent", "cli", "workflow"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "distill"
path = "src/main.rs"
[dependencies]
anyhow = "1"
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
crossterm = "0.29"
image = { version = "0.25", default-features = false, features = ["png"] }
ratatui = "0.30"
resvg = "0.45"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
thiserror = "2"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
[profile.dist]
inherits = "release"
lto = "thin"
[package.metadata.dist]
dist = true
installers = ["shell", "homebrew"]
targets = ["x86_64-apple-darwin", "aarch64-apple-darwin", "x86_64-unknown-linux-gnu"]
tap = "nclandrei/homebrew-tap"