open-plan-annotator 1.0.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.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +4 -10
- package/package.json +1 -1
|
@@ -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": "1.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": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "ndom91"
|
|
7
7
|
},
|
package/README.md
CHANGED
|
@@ -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`):
|