open-plan-annotator 1.8.7 → 1.9.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.
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
},
|
|
6
6
|
"metadata": {
|
|
7
7
|
"description": "Interactive plan annotation plugin for Claude Code",
|
|
8
|
-
"version": "1.
|
|
8
|
+
"version": "1.9.0"
|
|
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.
|
|
15
|
+
"version": "1.9.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": "1.
|
|
4
|
+
"version": "1.9.0",
|
|
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
|
|
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.
|
|
20
|
+
Everything runs locally.
|
|
21
21
|
|
|
22
|
-

|
|
23
23
|
|
|
24
24
|
## Install
|
|
25
25
|
|
|
26
|
-
`open-plan-annotator` is package-managed
|
|
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@
|
|
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
|
|
117
|
-
- OpenCode
|
|
118
|
-
- Pi
|
|
119
|
-
- Manual/global install
|
|
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.
|
|
3
|
+
"version": "1.9.0",
|
|
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.
|
|
88
|
-
"@open-plan-annotator/runtime-darwin-x64": "1.
|
|
89
|
-
"@open-plan-annotator/runtime-linux-arm64": "1.
|
|
90
|
-
"@open-plan-annotator/runtime-linux-x64": "1.
|
|
87
|
+
"@open-plan-annotator/runtime-darwin-arm64": "1.9.0",
|
|
88
|
+
"@open-plan-annotator/runtime-darwin-x64": "1.9.0",
|
|
89
|
+
"@open-plan-annotator/runtime-linux-arm64": "1.9.0",
|
|
90
|
+
"@open-plan-annotator/runtime-linux-x64": "1.9.0"
|
|
91
91
|
},
|
|
92
92
|
"overrides": {
|
|
93
93
|
"uuid": "^14.0.0"
|