5291ee7d3d
The startup toast and `omo --version` were reading from the legacy flat install at <CACHE_DIR>/node_modules/<pkg>/package.json, but OpenCode actually loads plugins from a per-plugin sandbox at <CACHE_DIR>/<plugin-entry>/node_modules/ <pkg>/package.json. The two install layers can drift independently when bun re-resolves "latest" against the flat install while the sandbox's package.json stays pinned to a literal version baked in at first install. In practice this means the toast can announce a version the runtime is not running. Concrete reproduction: with `"oh-my-openagent@latest"` in the plugin list, the sandbox stayed on 3.17.5 while the parallel flat install advanced to 3.17.6, so the startup toast confidently reported v3.17.6 even though the loaded plugin code was 3.17.5. Walking up from `import.meta.url` always reflects the actually-loaded module, so reorder `getCachedVersion()` to try that first and fall back to the flat- install candidates and execPath walk-up as before. The fallback chain is preserved for bundled environments where the module-relative lookup may fail. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>