@plannotator/pi-extension 0.14.0 → 0.14.1
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/feedback-templates.ts +2 -2
- package/package.json +1 -1
- package/plannotator.html +4 -4
- package/review-editor.html +22 -22
package/feedback-templates.ts
CHANGED
|
@@ -15,8 +15,8 @@ export const planDenyFeedback = (
|
|
|
15
15
|
options?: PlanDenyFeedbackOptions,
|
|
16
16
|
): string => {
|
|
17
17
|
const planFileRule = options?.planFilePath
|
|
18
|
-
? `-
|
|
18
|
+
? `- Your plan is saved at: ${options.planFilePath}\n You can edit this file to make targeted changes, then pass its path to ${toolName}.\n`
|
|
19
19
|
: "";
|
|
20
20
|
|
|
21
|
-
return `YOUR PLAN WAS NOT APPROVED.\n\nYou MUST revise the plan to address ALL of the feedback below before calling ${toolName} again.\n\nRules:\n${planFileRule}-
|
|
21
|
+
return `YOUR PLAN WAS NOT APPROVED.\n\nYou MUST revise the plan to address ALL of the feedback below before calling ${toolName} again.\n\nRules:\n${planFileRule}- Do not resubmit the same plan unchanged.\n- Do NOT change the plan title (first # heading) unless the user explicitly asks you to.\n\n${feedback || "Plan changes requested"}`;
|
|
22
22
|
};
|
package/package.json
CHANGED