open-plan-annotator 0.3.0 → 1.0.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.
@@ -12,7 +12,7 @@
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": "0.3.0",
15
+ "version": "1.0.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": "0.3.0",
4
+ "version": "1.0.1",
5
5
  "author": {
6
6
  "name": "ndom91"
7
7
  },
package/README.md CHANGED
@@ -6,10 +6,10 @@
6
6
 
7
7
  A fully local agentic coding plugin that intercepts plan mode and opens an annotation UI in your browser. Mark up the plan, send structured feedback to the agent, and receive a revised version — iterate as many times as you need until you're ready to accept.
8
8
 
9
- Select text to <code style="color: purple">strikethrough</code>, <code style="color: orange">replace</code>, <code style="color: blue">insert</code>, or <code style="color: red">comment</code> — then approve the plan or request changes.
9
+ Select text to <code>strikethrough</code>, <code>replace</code>, <code>insert</code>, or <code>comment</code> — then approve the plan or request changes.
10
10
 
11
11
 
12
- ![](.github/assets/screenshot_1.png)
12
+ ![](.github/assets/screenshot.png)
13
13
 
14
14
 
15
15
  ## How it works
@@ -24,6 +24,10 @@ The server shuts down after you decide. Everything runs locally, nothing leaves
24
24
 
25
25
  ## Install
26
26
 
27
+ > [!NOTE]
28
+ > The first run might take a few seconds if you use pnpm as it blocks postinstall scripts.
29
+ > Claude / OpenCode will trigger the download upon first use then.
30
+
27
31
  **1. Install the binary**
28
32
 
29
33
  ```sh
@@ -32,11 +36,6 @@ npm install -g open-plan-annotator
32
36
 
33
37
  This JS shim downloads the correct binary for your platform (macOS, Linux).
34
38
 
35
- > [!NOTE]
36
- > If using pnpm, postinstall scripts will be blocked by default. You can run the
37
- > 'open-plan-annotator' manually to trigger a download, or the first invocation
38
- > by Claude will also trigger the binary download.
39
-
40
39
  ### Claude Code
41
40
 
42
41
  Add the marketplace and install the plugin:
@@ -50,11 +49,6 @@ From within Claude Code:
50
49
 
51
50
  This registers the `ExitPlanMode` hook that launches the annotation UI.
52
51
 
53
-
54
- > [!NOTE]
55
- > The first run might take a few seconds if you hadn't installed the binary, as
56
- > Claude will trigger the download then.
57
-
58
52
  ### OpenCode
59
53
 
60
54
  Add `open-plan-annotator` to the `plugin` array in your OpenCode config (`opencode.json` or `.opencode/config.json`):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-plan-annotator",
3
- "version": "0.3.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "Fully local plugin for interactive plan annotation from your Agentic assistants",
6
6
  "author": "ndom91",