Open source vector database with HNSW indexing, graph relationships, and metadata facets. Features CLI with professional augmentation registry integration for discovering extensions and capabilities.
15 lines
No EOL
485 B
Bash
Executable file
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 |