open-plan-annotator 1.5.0 → 1.5.2
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 +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +18 -1
- package/package.json +5 -5
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
},
|
|
6
6
|
"metadata": {
|
|
7
7
|
"description": "Interactive plan annotation plugin for Claude Code",
|
|
8
|
-
"version": "1.5.
|
|
8
|
+
"version": "1.5.2"
|
|
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.5.
|
|
15
|
+
"version": "1.5.2",
|
|
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.5.
|
|
4
|
+
"version": "1.5.2",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "ndom91"
|
|
7
7
|
},
|
package/README.md
CHANGED
|
@@ -69,7 +69,24 @@ Install the dedicated Pi package:
|
|
|
69
69
|
pi install npm:@open-plan-annotator/pi-extension
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
-
The extension package registers
|
|
72
|
+
The extension package registers:
|
|
73
|
+
|
|
74
|
+
- a `submit_plan` tool, exposed to the model with prompt guidance to call it after drafting a concrete markdown plan and before implementation
|
|
75
|
+
- an `/annotate-plan` command for manual review of the latest assistant message or supplied plan text
|
|
76
|
+
|
|
77
|
+
Typical flow:
|
|
78
|
+
|
|
79
|
+
1. Ask Pi to make a plan before coding.
|
|
80
|
+
2. Pi drafts the plan and calls `submit_plan`.
|
|
81
|
+
3. The browser review UI opens locally.
|
|
82
|
+
4. Approval returns “Plan approved. Continue with implementation.”; requested changes return the serialized annotations as feedback.
|
|
83
|
+
|
|
84
|
+
You can also trigger review manually:
|
|
85
|
+
|
|
86
|
+
```sh
|
|
87
|
+
/annotate-plan
|
|
88
|
+
/annotate-plan # Plan\n\n1. Do the thing
|
|
89
|
+
```
|
|
73
90
|
|
|
74
91
|
#### Implementation Handoff
|
|
75
92
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-plan-annotator",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Fully local plugin for interactive plan annotation from your Agentic assistants",
|
|
6
6
|
"author": "ndom91",
|
|
@@ -82,10 +82,10 @@
|
|
|
82
82
|
}
|
|
83
83
|
},
|
|
84
84
|
"optionalDependencies": {
|
|
85
|
-
"@open-plan-annotator/runtime-darwin-arm64": "1.5.
|
|
86
|
-
"@open-plan-annotator/runtime-darwin-x64": "1.5.
|
|
87
|
-
"@open-plan-annotator/runtime-linux-arm64": "1.5.
|
|
88
|
-
"@open-plan-annotator/runtime-linux-x64": "1.5.
|
|
85
|
+
"@open-plan-annotator/runtime-darwin-arm64": "1.5.2",
|
|
86
|
+
"@open-plan-annotator/runtime-darwin-x64": "1.5.2",
|
|
87
|
+
"@open-plan-annotator/runtime-linux-arm64": "1.5.2",
|
|
88
|
+
"@open-plan-annotator/runtime-linux-x64": "1.5.2"
|
|
89
89
|
},
|
|
90
90
|
"overrides": {
|
|
91
91
|
"uuid": "^14.0.0"
|