Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From breadcrumb
Auto-compresses markdown, HTML, and plain text files after each Read tool call; auto-installs the transpile binary on session start.
2 events · 2 hooks
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-1 --plugin tylergibbs1-breadcrumbWhere this hook configuration is defined
Defined in hooks/hooks.json
Event handlers and matchers — expand Raw Configuration for the full JSON
Readjq -r '.tool_input.file_path // empty' | { read fp; if [ -n "$fp" ] && [ -f .breadcrumbs.json ]; then note=$(breadcrumb check "$fp" 2>/dev/null | jq -r 'if .breadcrumbs and (.breadcrumbs | length) > 0 then .breadcrumbs | map(if .staleness == "stale" then "[STALE] " + .message else .message end) | join("; ") else empty end'); if [ -n "$note" ]; then echo "{\"hookSpecificOutput\":{\"hookEventName\":\"PostToolUse\",\"additionalContext\":\"📝 BREADCRUMB: $note — If this conflicts with the current task, inform the user.\"}}"; fi; fi; exit 0; }command -v breadcrumb >/dev/null 2>&1 || npm install -g breadcrumb-cli >/dev/null 2>&1; [ -f .breadcrumbs.json ] || breadcrumb init >/dev/null 2>&1; exit 0Share bugs, ideas, or general feedback.