Bug
The startup banner displays OhMyOpenCode 4.0.0 but the installed CLI reports 4.2.2.
Repro
- Install oh-my-openagent@latest (4.2.2)
- Open a new session
- Banner shows:
OhMyOpenCode 4.0.0
- Run
oh-my-openagent --version → 4.2.2
Root cause
package.json version is hardcoded to 4.0.0 and not updated on release:
node_modules/oh-my-openagent/package.json line 3:
"version": "4.0.0"
The banner reads from package.json instead of the compiled CLI version.
Suggestion
Either bump package.json version on each release, or have the banner read the CLI binary version dynamically.
Bug
The startup banner displays
OhMyOpenCode 4.0.0but the installed CLI reports4.2.2.Repro
OhMyOpenCode 4.0.0oh-my-openagent --version→4.2.2Root cause
package.jsonversion is hardcoded to4.0.0and not updated on release:The banner reads from package.json instead of the compiled CLI version.
Suggestion
Either bump package.json version on each release, or have the banner read the CLI binary version dynamically.