open-plan-annotator 1.8.1 → 1.8.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.
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
},
|
|
6
6
|
"metadata": {
|
|
7
7
|
"description": "Interactive plan annotation plugin for Claude Code",
|
|
8
|
-
"version": "1.8.
|
|
8
|
+
"version": "1.8.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.8.
|
|
15
|
+
"version": "1.8.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.8.
|
|
4
|
+
"version": "1.8.2",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "ndom91"
|
|
7
7
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-plan-annotator",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.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.8.
|
|
86
|
-
"@open-plan-annotator/runtime-darwin-x64": "1.8.
|
|
87
|
-
"@open-plan-annotator/runtime-linux-arm64": "1.8.
|
|
88
|
-
"@open-plan-annotator/runtime-linux-x64": "1.8.
|
|
85
|
+
"@open-plan-annotator/runtime-darwin-arm64": "1.8.2",
|
|
86
|
+
"@open-plan-annotator/runtime-darwin-x64": "1.8.2",
|
|
87
|
+
"@open-plan-annotator/runtime-linux-arm64": "1.8.2",
|
|
88
|
+
"@open-plan-annotator/runtime-linux-x64": "1.8.2"
|
|
89
89
|
},
|
|
90
90
|
"overrides": {
|
|
91
91
|
"uuid": "^14.0.0"
|
|
@@ -25,6 +25,8 @@ Workflow:
|
|
|
25
25
|
• Assistant-initiated (you decided a plan is needed): call EnterPlanMode → draft → ExitPlanMode.
|
|
26
26
|
• User-initiated ("draft a plan", "/plan", etc.): invoke /annotate-plan <task>.
|
|
27
27
|
|
|
28
|
+
After approval: the approved ExitPlanMode response is the user's go-ahead to implement. Do not ask for another confirmation, do not say "ready when you are", and do not wait. Immediately continue with the approved plan unless the approval response explicitly requests changes or says not to proceed.
|
|
29
|
+
|
|
28
30
|
Full trigger list and self-check rules in skill plan-review-triggers.`;
|
|
29
31
|
|
|
30
32
|
process.stdout.write(
|
|
@@ -92,3 +92,9 @@ Include in every plan:
|
|
|
92
92
|
**User-initiated:** invoke `/annotate-plan <task>`. Same flow under the hood.
|
|
93
93
|
|
|
94
94
|
The slash command is for user invocation. When you decide a plan is needed without the user invoking it, prefer `EnterPlanMode` directly. Both paths fire the same annotator hook.
|
|
95
|
+
|
|
96
|
+
## After Approval
|
|
97
|
+
|
|
98
|
+
Plan approval is the user's go-ahead to implement. Once `ExitPlanMode` returns an approved decision, immediately start executing the approved plan.
|
|
99
|
+
|
|
100
|
+
Do not ask for another confirmation, do not say "ready when you are", and do not wait for a separate go-ahead unless the approval response explicitly requests changes or says not to proceed.
|