Skip to content

Commit 4fd0ff4

Browse files
committed
tighten readme
1 parent c520477 commit 4fd0ff4

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Plannotator lets you privately share plans, annotations, and feedback with colle
4848
**Large plans** use a short link service with **end-to-end encryption**. Your plan is encrypted with AES-256-GCM in your browser before upload. The server stores only ciphertext it cannot read. The decryption key lives only in the URL you share. Pastes auto-delete after 7 days.
4949

5050
- Zero-knowledge storage, similar to [PrivateBin](https://privatebin.info/)
51-
- Fully open source and self-hostable ([see docs](https://plannotator.ai/docs/guides/sharing-and-collaboration/))
51+
- Fully open source and **self-hostable** ([see docs](https://plannotator.ai/docs/guides/sharing-and-collaboration/))
5252

5353
## Install
5454

@@ -163,6 +163,8 @@ When your AI agent finishes planning, Plannotator:
163163
3. **Approve** → Agent proceeds with implementation
164164
4. **Request changes** → Your annotations are sent back as structured feedback
165165

166+
(Similar flow for code review, except you can also comment on specific lines of code diffs)
167+
166168
---
167169

168170
## License

apps/pi-extension/feedback-templates.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ export const planDenyFeedback = (
1515
options?: PlanDenyFeedbackOptions,
1616
): string => {
1717
const planFileRule = options?.planFilePath
18-
? `- Read ${options.planFilePath} to see the current plan before editing it.\n`
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`
1919
: "";
2020

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}- Use the Edit tool to make targeted changes to the plan — 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"}`;
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"}`;
2222
};

0 commit comments

Comments
 (0)