/** * Example hook handler: Log all commands to a file * * This handler demonstrates how to create a hook that logs all command events * to a centralized log file for audit/debugging purposes. * * To enable this handler, add it to your config: * * ```json * { * "hooks": { * "internal": { * "enabled": true, * "handlers": [ * { * "event": "command", * "module": "./hooks/handlers/command-logger.ts" * } * ] * } * } * } * ``` */ import type { HookHandler } from "../../hooks.js"; /** * Log all command events to a file */ declare const logCommand: HookHandler; export default logCommand;