open-plan-annotator 0.1.12 → 0.2.0
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 +18 -3
- 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": "0.
|
|
15
|
+
"version": "0.2.0",
|
|
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.
|
|
4
|
+
"version": "0.2.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "ndom91"
|
|
7
7
|
},
|
package/README.md
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
# open-plan-annotator
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/open-plan-annotator)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[]()
|
|
6
|
+
|
|
3
7
|
A fully local agentic coding plugin (claude-code, opencode) that intercepts plan mode, opens an annotation UI in your browser, and feeds structured feedback back to the agent.
|
|
4
8
|
|
|
5
|
-
Select text to strikethrough
|
|
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.
|
|
10
|
+
|
|
6
11
|
|
|
7
|
-

|
|
8
13
|
> UI for annotating LLM Plans
|
|
9
14
|
|
|
10
15
|
## How it works
|
|
@@ -26,7 +31,12 @@ The server shuts down after you decide. Everything runs locally, nothing leaves
|
|
|
26
31
|
npm install -g open-plan-annotator
|
|
27
32
|
```
|
|
28
33
|
|
|
29
|
-
This downloads the correct binary for your platform (macOS, Linux).
|
|
34
|
+
This JS shim downloads the correct binary for your platform (macOS, Linux).
|
|
35
|
+
|
|
36
|
+
> [!NOTE]
|
|
37
|
+
> If using pnpm, postinstall scripts will be blocked by default. You can run the
|
|
38
|
+
> 'open-plan-annotator' manually to trigger a download, or the first invocation
|
|
39
|
+
> by Claude will also trigger the binary download.
|
|
30
40
|
|
|
31
41
|
**2. Add the marketplace and install the plugin**
|
|
32
42
|
|
|
@@ -39,6 +49,11 @@ From within Claude Code:
|
|
|
39
49
|
|
|
40
50
|
This registers the `ExitPlanMode` hook that launches the annotation UI.
|
|
41
51
|
|
|
52
|
+
|
|
53
|
+
> [!NOTE]
|
|
54
|
+
> The first run might take a few seconds if you hadn't installed the binary, as
|
|
55
|
+
> Claude will trigger the download then.
|
|
56
|
+
|
|
42
57
|
### From source
|
|
43
58
|
|
|
44
59
|
```sh
|