@wipcomputer/wip-ldm-os 0.4.73-alpha.27 → 0.4.73-alpha.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/ldm.js +2 -2
- package/package.json +1 -1
package/bin/ldm.js
CHANGED
|
@@ -2484,14 +2484,14 @@ async function cmdInstallCatalog() {
|
|
|
2484
2484
|
|
|
2485
2485
|
// Sync boot hook from npm package (#49)
|
|
2486
2486
|
if (syncBootHook()) {
|
|
2487
|
-
|
|
2487
|
+
console.log(' + Boot hook updated (sessions, messages, updates now active)');
|
|
2488
2488
|
}
|
|
2489
2489
|
|
|
2490
2490
|
// Sync inbox-check hook: UserPromptSubmit hook that surfaces pending
|
|
2491
2491
|
// bridge messages into CC context on every prompt. Closes the gap
|
|
2492
2492
|
// between lesa-bridge writes and CC delivery.
|
|
2493
2493
|
if (syncInboxCheckHook()) {
|
|
2494
|
-
|
|
2494
|
+
console.log(' + Inbox-check hook updated (bridge messages surface automatically)');
|
|
2495
2495
|
}
|
|
2496
2496
|
|
|
2497
2497
|
// Deploy git pre-commit hook on every install (not just init)
|