code-digest 0.5.0

High-performance CLI tool to convert codebases to Markdown for LLM context
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# Pre-push hook to ensure all tests pass before pushing

echo "๐Ÿงช Running pre-push tests..."

# Run all tests (includes validation)
make test

if [ $? -ne 0 ]; then
    echo "โŒ Pre-push tests failed. Please fix the issues before pushing."
    exit 1
fi

echo "โœ… Pre-push tests passed!"
exit 0