open-plan-annotator 1.0.15 → 1.0.16
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.0.
|
|
8
|
+
"version": "1.0.16"
|
|
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.0.
|
|
15
|
+
"version": "1.0.16",
|
|
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.0.
|
|
4
|
+
"version": "1.0.16",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "ndom91"
|
|
7
7
|
},
|
package/README.md
CHANGED
|
@@ -22,6 +22,13 @@ Everything runs locally. Nothing leaves your machine.
|
|
|
22
22
|
|
|
23
23
|
## Install
|
|
24
24
|
|
|
25
|
+
> [!NOTE]
|
|
26
|
+
> The first run might take up to 30s to pop open the UI. If your agentic coding
|
|
27
|
+
> tool installed it via pnpm, they block post-install scripts by default so
|
|
28
|
+
> Claude / OpenCode will trigger the download of the correct binary for your
|
|
29
|
+
> platform upon first use, i.e. when first transitioning out of plan mode.
|
|
30
|
+
> All subsequent runs will be instant.
|
|
31
|
+
|
|
25
32
|
### Claude Code
|
|
26
33
|
|
|
27
34
|
From within Claude Code, add the marketplace and install the plugin:
|
|
@@ -73,10 +80,6 @@ If you want to run the binary standalone or build from source:
|
|
|
73
80
|
npm install -g open-plan-annotator
|
|
74
81
|
```
|
|
75
82
|
|
|
76
|
-
> [!NOTE]
|
|
77
|
-
> The first run might take a few seconds if you use pnpm, as it blocks postinstall scripts.
|
|
78
|
-
> Claude / OpenCode will trigger the download upon first use then.
|
|
79
|
-
|
|
80
83
|
#### From Source
|
|
81
84
|
|
|
82
85
|
```sh
|