Squashed 'vendor/ruvector/' content from commit b64c2172

git-subtree-dir: vendor/ruvector
git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
ruv
2026-02-28 14:39:40 -05:00
commit d803bfe2b1
7854 changed files with 3522914 additions and 0 deletions

26
.claude/helpers/pre-commit Executable file
View File

@@ -0,0 +1,26 @@
#!/bin/bash
# Claude Flow Pre-Commit Hook
# Validates code quality before commit
set -e
echo "🔍 Running Claude Flow pre-commit checks..."
# Get staged files
STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM)
# Run validation for each staged file
for FILE in $STAGED_FILES; do
if [[ "$FILE" =~ \.(ts|js|tsx|jsx)$ ]]; then
echo " Validating: $FILE"
npx @claude-flow/cli hooks pre-edit --file "$FILE" --validate-syntax 2>/dev/null || true
fi
done
# Run tests if available
if [ -f "package.json" ] && grep -q '"test"' package.json; then
echo "🧪 Running tests..."
npm test --if-present 2>/dev/null || echo " Tests skipped or failed"
fi
echo "✅ Pre-commit checks complete"