apcore-cli 0.7.0

Command-line interface for apcore modules
Documentation
#!/bin/bash
# Pre-commit hook for apcore-rust
# Installed by: make setup

set -e

echo "Running pre-commit checks..."

# Format check
echo "  cargo fmt --check"
cargo fmt --all -- --check

# Clippy
echo "  cargo clippy"
cargo clippy --all-targets --all-features -- -D warnings

# Character validation (skip if apdev-rs not installed)
if command -v apdev-rs >/dev/null 2>&1; then
    echo "  apdev-rs check-chars"
    apdev-rs check-chars src/
else
    echo "  apdev-rs not found, skipping check-chars (run 'make setup' to install)"
fi

echo "All checks passed!"