npx claudepluginhub dsmolchanov/rpa --plugin rpaDefined in hooks/hooks.json
bash -c 'command -v npm >/dev/null 2>&1 && npm run lint --silent 2>/dev/null || echo "Lint: npm not found or no lint script"'bash -c 'MODIFIED=$(git diff --name-only 2>/dev/null | head -5); if [ -n "$MODIFIED" ]; then command -v npm >/dev/null 2>&1 && npm test -- --bail --findRelatedTests $MODIFIED 2>/dev/null || echo "Tests: npm not found"; fi'Editbash -c 'FILE=$(cat | jq -r ".tool_input.file_path"); command -v prettier >/dev/null 2>&1 && npx prettier --write "$FILE" 2>/dev/null || true'On Stop, runs git to count changed/staged/recent files and suggests /harness retro if >3. Post Edit/Write, runs markdownlint-fix.sh on file_path. Modifies files via shell commands.