github Yeachan-Heo/oh-my-claudecode v4.4.1
v4.4.1: HUD hotfix

latest releases: v4.11.6, v4.11.5, v4.11.4...
one month ago

HUD Disappears After Updating to v4.4.0 — Fixed

Root cause: In v4.4.0, dist/hud/index.js was changed to export main for programmatic use, with a direct-execution guard:

if (process.argv[1] === fileURLToPath(import.meta.url)) {
  main();
}

This guard works when running node dist/hud/index.js directly, but always fails when the module is loaded via await import() from the omc-hud.mjs wrapper — in that case process.argv[1] is the wrapper path, not index.js. Result: main() was never called and the HUD silently produced no output.

Fix: Call main() unconditionally. export { main } is preserved for programmatic/watch-loop use.

Also fixes: npm package name incorrectly set to oh-my-claudecode in v4.4.0 — restored to oh-my-claude-sisyphus.

Update

/plugin marketplace update omc
/omc-setup

Don't miss a new oh-my-claudecode release

NewReleases is sending notifications on new releases.