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