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>
4 lines
137 B
Bash
Executable File
4 lines
137 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Count indexed documents in Qdrant. Whitelistable command.
|
|
exec python3 "$(dirname "$0")/qdrant_connector.py" count
|