Skip to content

Commit a8971e1

Browse files
committed
chore(brand): rebrand remaining user-facing strings to Easy Code
- feishu group description, remote session status, help assistant welcome, CLI package description -> Easy Code - update SessionSummary/StatsDisplay snapshots (source text already Easy Code) - intentionally kept: brand-upgrade announcement, DEEPV.md MEMORY_SECTION_HEADER, legacy-data migration prompts, Gemini/OAuth identity
1 parent d323bad commit a8971e1

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

packages/cli/src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "easycode",
33
"version": "1.0.271",
4-
"description": "DeepV Code - AI-powered coding assistant with enhanced capabilities",
4+
"description": "Easy Code - AI-powered coding assistant with enhanced capabilities",
55
"repository": {
66
"type": "git",
77
"url": "git+https://github.com/google-gemini/gemini-cli.git"

packages/cli/src/remote/remoteSession.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export class RemoteSession {
144144
this.geminiChat = await this.geminiClient.getChat();
145145

146146
remoteLogger.info('RemoteSession', `会话初始化完成: ${this.sessionId}`);
147-
this.sendMessage(MessageFactory.createStatus('idle', 'DeepV Code 远程会话已就绪'));
147+
this.sendMessage(MessageFactory.createStatus('idle', 'Easy Code 远程会话已就绪'));
148148
} catch (error) {
149149
remoteLogger.error('RemoteSession', `会话初始化失败: ${this.sessionId}`, error);
150150
this.sendError(`会话初始化失败: ${error instanceof Error ? error.message : String(error)}`);

packages/cli/src/services/BuiltinCommandLoader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ import { workflowCommand } from '../ui/commands/workflowCommand.js';
6565

6666
/**
6767
* Loads the core, hard-coded slash commands that are an integral part
68-
* of the DeepV Code application.
68+
* of the Easy Code application.
6969
*/
7070
export class BuiltinCommandLoader implements ICommandLoader {
7171
constructor(private config: Config | null) {}

packages/cli/src/services/HelpSubagent.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@ Please answer the user's question directly.`;
146146
const lang = HelpSubagent.detectLanguage();
147147

148148
if (lang === 'zh') {
149-
return '💡 **DeepV Code AI 智能帮助助手**\n\n我可以回答任何关于 CLI 功能和命令的问题!请问你需要什么帮助?\n\n_提示:按 Esc 键退出 • 此功能会消耗 token • 如只需查看命令列表,请使用 /help_';
149+
return '💡 **Easy Code AI 智能帮助助手**\n\n我可以回答任何关于 CLI 功能和命令的问题!请问你需要什么帮助?\n\n_提示:按 Esc 键退出 • 此功能会消耗 token • 如只需查看命令列表,请使用 /help_';
150150
} else {
151-
return '💡 **DeepV Code AI Help Assistant**\n\nI can answer any questions about CLI features and commands! What help do you need?\n\n_Tip: Press Esc to exit • Uses tokens • For command list, use /help instead_';
151+
return '💡 **Easy Code AI Help Assistant**\n\nI can answer any questions about CLI features and commands! What help do you need?\n\n_Tip: Press Esc to exit • Uses tokens • For command list, use /help instead_';
152152
}
153153
}
154154

packages/cli/src/services/feishu/gateway.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1742,7 +1742,7 @@ export class FeishuGateway {
17421742

17431743
const body = {
17441744
name,
1745-
description: 'DeepV Code 自动创建的项目专属协作群',
1745+
description: 'Easy Code 自动创建的项目专属协作群',
17461746
user_id_list: [userOpenId],
17471747
};
17481748

packages/cli/src/ui/components/__snapshots__/SessionSummaryDisplay.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ exports[`<SessionSummaryDisplay /> > renders the summary display with English ti
55
66
┌──────────────────────────────────────────────────────────────────────────────────────────────────┐
77
│ │
8-
│ Thanks for using DeepV Code! Run dvcode -c to continue.
8+
│ Thanks for using Easy Code! Run easycode -c to continue. │
99
│ │
1010
│ Performance │
1111
│ Wall Time: 1h 23m 45s │

packages/cli/src/ui/components/__snapshots__/StatsDisplay.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ exports[`<StatsDisplay /> > Conditional Rendering Tests > hides User Agreement w
9898
exports[`<StatsDisplay /> > Title Rendering > renders the custom title when a title prop is provided 1`] = `
9999
"┌──────────────────────────────────────────────────────────────────────────────────────────────────┐
100100
│ │
101-
│ Thanks for using DeepV Code! Run dvcode -c to continue.
101+
│ Thanks for using Easy Code! Run easycode -c to continue. │
102102
│ │
103103
│ Performance │
104104
│ Wall Time: 1s │

0 commit comments

Comments
 (0)