diff --git a/src/core/Cline.ts b/src/core/Cline.ts
index 84ceece..c2d4d60 100644
--- a/src/core/Cline.ts
+++ b/src/core/Cline.ts
@@ -1562,7 +1562,7 @@ export class Cline {
"mistake_limit_reached",
this.api.getModel().id.includes("claude")
? `This may indicate a failure in his thought process or inability to use a tool properly, which can be mitigated with some user guidance (e.g. "Try breaking down the task into smaller steps").`
- : "Claude Dev uses complex prompts and iterative task execution that may be challenging for less capable models. For best results, it's recommended to use Claude 3.5 Sonnet for its advanced agentic coding capabilities."
+ : "Cline uses complex prompts and iterative task execution that may be challenging for less capable models. For best results, it's recommended to use Claude 3.5 Sonnet for its advanced agentic coding capabilities."
)
if (response === "messageResponse") {
userContent.push(
diff --git a/src/core/webview/ClineProvider.ts b/src/core/webview/ClineProvider.ts
index 3ec18b5..9c5c2e9 100644
--- a/src/core/webview/ClineProvider.ts
+++ b/src/core/webview/ClineProvider.ts
@@ -303,7 +303,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
-
Claude Dev
+ Cline
@@ -470,7 +470,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
timeout: 3_000,
})
await this.initClineWithHistoryItem(historyItem) // clears task again, so we need to abortTask manually above
- // await this.postStateToWebview() // new claude dev instance will post state when it's ready. having this here sent an empty messages array to webview leading to virtuoso having to reload the entire list
+ // await this.postStateToWebview() // new Cline instance will post state when it's ready. having this here sent an empty messages array to webview leading to virtuoso having to reload the entire list
}
break
diff --git a/src/extension.ts b/src/extension.ts
index 94e8d6b..b7c8cbe 100644
--- a/src/extension.ts
+++ b/src/extension.ts
@@ -24,10 +24,10 @@ export function activate(context: vscode.ExtensionContext) {
// This line of code will only be executed once when your extension is activated
//console.log('Congratulations, your extension "claude-dev" is now active!')
- outputChannel = vscode.window.createOutputChannel("Claude Dev")
+ outputChannel = vscode.window.createOutputChannel("Cline")
context.subscriptions.push(outputChannel)
- outputChannel.appendLine("Claude Dev extension activated")
+ outputChannel.appendLine("Cline extension activated")
// The command has been defined in the package.json file
// Now provide the implementation of the command with registerCommand
@@ -71,7 +71,7 @@ export function activate(context: vscode.ExtensionContext) {
}
const targetCol = hasVisibleEditors ? Math.max(lastCol + 1, 1) : vscode.ViewColumn.Two
- const panel = vscode.window.createWebviewPanel(ClineProvider.tabPanelId, "Claude Dev", targetCol, {
+ const panel = vscode.window.createWebviewPanel(ClineProvider.tabPanelId, "Cline", targetCol, {
enableScripts: true,
retainContextWhenHidden: true,
localResourceRoots: [context.extensionUri],
@@ -149,5 +149,5 @@ export function activate(context: vscode.ExtensionContext) {
// This method is called when your extension is deactivated
export function deactivate() {
- outputChannel.appendLine("Claude Dev extension deactivated")
+ outputChannel.appendLine("Cline extension deactivated")
}
diff --git a/src/integrations/terminal/TerminalRegistry.ts b/src/integrations/terminal/TerminalRegistry.ts
index feed37f..ac0ed30 100644
--- a/src/integrations/terminal/TerminalRegistry.ts
+++ b/src/integrations/terminal/TerminalRegistry.ts
@@ -16,7 +16,7 @@ export class TerminalRegistry {
static createTerminal(cwd?: string | vscode.Uri | undefined): TerminalInfo {
const terminal = vscode.window.createTerminal({
cwd,
- name: "Claude Dev",
+ name: "Cline",
iconPath: new vscode.ThemeIcon("robot"),
})
const newInfo: TerminalInfo = {
diff --git a/webview-ui/src/components/settings/ApiOptions.tsx b/webview-ui/src/components/settings/ApiOptions.tsx
index 9674403..1d746e2 100644
--- a/webview-ui/src/components/settings/ApiOptions.tsx
+++ b/webview-ui/src/components/settings/ApiOptions.tsx
@@ -443,8 +443,8 @@ const ApiOptions = ({ showModelOptions, apiErrorMessage, modelIdErrorMessage }:
color: "var(--vscode-descriptionForeground)",
}}>
- (Note: Claude Dev uses complex prompts and works
- best with Claude models. Less capable models may not work as expected.)
+ (Note: Cline uses complex prompts and works best
+ with Claude models. Less capable models may not work as expected.)
@@ -507,8 +507,8 @@ const ApiOptions = ({ showModelOptions, apiErrorMessage, modelIdErrorMessage }:
quickstart guide.
- (Note: Claude Dev uses complex prompts and works
- best with Claude models. Less capable models may not work as expected.)
+ (Note: Cline uses complex prompts and works best
+ with Claude models. Less capable models may not work as expected.)
diff --git a/webview-ui/src/components/welcome/WelcomeView.tsx b/webview-ui/src/components/welcome/WelcomeView.tsx
index 99e5cd6..1a7c362 100644
--- a/webview-ui/src/components/welcome/WelcomeView.tsx
+++ b/webview-ui/src/components/welcome/WelcomeView.tsx
@@ -22,7 +22,7 @@ const WelcomeView = () => {
return (
-
Hi, I'm Claude Dev
+
Hi, I'm Cline
I can do all kinds of tasks thanks to the latest breakthroughs in{" "}