diff --git a/src/core/Cline.ts b/src/core/Cline.ts
index ef6d613c00..80e218ee68 100644
--- a/src/core/Cline.ts
+++ b/src/core/Cline.ts
@@ -3289,13 +3289,11 @@ export class Cline {
details += "\n\n# Current Mode"
if (this.chatSettings.mode === "plan") {
details += "\nPLAN MODE"
- details +=
- "\nIn this mode you should focus on information gathering and architecting a solution. If you haven't done so already, it's a good idea to start by reading files to get context and then asking questions."
+ details += "\nIn this mode you should focus on information gathering, asking questions, and architecting a solution."
details +=
'\n(Remember: You now have access to the plan_mode_response tool, which allows you to engage in a more conversational back and forth with the user rather than jumping into executing the task. If it seems the user wants you to use tools only available in ACT MODE, you should ask the user to "toggle to Act mode" - they will have to manually do this themselves with the Plan/Act toggle button below. You do not have the ability to switch to ACT MODE yourself, and must wait for the user to do it themselves once they are satisfied with the plan.)'
} else {
details += "\nACT MODE"
- details += "\n(Remember: You cannot use the plan_mode_response tool.)"
}
return `\n${details.trim()}\n`
diff --git a/src/core/webview/ClineProvider.ts b/src/core/webview/ClineProvider.ts
index f3d735cc19..81072c43b7 100644
--- a/src/core/webview/ClineProvider.ts
+++ b/src/core/webview/ClineProvider.ts
@@ -85,7 +85,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
private cline?: Cline
private workspaceTracker?: WorkspaceTracker
mcpHub?: McpHub
- private latestAnnouncementId = "jan-20a-2025" // update to some unique identifier when we add a new announcement
+ private latestAnnouncementId = "jan-20-2025" // update to some unique identifier when we add a new announcement
constructor(
readonly context: vscode.ExtensionContext,
diff --git a/webview-ui/src/components/chat/Announcement.tsx b/webview-ui/src/components/chat/Announcement.tsx
index 20ab2ee952..a9c75ff02f 100644
--- a/webview-ui/src/components/chat/Announcement.tsx
+++ b/webview-ui/src/components/chat/Announcement.tsx
@@ -32,7 +32,10 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
-
Plan/Act mode toggle: Plan mode lets Cline focus on gathering information, asking clarifying questions,
- brainstorm ideas, and architect a solution. Switch back to Act mode to let him execute the plan!
+ brainstorm ideas, and architect a solution. Switch back to Act mode to let him execute the plan!{" "}
+
+ See a demo here.
+
-
Quick API/model switching with a new popup menu under the chat field