memex 0.3.0

Turn your Rust workspace into human-readable docs and agent-ready context.
Documentation
default:
	@just --list

help:
	@just --list

build:
	cargo build

check:
	cargo clippy --workspace -- -D warnings
	cargo fmt --all -- --check

fmt:
	cargo fmt --all

test:
	cargo test --workspace

lint:
	cargo run -q -- lint

ci: check test

docs:
	cargo run -- serve

docs-build:
	cargo run -- build

docs-serve:
	cargo run -- serve --no-build