-
Notifications
You must be signed in to change notification settings - Fork 73
Open
Description
If your OpenCode plugin is stuck on an old version (showing v0.5.x or v0.6.0/v0.6.1 instead of v0.6.3), the fix is to clear the bun cache.
Solution
Windows (PowerShell):
Remove-Item -Recurse -Force "$env:USERPROFILE\.bun\install\cache\@plannotator"macOS / Linux:
rm -rf ~/.bun/install/cache/@plannotatorThen restart OpenCode. You should see the latest.
What happened?
The npm package was missing the HTML files that render the UI. Bun cached the package metadata (showing the correct version), but the actual UI files were stale or missing. This was fixed in v0.6.3.
Going forward
The install script now clears this cache automatically:
macOS / Linux:
curl -fsSL https://plannotator.ai/install.sh | bashWindows:
irm https://plannotator.ai/install.ps1 | iexMetadata
Metadata
Assignees
Labels
No labels