@open-plan-annotator/pi-extension 1.5.2 → 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/README.md +1 -31
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -55,21 +55,6 @@ You can also trigger review manually:
|
|
|
55
55
|
/annotate-plan # Plan\n\n1. Do the thing
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
-
#### Implementation Handoff
|
|
59
|
-
|
|
60
|
-
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/`:
|
|
61
|
-
|
|
62
|
-
```json
|
|
63
|
-
{
|
|
64
|
-
"implementationHandoff": {
|
|
65
|
-
"enabled": true,
|
|
66
|
-
"agent": "build"
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
Set `enabled` to `false` to disable auto-handoff. Project config overrides global config.
|
|
72
|
-
|
|
73
58
|
### Manual Install
|
|
74
59
|
|
|
75
60
|
If you want to run the CLI standalone or install the package globally:
|
|
@@ -79,21 +64,6 @@ pnpm add -g open-plan-annotator
|
|
|
79
64
|
npm install -g open-plan-annotator
|
|
80
65
|
```
|
|
81
66
|
|
|
82
|
-
#### From Source
|
|
83
|
-
|
|
84
|
-
```sh
|
|
85
|
-
git clone https://github.com/ndom91/open-plan-annotator.git
|
|
86
|
-
cd open-plan-annotator
|
|
87
|
-
bun install
|
|
88
|
-
bun run build
|
|
89
|
-
```
|
|
90
|
-
|
|
91
|
-
Then load it directly in Claude Code:
|
|
92
|
-
|
|
93
|
-
```sh
|
|
94
|
-
claude --plugin-dir ./open-plan-annotator
|
|
95
|
-
```
|
|
96
|
-
|
|
97
67
|
## Updates
|
|
98
68
|
|
|
99
69
|
- OpenCode: update the installed npm plugin through OpenCode, then restart OpenCode.
|
|
@@ -112,7 +82,7 @@ open-plan-annotator doctor
|
|
|
112
82
|
|--------|----------|-------------|
|
|
113
83
|
| Delete | `d` | Strikethrough selected text |
|
|
114
84
|
| Replace | `r` | Replace selected text with new content |
|
|
115
|
-
| Insert | `
|
|
85
|
+
| Insert | `s` | Insert text after the selection |
|
|
116
86
|
| Comment | `c` | Attach a comment to selected text |
|
|
117
87
|
| Approve | `Cmd+Enter` | Approve the plan and proceed |
|
|
118
88
|
| 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/pi-extension",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Pi extension for open-plan-annotator that adds plan review tools and commands",
|
|
6
6
|
"author": "ndom91",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"README.md"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"open-plan-annotator": "1.5.
|
|
32
|
+
"open-plan-annotator": "1.5.3"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"@mariozechner/pi-coding-agent": "*",
|