Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From python
Runs a post-write re-ingestion script after file edits/writes to sync changes back into the AI context. Executes a shell command from the plugin hooks directory.
1 event · 1 hook
npx claudepluginhub ruslan-korneev/claude-plugins --plugin pythonSafety signals detected in this hook configuration
Where this hook configuration is defined
Defined in hooks/hooks.json
Event handlers and matchers — expand Raw Configuration for the full JSON
Edit|Writejq -r '.tool_input.file_path' | { read file_path; if echo "$file_path" | grep -q '\.py$'; then ruff format "$file_path" 2>/dev/null; ruff check --fix --unsafe-fixes "$file_path" 2>/dev/null; mypy "$file_path" --no-error-summary 2>/dev/null | head -20; fi; } || trueShare bugs, ideas, or general feedback.