open-plan-annotator 1.5.1 → 1.5.3
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 +1 -31
- 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.3"
|
|
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.3",
|
|
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.3",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "ndom91"
|
|
7
7
|
},
|
package/README.md
CHANGED
|
@@ -88,21 +88,6 @@ You can also trigger review manually:
|
|
|
88
88
|
/annotate-plan # Plan\n\n1. Do the thing
|
|
89
89
|
```
|
|
90
90
|
|
|
91
|
-
#### Implementation Handoff
|
|
92
|
-
|
|
93
|
-
By default, after a plan is approved the plugin sends "Proceed with implementation." to a `build` agent. To customize or disable this, create `open-plan-annotator.json` in your project's `.opencode/` directory or globally in `~/.config/opencode/`:
|
|
94
|
-
|
|
95
|
-
```json
|
|
96
|
-
{
|
|
97
|
-
"implementationHandoff": {
|
|
98
|
-
"enabled": true,
|
|
99
|
-
"agent": "build"
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
Set `enabled` to `false` to disable auto-handoff. Project config overrides global config.
|
|
105
|
-
|
|
106
91
|
### Manual Install
|
|
107
92
|
|
|
108
93
|
If you want to run the CLI standalone or install the package globally:
|
|
@@ -112,21 +97,6 @@ pnpm add -g open-plan-annotator
|
|
|
112
97
|
npm install -g open-plan-annotator
|
|
113
98
|
```
|
|
114
99
|
|
|
115
|
-
#### From Source
|
|
116
|
-
|
|
117
|
-
```sh
|
|
118
|
-
git clone https://github.com/ndom91/open-plan-annotator.git
|
|
119
|
-
cd open-plan-annotator
|
|
120
|
-
bun install
|
|
121
|
-
bun run build
|
|
122
|
-
```
|
|
123
|
-
|
|
124
|
-
Then load it directly in Claude Code:
|
|
125
|
-
|
|
126
|
-
```sh
|
|
127
|
-
claude --plugin-dir ./open-plan-annotator
|
|
128
|
-
```
|
|
129
|
-
|
|
130
100
|
## Updates
|
|
131
101
|
|
|
132
102
|
- OpenCode: update the installed npm plugin through OpenCode, then restart OpenCode.
|
|
@@ -145,7 +115,7 @@ open-plan-annotator doctor
|
|
|
145
115
|
|--------|----------|-------------|
|
|
146
116
|
| Delete | `d` | Strikethrough selected text |
|
|
147
117
|
| Replace | `r` | Replace selected text with new content |
|
|
148
|
-
| Insert | `
|
|
118
|
+
| Insert | `s` | Insert text after the selection |
|
|
149
119
|
| Comment | `c` | Attach a comment to selected text |
|
|
150
120
|
| Approve | `Cmd+Enter` | Approve the plan and proceed |
|
|
151
121
|
| Request Changes | `Cmd+Shift+Enter` | Send annotations back to the agent |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-plan-annotator",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
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.3",
|
|
86
|
+
"@open-plan-annotator/runtime-darwin-x64": "1.5.3",
|
|
87
|
+
"@open-plan-annotator/runtime-linux-arm64": "1.5.3",
|
|
88
|
+
"@open-plan-annotator/runtime-linux-x64": "1.5.3"
|
|
89
89
|
},
|
|
90
90
|
"overrides": {
|
|
91
91
|
"uuid": "^14.0.0"
|