open-plan-annotator 1.8.7 → 1.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,14 +5,14 @@
5
5
  },
6
6
  "metadata": {
7
7
  "description": "Interactive plan annotation plugin for Claude Code",
8
- "version": "1.8.7"
8
+ "version": "1.9.1"
9
9
  },
10
10
  "plugins": [
11
11
  {
12
12
  "name": "open-plan-annotator",
13
13
  "source": "./",
14
14
  "description": "Interactive plan annotation UI: review, strikethrough, and comment on Claude's plans before approving. Fully local, no external services.",
15
- "version": "1.8.7",
15
+ "version": "1.9.1",
16
16
  "author": {
17
17
  "name": "ndom91"
18
18
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "open-plan-annotator",
3
3
  "description": "Interactive plan annotation UI: review, strikethrough, and comment on Claude's plans before approving. Fully local, no external services.",
4
- "version": "1.8.7",
4
+ "version": "1.9.1",
5
5
  "author": {
6
6
  "name": "ndom91"
7
7
  },
package/README.md CHANGED
@@ -11,19 +11,19 @@ Select text to <code>strikethrough</code>, <code>replace</code>, <code>insert</c
11
11
 
12
12
  ## How It Works
13
13
 
14
- 1. Your coding agent (Claude Code or OpenCode) finishes writing a plan
14
+ 1. Your coding agent (Claude Code, OpenCode, and pi) finishes writing a plan
15
15
  2. The plugin launches an ephemeral HTTP server and opens a React UI in your browser
16
16
  3. You review the plan and annotate it — strikethrough, replace, insert, or comment on any section
17
17
  4. **Approve** to let the agent proceed, or **Request Changes** to send your annotations back as structured feedback
18
18
  5. The agent revises the plan and the cycle repeats until you're satisfied
19
19
 
20
- Everything runs locally. Nothing leaves your machine.
20
+ Everything runs locally.
21
21
 
22
- ![](.github/assets/screenshot_light_004.png)
22
+ ![](.github/assets/screenshot_005.png)
23
23
 
24
24
  ## Install
25
25
 
26
- `open-plan-annotator` is package-managed: the plugin package installs the local platform runtime it needs. There is no first-run binary download and no in-app updater.
26
+ `open-plan-annotator` is package-managed as a plugin within your harness of choice. The main plugin package then installs the specific local platform runtime it needs for your host (`linux`/`darwin`, `x86_64`/`arm64`, etc). After installing the plugin, your agent will call `open-plan-annotator` autonomously when you ask it to "make a plan" or any similar such comment, including in claude-code specifically as a hook when exiting `PlanMode`. Alternatively, you can call it yourself explicitly via the exposed command. See below for more details.
27
27
 
28
28
  ### Claude Code
29
29
 
@@ -48,7 +48,7 @@ Add the plugin to your OpenCode config (`opencode.json` or `.opencode/config.jso
48
48
 
49
49
  ```json
50
50
  {
51
- "plugin": ["open-plan-annotator@latest"]
51
+ "plugin": ["open-plan-annotator@1.8.7"]
52
52
  }
53
53
  ```
54
54
 
@@ -113,10 +113,10 @@ open-plan-annotator help agent
113
113
 
114
114
  ## Updates
115
115
 
116
- - Claude Code: update the marketplace/plugin install, then restart Claude Code.
117
- - OpenCode: update the installed npm plugin through OpenCode, then restart OpenCode.
118
- - Pi: update the Pi extension, then restart Pi.
119
- - Manual/global install: update the npm package, then rerun `open-plan-annotator`.
116
+ - **Claude Code**: navigate to the `/plugin` -> "Installed" -> `open-plan-annotator` entry and select "Update", then restart Claude Code.
117
+ - **OpenCode**: bump the version number in your `opencode.jsonc` `plugins` `open-plan-annotator` entry, then restart OpenCode.
118
+ - **Pi**: update the Pi extension, then restart Pi.
119
+ - **Manual/global install**: update the npm package, then rerun `open-plan-annotator`.
120
120
 
121
121
  ## Keyboard Shortcuts
122
122
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-plan-annotator",
3
- "version": "1.8.7",
3
+ "version": "1.9.1",
4
4
  "type": "module",
5
5
  "description": "Fully local plugin for interactive plan annotation from your Agentic assistants",
6
6
  "author": "ndom91",
@@ -84,10 +84,10 @@
84
84
  }
85
85
  },
86
86
  "optionalDependencies": {
87
- "@open-plan-annotator/runtime-darwin-arm64": "1.8.7",
88
- "@open-plan-annotator/runtime-darwin-x64": "1.8.7",
89
- "@open-plan-annotator/runtime-linux-arm64": "1.8.7",
90
- "@open-plan-annotator/runtime-linux-x64": "1.8.7"
87
+ "@open-plan-annotator/runtime-darwin-arm64": "1.9.1",
88
+ "@open-plan-annotator/runtime-darwin-x64": "1.9.1",
89
+ "@open-plan-annotator/runtime-linux-arm64": "1.9.1",
90
+ "@open-plan-annotator/runtime-linux-x64": "1.9.1"
91
91
  },
92
92
  "overrides": {
93
93
  "uuid": "^14.0.0"