Skip to content

Releases: MarimerLLC/claude-utils

v0.1.8

09 May 18:06
914ece3

Choose a tag to compare

Fixes

  • Windows: replace the claude-memsync.cmd Startup-folder launcher with a claude-memsync.vbs launcher. The previous .cmd ran the daemon with start "" /B, which left a cmd.exe console window attached to the daemon for as long as it ran. The new VBScript launcher uses WScript.Shell.Run with a hidden, fire-and-forget invocation, so no console window is left behind at logon. (#1)
  • claude-memsync install and claude-memsync uninstall now also remove the legacy claude-memsync.cmd so users upgrading from v0.1.7 don't end up with both launchers firing.

Upgrading from v0.1.7 on Windows

claude-memsync stop
# extract the new archive, copy bin/* over your existing install
claude-memsync install   # writes the new .vbs and removes the old .cmd
claude-memsync start

No action needed on Linux / macOS — only the Windows logon path changed.

v0.1.7

08 May 22:53

Choose a tag to compare

  • Hide child-process console windows on Windows (no more flicker)
  • Skip pull/push when remote hasn't moved (ls-remote gate)
  • Default PullIntervalSec bumped from 30s to 1h
  • Versioning wired through -ldflags / runtime/debug.BuildInfo
  • CI on main and PRs across Linux, macOS, and Windows