Skip to content

Commit e4b7907

Browse files
author
mayong
committed
update files.
1 parent 0a20426 commit e4b7907

File tree

10 files changed

+138
-107
lines changed

10 files changed

+138
-107
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Claude Code Easy Suite
22

3-
[📖 使用说明书](UserManual_CN.md) | [English](README_EN.md) | [中文](README.md)
3+
[📖 使用说明书](UserManual_CN.md) | [❓ FAQ](faq.md) | [English](README_EN.md) | [中文](README.md)
44

55
Claude Code Easy Suite 是一款基于 Wails + Go + React 开发的桌面 GUI 工具,旨在为 Anthropic 的命令行工具 `claude-code` 提供便捷的配置管理、模型切换以及一键启动功能。
66

README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Claude Code Easy Suite
22

3-
[📖 User Manual](UserManual_EN.md) | [English](README_EN.md) | [中文](README.md)
3+
[📖 User Manual](UserManual_EN.md) | [❓ FAQ](faq_en.md) | [English](README_EN.md) | [中文](README.md)
44

55
Claude Code Easy Suite is a desktop GUI tool built with Wails, Go, and React. It is designed to provide convenient configuration management, model switching, and one-click launch capabilities for Anthropic's command-line tool, `claude-code`.
66

UserManual_CN.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Claude Code Easy Suite 使用说明书
22

3+
[❓ 常见问题 (FAQ)](faq.md)
4+
35
欢迎使用 **Claude Code Easy Suite**!本工具专为简化 Anthropic `claude-code` 命令行工具的配置、多项目管理与启动流程而设计。
46

57
以下是详细的操作指南:

UserManual_EN.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Claude Code Easy Suite User Manual
22

3-
Welcome to **Claude Code Easy Suite**! This tool is designed to simplify the configuration, multi-project management, and startup process for Anthropic's `claude-code` command-line tool.
3+
[❓ FAQ](faq_en.md)
4+
5+
Welcome to **Claude Code Easy Suite**! This tool is designed to simplify the configuration, multi-project management, and startup process for the Anthropic `claude-code` command-line tool.
46

57
Here is a detailed operation guide:
68

build_number

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
33
1+
38

faq.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# FAQ - 常见问题解答
2+
3+
## 1. 为什么系统托盘图标点击无反应?
4+
在较早版本中,如果后台操作(如文件读写)阻塞了主线程,可能会导致托盘图标暂时失去响应。当前版本已通过异步处理和线程锁定优化了此问题。如果仍遇到此类情况,请尝试重启程序。
5+
6+
## 2. 如何使用自定义模型 (Custom Model)?
7+
1. 点击“模型设置”。
8+
2. 选择“Custom”标签。
9+
3. 输入您的模型名称(例如 `claude-3-5-sonnet-20241022`)。
10+
4. 输入兼容 Anthropic 协议的 API 端点地址(Endpoint)。
11+
5. 输入 API Key 并保存。
12+
13+
## 3. 我的 API Key 无法工作?
14+
程序中预设的 GLM、Kimi、豆包、MiniMax 快捷选择**仅支持各厂商提供的 "Coding Plan" 专用 API Key**
15+
如果您使用的是通用型 API Key,请使用 **“Custom”** 模式进行配置,并手动输入对应的模型名称和 API 端点地址。
16+
17+
## 4. 配置文件保存在哪里?
18+
程序配置文件保存在您的用户主目录下,文件名为 `.claude_model_config.json`
19+
Claude Code 的原生设置保存在 `~/.claude/settings.json`
20+
21+
## 5. 如何更新 Claude Code?
22+
每次启动程序时,工具会自动检查 `@anthropic-ai/claude-code` 的版本。如果有新版本,它会自动为您运行 `npm install -g @anthropic-ai/claude-code`。您也可以在安装进度日志中查看具体的执行命令。
23+
24+
## 6. 环境检查失败怎么办?
25+
如果 Node.js 安装失败,请检查您的网络连接。在中国大陆地区,程序会自动尝试使用清华大学镜像源以加快下载速度。如果自动安装持续失败,建议手动从 [nodejs.org](https://nodejs.org/) 下载并安装 v22.14.0 或更高版本。
26+
27+
## 7. 为什么需要重启程序才能生效?
28+
通常情况下,环境变更(如安装 Node.js)后,程序会自动尝试刷新当前进程的环境变量。但在某些极端情况下,Windows 系统的环境变更可能需要重启应用才能彻底识别。
29+
30+
---
31+
*更多问题请访问 GitHub Issues:[RapidAI/cceasy/issues](https://github.com/RapidAI/cceasy/issues)*

faq_en.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# FAQ - Frequently Asked Questions
2+
3+
## 1. Why is the system tray icon unresponsive?
4+
In earlier versions, if background operations (such as file I/O) blocked the main thread, the tray icon might temporarily become unresponsive. The current version has optimized this issue through asynchronous processing and OS thread locking. If you still encounter this, please try restarting the program.
5+
6+
## 2. How to use a Custom Model?
7+
1. Click "Model Settings".
8+
2. Select the "Custom" tab.
9+
3. Enter your model name (e.g., `claude-3-5-sonnet-20241022`).
10+
4. Enter an API Endpoint compatible with the Anthropic protocol.
11+
5. Enter your API Key and save.
12+
13+
## 3. My API Key is not working?
14+
The preset shortcuts for GLM, Kimi, Doubao, and MiniMax in the application **only support the "Coding Plan" specific API Keys** provided by each vendor.
15+
If you are using a general-purpose API Key, please use the **"Custom"** mode and manually enter the corresponding model name and API endpoint.
16+
17+
## 4. Where is the configuration file saved?
18+
The application configuration is saved in your user home directory with the filename `.claude_model_config.json`.
19+
Claude Code's native settings are saved in `~/.claude/settings.json`.
20+
21+
## 5. How to update Claude Code?
22+
Each time the program starts, it automatically checks the version of `@anthropic-ai/claude-code`. If a new version is available, it will automatically run `npm install -g @anthropic-ai/claude-code` for you. You can see the specific execution commands in the installation progress logs.
23+
24+
## 6. What if the environment check fails?
25+
If Node.js installation fails, please check your internet connection. In mainland China, the program automatically attempts to use the Tsinghua University mirror to speed up downloads. If automatic installation continues to fail, it is recommended to manually download and install v22.14.0 or higher from [nodejs.org](https://nodejs.org/).
26+
27+
## 7. Why do I need to restart the app for changes to take effect?
28+
Normally, after environment changes (like installing Node.js), the program automatically tries to refresh the environment variables for the current process. However, in some extreme cases, Windows system environment changes may require an application restart to be fully recognized.
29+
30+
---
31+
*For more issues, please visit GitHub Issues: [RapidAI/cceasy/issues](https://github.com/RapidAI/cceasy/issues)*

frontend/src/App.css

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
:root {
2-
--primary-color: #3b82f6;
3-
--primary-light: #60a5fa;
4-
--primary-dark: #2563eb;
5-
--accent-bg: #eff6ff; /* Light blue tint for backgrounds */
6-
--bg-color: #f8faff; /* Very subtle blue-white for body */
2+
--primary-color: #fb923c; /* Orange 400 (Lighter than 500) */
3+
--primary-light: #fdba74; /* Orange 300 */
4+
--primary-dark: #f97316; /* Orange 500 */
5+
--accent-bg: #fffbf5; /* Even lighter orange tint */
6+
--bg-color: #fffdfa; /* Almost white with a hint of orange */
77
--surface-color: #ffffff;
88
--text-color: #374151;
99
--text-secondary: #6b7280;
10-
--border-color: #e2e8f0;
10+
--border-color: #ffedd5; /* Orange 100 */
1111
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
12-
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
12+
--shadow-md: 0 4px 6px -1px rgba(249, 115, 22, 0.08), 0 2px 4px -1px rgba(249, 115, 22, 0.04);
1313
}
1414

1515
html, body {

0 commit comments

Comments
 (0)