brainy/scripts/claude-commit.sh
David Snelling f8c45f2d8d Initial commit: Brainy - Multi-Dimensional AI Database
Open source vector database with HNSW indexing, graph relationships,
and metadata facets. Features CLI with professional augmentation registry
integration for discovering extensions and capabilities.
2025-08-18 17:35:06 -07:00

15 lines
No EOL
485 B
Bash
Executable file

#!/bin/bash
# This script now calls the global claude-commit command
# The global version is located at ~/.local/bin/claude-commit
# Or can be installed from docs/tools/claude-commit/setup.sh
if command -v claude-commit >/dev/null 2>&1; then
exec claude-commit "$@"
elif [ -x "$HOME/.local/bin/claude-commit" ]; then
exec "$HOME/.local/bin/claude-commit" "$@"
else
echo "claude-commit not found. Please run:"
echo " ./docs/tools/claude-commit/setup.sh"
exit 1
fi