edict-cli 0.19.0

Setup, sync, and runtime for multi-agent AI coding workflows
Documentation
# Build the Rust binary
build:
    cargo build

# Run tests
test:
    cargo test

# Install the binary to ~/.cargo/bin
install:
    cargo install --path . --locked

# Lint with clippy
lint:
    cargo clippy -- -D warnings

# Format with rustfmt
fmt:
    cargo fmt

# Check types without building
check:
    cargo check