npx claudepluginhub arustydev/agents --plugin blog-workflowDefined in hooks/hooks.json
{
"PostToolUse": [
{
"hooks": [
{
"type": "command",
"command": "bash -c 'FILE=\"$TOOL_INPUT_FILE_PATH\"; case \"$FILE\" in **/posts/**/*.md) python3 -c \"import sys,yaml; yaml.safe_load(open(sys.argv[1]).read().split('\\''---'\\''[1])\" \"$FILE\" 2>/dev/null && echo \"✓ Frontmatter valid\" || echo \"⚠ Frontmatter validation skipped\";; esac; true'",
"timeout": 10
},
{
"type": "command",
"command": "bash -c 'FILE=\"$TOOL_INPUT_FILE_PATH\"; case \"$FILE\" in **/posts/**/*.md) if grep -qE \"^\\`\\`\\`$\" \"$FILE\" 2>/dev/null; then echo \"⚠ Code block without language tag found\"; fi;; esac; true'",
"timeout": 5
}
],
"matcher": "Write|Edit"
}
]
}"Runs detect-word-vomit.sh bash script on PostToolUse events matching Write|Edit tools. Executes bash commands and touches file writes post-operation."