From ff6e22a4435c69fa0ee806c72557b2a810dbe1b0 Mon Sep 17 00:00:00 2001 From: Steve Calvert Date: Sun, 22 Feb 2026 16:30:38 -0800 Subject: [PATCH] chore: add PostToolUse hook to validate plugins on edit --- .claude/settings.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000..de08ba3 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,15 @@ +{ + "hooks": { + "PostToolUse": [ + { + "matcher": "Edit|Write", + "hooks": [ + { + "type": "command", + "command": "node scripts/validate-plugins.mjs 2>&1 | tail -30" + } + ] + } + ] + } +}