Thin bash wrappers around sqlite_connector.py and qdrant_connector.py that can be whitelisted in Claude Code permissions. Covers sqlite-query, sqlite-exec, qdrant-search, qdrant-index, qdrant-health, qdrant-count. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5 lines
171 B
Bash
Executable File
5 lines
171 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Index a file into Qdrant. Whitelistable command.
|
|
# Usage: qdrant-index <filepath>
|
|
exec python3 "$(dirname "$0")/qdrant_connector.py" index-file "$@"
|