Complete the set of whitelistable wrapper scripts so all SQLite access goes through db/connectors/sqlite-* (query, exec, init, seed). Update the ticket skill to reference wrappers instead of calling sqlite_connector.py directly, making permissions allowlisting clean. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5 lines
178 B
Bash
Executable File
5 lines
178 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Initialise the ticketing database from schema.sql. Whitelistable command.
|
|
# Usage: sqlite-init
|
|
exec python3 "$(dirname "$0")/sqlite_connector.py" init "$@"
|