ccat 0.1.1

CLAUDE.md Context Analyzer - A comprehensive tool for analyzing and managing Claude Code memory files
Documentation
# Default recipe to display help information
default:
    @just --list

# Run all quality checks
check:
    @echo "๐Ÿ” Running all quality checks..."
    just fmt-check
    just clippy
    just test
    just build

# Auto-fix formatting and clippy issues
fix:
    @echo "๐Ÿ”ง Auto-fixing issues..."
    cargo fmt
    cargo clippy --fix --allow-dirty --allow-staged

# Check code formatting
fmt:
    cargo fmt

# Check code formatting (CI mode)
fmt-check:
    @echo "๐Ÿ“ Checking code formatting..."
    cargo fmt --all -- --check

# Run clippy lints
clippy:
    @echo "๐Ÿ“Ž Running clippy..."
    cargo clippy --all-targets --all-features -- -D warnings

# Run tests
test:
    @echo "๐Ÿงช Running tests..."
    cargo test

# Build release binary
build:
    @echo "๐Ÿ—๏ธ  Building release..."
    cargo build --release

# Install the binary locally
install:
    @echo "๐Ÿ“ฆ Installing ccat..."
    cargo install --path .

# Clean build artifacts
clean:
    @echo "๐Ÿงน Cleaning build artifacts..."
    cargo clean

# Run security audit
audit:
    @echo "๐Ÿ” Running security audit..."
    cargo audit

# Check for outdated dependencies
outdated:
    @echo "๐Ÿ“… Checking for outdated dependencies..."
    cargo outdated

# Update dependencies
update:
    @echo "โฌ†๏ธ  Updating dependencies..."
    cargo update

# Generate documentation
docs:
    @echo "๐Ÿ“š Generating documentation..."
    cargo doc --open

# Run benchmarks
bench:
    @echo "โšก Running benchmarks..."
    cargo bench

# Profile the application
profile:
    @echo "๐Ÿ“Š Profiling application..."
    cargo build --release
    perf record target/release/ccat --help
    perf report

# Release patch version (0.1.0 -> 0.1.1)
release-patch:
    @echo "๐Ÿš€ Releasing patch version..."
    ./quick-release.sh patch

# Release minor version (0.1.0 -> 0.2.0)
release-minor:
    @echo "๐Ÿš€ Releasing minor version..."
    ./quick-release.sh minor

# Release major version (0.1.0 -> 1.0.0)
release-major:
    @echo "๐Ÿš€ Releasing major version..."
    ./quick-release.sh major

# Setup development environment
setup:
    @echo "๐Ÿ› ๏ธ  Setting up development environment..."
    rustup component add clippy rustfmt
    cargo install cargo-audit cargo-outdated

# Show project statistics
stats:
    @echo "๐Ÿ“ˆ Project statistics:"
    @echo "Lines of code:"
    find src -name "*.rs" -exec wc -l {} + | tail -1
    @echo "Dependencies:"
    cargo tree --depth 1 | wc -l
    @echo "Test coverage:"
    cargo test 2>&1 | grep "test result" || echo "No tests found"

# Lint all files
lint:
    @echo "๐Ÿ” Linting all files..."
    just clippy
    just fmt-check