Replace bun with node in plugin hooks.json #268

Closed
opened 2026-01-25 13:13:30 +00:00 by jack · 0 comments
Owner

Problem

plugin/hooks/hooks.json verwendet bun als Runtime für alle Hook-Commands:

"command": "bun \"${CLAUDE_PLUGIN_ROOT}/scripts/worker-service.cjs\" start"

Lösung

Alle bun Aufrufe durch node ersetzen:

"command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/worker-service.cjs\" start"

Betroffene Hooks

  • SessionStart (2x)
  • UserPromptSubmit (2x)
  • Observation (2x)
  • Summarize (2x)
  • PreCompact (2x)

Priorität

Kritisch - Ohne dies funktioniert das Plugin nicht auf Systemen ohne Bun.

## Problem `plugin/hooks/hooks.json` verwendet `bun` als Runtime für alle Hook-Commands: ```json "command": "bun \"${CLAUDE_PLUGIN_ROOT}/scripts/worker-service.cjs\" start" ``` ## Lösung Alle `bun` Aufrufe durch `node` ersetzen: ```json "command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/worker-service.cjs\" start" ``` ## Betroffene Hooks - SessionStart (2x) - UserPromptSubmit (2x) - Observation (2x) - Summarize (2x) - PreCompact (2x) ## Priorität **Kritisch** - Ohne dies funktioniert das Plugin nicht auf Systemen ohne Bun.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
customable/claude-mem#268
No description provided.