distill-cli 0.4.0

CLI tool that monitors AI agent sessions, identifies patterns, and proposes skills
.PHONY: build test lint fmt check local-checks hooks-install clean

build:
	cargo build

test:
	cargo test

lint:
	cargo clippy -- -D warnings

fmt:
	cargo fmt

check: fmt lint test
	@echo "All checks passed."

local-checks:
	./scripts/local-checks.sh

hooks-install:
	./scripts/install-hooks.sh

clean:
	cargo clean