npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-1 --plugin tylergibbs1-breadcrumbDefined in hooks/hooks.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 0Runs Node.js startup script on session start for flywheel agent init. After flywheel_bead_approve tool use, echoes progress message with flywheel-status check instruction. No bash or file writes.