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
[build-system]
requires = ["maturin>=1.9,<2", "patchelf; sys_platform == 'linux'"]
build-backend = "maturin"

[project]
name = "warden-cli"
readme = "README.md"
license-files = ["LICENSE"]
requires-python = ">=3.10"
# Inherited from Cargo.toml rather than restated here, so the crate and the
# wheel cannot describe warden differently. Only fields Cargo has no notion of
# (requires-python, classifiers) are declared below.
dynamic = ["version", "description", "license", "keywords"]
classifiers = [
    "Programming Language :: Rust",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Python :: Implementation :: PyPy",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
]

[project.urls]
Repository = "https://github.com/mathiasesn/warden"

[tool.maturin]
bindings = "bin"
python-source = "python"
strip = true
exclude = [
    "specs/**",
    "assets/**",
    ".claude/**",
    "ARCHI.md",
    "AGENTS.md",
    ".github/**",
]