bmo 0.4.0

Local-first SQLite-backed CLI issue tracker for AI agents
Documentation
# bmo build recipes

_default:
    just --list

# Run all tests
test:
    cargo test

# Check formatting and run clippy
check:
    just lint
    cargo check --all

# Alias for check
lint:
    cargo fmt --check
    cargo clippy --all-targets --all-features -- -D warnings

# Release build
build:
    cargo build --release

# Remove build artifacts
clean:
    cargo clean

# Install binary to Cargo bin path
install:
    cargo install --path .

# Run cargo fmt
fmt:
    cargo fmt

# Run the demo
demo:
    cargo run --example demo