hooks.json 382 B

12345678910111213141516
  1. {
  2. "description": "Security reminder hook that warns about potential security issues when editing files",
  3. "hooks": {
  4. "PreToolUse": [
  5. {
  6. "hooks": [
  7. {
  8. "type": "command",
  9. "command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/security_reminder_hook.py"
  10. }
  11. ],
  12. "matcher": "Edit|Write|MultiEdit"
  13. }
  14. ]
  15. }
  16. }