Download Latest Version v0.17.1 source code.tar.gz (4.7 MB)
Email in envelope

Get an email when there's a new version of Plannotator

Home / v0.16.5
Name Modified Size InfoDownloads / Week
Parent folder
plannotator-darwin-arm64 2026-04-02 83.3 MB
plannotator-darwin-arm64.sha256 2026-04-02 91 Bytes
plannotator-darwin-x64 2026-04-02 88.2 MB
plannotator-darwin-x64.sha256 2026-04-02 89 Bytes
plannotator-linux-arm64 2026-04-02 120.8 MB
plannotator-linux-arm64.sha256 2026-04-02 90 Bytes
plannotator-linux-x64 2026-04-02 121.4 MB
plannotator-linux-x64.sha256 2026-04-02 88 Bytes
plannotator-paste-darwin-arm64 2026-04-02 61.1 MB
plannotator-paste-darwin-arm64.sha256 2026-04-02 97 Bytes
plannotator-paste-darwin-x64 2026-04-02 66.1 MB
plannotator-paste-darwin-x64.sha256 2026-04-02 95 Bytes
plannotator-paste-linux-arm64 2026-04-02 98.7 MB
plannotator-paste-linux-arm64.sha256 2026-04-02 96 Bytes
plannotator-paste-linux-x64 2026-04-02 99.3 MB
plannotator-paste-linux-x64.sha256 2026-04-02 94 Bytes
plannotator-paste-win32-x64.exe 2026-04-02 115.4 MB
plannotator-paste-win32-x64.exe.sha256 2026-04-02 98 Bytes
plannotator-win32-x64.exe 2026-04-02 137.5 MB
plannotator-win32-x64.exe.sha256 2026-04-02 92 Bytes
README.md 2026-04-02 7.8 kB
v0.16.5 source code.tar.gz 2026-04-02 4.6 MB
v0.16.5 source code.zip 2026-04-02 4.8 MB
Totals: 23 Items   1.0 GB 0

Follow @plannotator on X for updates


Missed recent releases? | Release | Highlights | | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | | [v0.16.4](https://github.com/backnotprop/plannotator/releases/tag/v0.16.4) | Compound planning improvement hook, GitHub Enterprise + self-hosted GitLab, dockview workspace, new themes | | [v0.16.3](https://github.com/backnotprop/plannotator/releases/tag/v0.16.3) | Pi phase configuration, CLI help, untracked file discovery fix, review scroll reset | | [v0.16.2](https://github.com/backnotprop/plannotator/releases/tag/v0.16.2) | Draggable comment popovers, cross-file annotation visibility, custom diff fonts, OpenCode verbose log fix | | [v0.16.1](https://github.com/backnotprop/plannotator/releases/tag/v0.16.1) | SSE stream idle timeout fix for external annotations API | | [v0.16.0](https://github.com/backnotprop/plannotator/releases/tag/v0.16.0) | GitHub Copilot CLI, external annotations API, bot callback URLs, interactive checkboxes, print support, diff display options | | [v0.15.5](https://github.com/backnotprop/plannotator/releases/tag/v0.15.5) | Custom display names, GitHub viewed file sync, expand/collapse all in file tree, search performance, WSL fix | | [v0.15.2](https://github.com/backnotprop/plannotator/releases/tag/v0.15.2) | Compound Planning skill, folder annotation, `/plannotator-archive` slash command, skill installation via platform installers | | [v0.15.0](https://github.com/backnotprop/plannotator/releases/tag/v0.15.0) | Live AI chat in code review, plan archive browser, folder file viewer, resizable split pane, Pi full feature parity | | [v0.14.5](https://github.com/backnotprop/plannotator/releases/tag/v0.14.5) | GitLab merge request review, login page image fix, Windows install path fix | | [v0.14.4](https://github.com/backnotprop/plannotator/releases/tag/v0.14.4) | GitHub review submission, repo identifier in tab title, nested code fence parser fix, Pi paste URL wiring | | [v0.14.3](https://github.com/backnotprop/plannotator/releases/tag/v0.14.3) | PR context panel, diff search in code review, OpenCode permission normalization, landing page redesign | | [v0.14.2](https://github.com/backnotprop/plannotator/releases/tag/v0.14.2) | OpenCode plan mode prompt replacement, Windows non-ASCII path fix, Pi link fix |

What's New in v0.16.5

v0.16.5 is a patch release fixing a scrollbar regression in the review UI and shipping two VS Code extension improvements. 3 PRs, all internal.

Resize Handle Scrollbar Fix

In v0.16.2, the sidebar resize handle's invisible touch area was widened to make dragging easier. The right-side handle extended 8px leftward into the content panel, covering the 6px scrollbar. Users could see the scrollbar but couldn't click it because the resize handle's hit area intercepted the click. This was a regression from the touch area change in commit 3ac3d5b.

The fix zeroes out the left encroachment on right-side handles and shifts the full touch target into the sidebar panel instead. The scrollbar is now fully accessible on both plan review and code review views.

  • #465, closing #354 reported by @dillonoconnor

VS Code Extension

The extension README icon now uses an absolute URL so the VS Code Marketplace renders it correctly. Previously, the marketplace resolved the relative image path against the repo root rather than the extension subdirectory, resulting in a broken icon on the listing page.

The extension is also now published to the VS Code Marketplace as backnotprop.plannotator-webview. The .vscodeignore was tightened from 548 packaged files down to 12, the README was rewritten with CloudFront-hosted screenshots, and the marketing site gained a VS Code tab in the hero agent selector with install instructions and a marketplace link.


Install / Update

macOS / Linux:

:::bash
curl -fsSL https://plannotator.ai/install.sh | bash

Windows:

:::powershell
irm https://plannotator.ai/install.ps1 | iex

Claude Code Plugin: Run /plugin in Claude Code, find plannotator, and click "Update now".

Copilot CLI:

/plugin marketplace add backnotprop/plannotator
/plugin install plannotator-copilot@plannotator

OpenCode: Clear cache and restart:

:::bash
rm -rf ~/.bun/install/cache/@plannotator

Then in opencode.json:

:::json
{
  "plugin": ["@plannotator/opencode@latest"]
}

Pi: Install or update the extension:

:::bash
pi install npm:@plannotator/pi-extension

VS Code Extension: Install from the VS Code Marketplace. The extension opens plan review and code review directly in VS Code editor tabs instead of a browser window. Tested with Claude Code running in VS Code's integrated terminal. Not currently compatible with Anthropic's official VS Code extension due to upstream hook bugs.


What's Changed

  • fix(ui): right resize handle no longer covers scrollbar by @backnotprop in #465
  • fix(vscode): use absolute URL for README icon by @backnotprop in #464
  • feat(vscode): marketplace publish + marketing VS Code tab by @backnotprop in #463

Community

  • @dillonoconnor reported the scrollbar regression in #354 and followed up with reproduction details
  • @7tg requested VS Code extension installation documentation in #258
  • @jedzill4 opened the original VS Code extension request in #462

Related issues now addressed by the VS Code marketplace publish:

  • @jchapuis: #99 (VS Code hook integration)
  • @jinhwan0724: #154 (non-TTY browser open)
  • @GunitBindal: #192 (remote session UI access)

Full Changelog: https://github.com/backnotprop/plannotator/compare/v0.16.4...v0.16.5

Source: README.md, updated 2026-04-02