@bitseek/hermes-webui 0.1.0-beta.0 → 0.1.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/vendor/agent-frontend-shell/.bitseek-source.json +2 -2
- package/vendor/agent-frontend-shell/CHANGELOG.md +178 -1
- package/vendor/agent-frontend-shell/CONTRIBUTORS.md +5 -5
- package/vendor/agent-frontend-shell/api/agent_health.py +134 -0
- package/vendor/agent-frontend-shell/api/config.py +145 -104
- package/vendor/agent-frontend-shell/api/gateway_chat.py +56 -12
- package/vendor/agent-frontend-shell/api/helpers.py +4 -2
- package/vendor/agent-frontend-shell/api/models.py +202 -20
- package/vendor/agent-frontend-shell/api/paths.py +77 -0
- package/vendor/agent-frontend-shell/api/plugins.py +185 -0
- package/vendor/agent-frontend-shell/api/profiles.py +95 -16
- package/vendor/agent-frontend-shell/api/routes.py +831 -30
- package/vendor/agent-frontend-shell/api/run_journal.py +1 -0
- package/vendor/agent-frontend-shell/api/state_sync.py +5 -4
- package/vendor/agent-frontend-shell/api/streaming.py +211 -56
- package/vendor/agent-frontend-shell/api/todo_state.py +122 -0
- package/vendor/agent-frontend-shell/api/updates.py +30 -3
- package/vendor/agent-frontend-shell/api/upload.py +251 -18
- package/vendor/agent-frontend-shell/api/workspace.py +323 -65
- package/vendor/agent-frontend-shell/bitseek_docs/BitSeek_Claw_Operation_Manual_EN.docx +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/BitSeek_Claw_Operation_Manual_ZH.docx +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/00-Installation.md +174 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/01-Overview.md +128 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/02-Page-Operations.md +461 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/README.md +61 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/ai-colleagues.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/chat-area.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/kanban.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/main-page.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/memory-notes.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/memory-overview.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/memory-profile.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/memory-soul.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/memory.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/navigation-bar.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-appearance.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-conversation.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-overview.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-plugins.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-preferences.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-providers.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-system.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/sidebar.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/skills.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/tasks.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/en/images/workspace-panel.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/md_to_docx.py +351 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/00-/345/256/211/350/243/205/345/220/257/345/212/250.md +174 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/01-/346/225/264/344/275/223/346/246/202/350/247/210.md +128 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/02-/351/241/265/351/235/242/346/223/215/344/275/234.md +463 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/README.md +61 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/ai-colleagues.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/chat-area.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/kanban.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/main-page.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/memory-notes.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/memory-overview.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/memory-profile.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/memory-soul.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/memory.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/navigation-bar.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-appearance.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-conversation.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-overview.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-plugins.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-preferences.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-providers.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-system.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/sidebar.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/skills.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/tasks.png +0 -0
- package/vendor/agent-frontend-shell/bitseek_docs/zh/images/workspace-panel.png +0 -0
- package/vendor/agent-frontend-shell/build-release.sh +62 -0
- package/vendor/agent-frontend-shell/ctl.sh +1 -0
- package/vendor/agent-frontend-shell/docker-compose.local.yml +33 -0
- package/vendor/agent-frontend-shell/docker-compose.yml +8 -0
- package/vendor/agent-frontend-shell/docker_init.bash +1 -0
- package/vendor/agent-frontend-shell/docs/rfcs/hermes-run-adapter-contract.md +74 -15
- package/vendor/agent-frontend-shell/extensions/common/index.css +6 -0
- package/vendor/agent-frontend-shell/extensions/manifest.json +6 -0
- package/vendor/agent-frontend-shell/extensions/pages/ai-teammates/page.js +60 -14
- package/vendor/agent-frontend-shell/readme-simple.md +103 -0
- package/vendor/agent-frontend-shell/requirements.txt +5 -0
- package/vendor/agent-frontend-shell/server.py +7 -0
- package/vendor/agent-frontend-shell/static/boot.js +53 -1
- package/vendor/agent-frontend-shell/static/commands.js +20 -10
- package/vendor/agent-frontend-shell/static/i18n.js +1142 -1016
- package/vendor/agent-frontend-shell/static/index.html +13 -3
- package/vendor/agent-frontend-shell/static/messages.js +48 -3
- package/vendor/agent-frontend-shell/static/panels.js +199 -30
- package/vendor/agent-frontend-shell/static/sessions.js +249 -39
- package/vendor/agent-frontend-shell/static/style.css +46 -2
- package/vendor/agent-frontend-shell/static/ui.js +323 -79
- package/vendor/agent-frontend-shell/static/workspace.js +185 -7
- package/vendor/agent-frontend-shell/README-CUSTOM.md +0 -76
- package/vendor/agent-frontend-shell/docker-compose.custom.yml +0 -26
|
@@ -0,0 +1,463 @@
|
|
|
1
|
+
# BitSeek Claw 页面操作指南
|
|
2
|
+
|
|
3
|
+
本指南详细介绍 BitSeek Claw 各个功能模块的具体操作方法。
|
|
4
|
+
|
|
5
|
+
## 目录
|
|
6
|
+
|
|
7
|
+
1. [聊天功能](#聊天功能)
|
|
8
|
+
2. [AI 同事](#ai-同事)
|
|
9
|
+
3. [任务管理](#任务管理)
|
|
10
|
+
4. [看板视图](#看板视图)
|
|
11
|
+
5. [技能管理](#技能管理)
|
|
12
|
+
6. [记忆管理](#记忆管理)
|
|
13
|
+
7. [设置配置](#设置配置)
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## 聊天功能
|
|
18
|
+
|
|
19
|
+

|
|
20
|
+
|
|
21
|
+
聊天是 BitSeek Claw 的核心功能,用于与 AI 进行对话交流。
|
|
22
|
+
|
|
23
|
+
### 发送消息
|
|
24
|
+
|
|
25
|
+
1. **输入消息**
|
|
26
|
+
- 在底部消息输入框中输入文字
|
|
27
|
+
- 支持多行输入(按 `Shift + Enter` 换行)
|
|
28
|
+
|
|
29
|
+
2. **发送消息**
|
|
30
|
+
- 点击发送按钮 📤
|
|
31
|
+
- 或按 `Enter` 键发送
|
|
32
|
+
- 或按 `Ctrl/Cmd + Enter` 发送
|
|
33
|
+
|
|
34
|
+
3. **快捷操作**
|
|
35
|
+
- 📎 **选择文件** - 附加文件到消息
|
|
36
|
+
- 🎤 **听写** - 语音输入
|
|
37
|
+
- ⚡ **快速命令** - 插入预设命令
|
|
38
|
+
|
|
39
|
+
### 会话管理
|
|
40
|
+
|
|
41
|
+
#### 新建对话
|
|
42
|
+
1. 点击左侧边栏的 **"新建对话"** 按钮
|
|
43
|
+
|
|
44
|
+
#### 切换对话
|
|
45
|
+
1. 在左侧边栏的会话列表中点击要切换的对话
|
|
46
|
+
2. 会话按时间分组显示(今天、昨天、上周等)
|
|
47
|
+
|
|
48
|
+
#### 筛选对话
|
|
49
|
+
1. 使用搜索框输入关键词筛选
|
|
50
|
+
2. 或使用标签筛选
|
|
51
|
+
|
|
52
|
+
#### 对话操作
|
|
53
|
+
- **重命名** - 右键对话 → 重命名
|
|
54
|
+
- **删除** - 右键对话 → 删除
|
|
55
|
+
- **导出** - 右键对话 → 导出为 Markdown
|
|
56
|
+
|
|
57
|
+
### 消息操作
|
|
58
|
+
|
|
59
|
+
#### 编辑消息
|
|
60
|
+
1. 将鼠标悬停在消息上
|
|
61
|
+
2. 点击编辑图标 ✏️
|
|
62
|
+
3. 修改内容后保存
|
|
63
|
+
|
|
64
|
+
#### 复制消息
|
|
65
|
+
1. 将鼠标悬停在消息上
|
|
66
|
+
2. 点击复制图标 📋
|
|
67
|
+
3. 消息将复制到剪贴板
|
|
68
|
+
|
|
69
|
+
#### 引用消息
|
|
70
|
+
1. 将鼠标悬停在消息上
|
|
71
|
+
2. 点击引用图标 💬
|
|
72
|
+
3. 引用内容将添加到输入框
|
|
73
|
+
|
|
74
|
+
### 上下文信息
|
|
75
|
+
|
|
76
|
+
底部状态栏显示当前会话的上下文:
|
|
77
|
+
- **模型** - 当前使用的 AI 模型
|
|
78
|
+
- **配置文件** - 当前用户配置
|
|
79
|
+
- **工作区** - 当前工作目录
|
|
80
|
+
- **推理强度** - AI 推理强度设置
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## AI 同事
|
|
85
|
+
|
|
86
|
+

|
|
87
|
+
|
|
88
|
+
AI 同事功能允许管理和交互多个 AI 代理。
|
|
89
|
+
|
|
90
|
+
### 查看 AI 同事列表
|
|
91
|
+
1. 点击导航栏的 **"AI 同事"** 按钮
|
|
92
|
+
2. 查看所有可用的 AI 代理
|
|
93
|
+
|
|
94
|
+
### 与 AI 同事对话
|
|
95
|
+
1. 在列表中选择一个 AI 同事
|
|
96
|
+
2. 点击进入对话界面
|
|
97
|
+
3. 输入消息开始交流
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
## 任务管理
|
|
102
|
+
|
|
103
|
+

|
|
104
|
+
|
|
105
|
+
任务管理功能帮助您跟踪和管理各种任务。
|
|
106
|
+
|
|
107
|
+
### 查看任务
|
|
108
|
+
1. 点击导航栏的 **"任务"** 按钮
|
|
109
|
+
2. 查看所有任务列表
|
|
110
|
+
3. 按状态、优先级、负责人筛选
|
|
111
|
+
|
|
112
|
+
### 创建任务
|
|
113
|
+
1. 点击 **"新建任务"** 按钮
|
|
114
|
+
2. 填写任务信息:
|
|
115
|
+
- 标题
|
|
116
|
+
- 描述
|
|
117
|
+
- 截止日期
|
|
118
|
+
- 优先级
|
|
119
|
+
- 负责人
|
|
120
|
+
3. 点击保存
|
|
121
|
+
|
|
122
|
+
### 任务操作
|
|
123
|
+
- **编辑任务** - 点击任务标题进入编辑
|
|
124
|
+
- **标记完成** - 点击完成按钮
|
|
125
|
+
- **删除任务** - 选择任务后删除
|
|
126
|
+
- **添加评论** - 在任务中添加评论
|
|
127
|
+
|
|
128
|
+
### 任务视图
|
|
129
|
+
- **列表视图** - 传统列表显示
|
|
130
|
+
- **看板视图** - 看板式显示
|
|
131
|
+
- **时间线视图** - 甘特图显示
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
## 看板视图
|
|
136
|
+
|
|
137
|
+

|
|
138
|
+
|
|
139
|
+
看板视图提供直观的任务管理界面。
|
|
140
|
+
|
|
141
|
+
### 看板列
|
|
142
|
+
看板通常包含以下列:
|
|
143
|
+
- **待办** - 待处理的任务
|
|
144
|
+
- **进行中** - 正在进行的任务
|
|
145
|
+
- **已完成** - 已完成的任务
|
|
146
|
+
- **已归档** - 已归档的任务
|
|
147
|
+
|
|
148
|
+
### 拖拽任务
|
|
149
|
+
1. 在看板列中找到任务卡片
|
|
150
|
+
2. 按住鼠标左键拖动
|
|
151
|
+
3. 放到目标列中释放
|
|
152
|
+
|
|
153
|
+
### 管理看板
|
|
154
|
+
- **添加列** - 点击添加列按钮
|
|
155
|
+
- **重命名列** - 双击列标题
|
|
156
|
+
- **删除列** - 右键列 → 删除
|
|
157
|
+
- **调整顺序** - 拖动列标题调整顺序
|
|
158
|
+
|
|
159
|
+
### 卡片操作
|
|
160
|
+
- **查看详情** - 点击卡片查看详细信息
|
|
161
|
+
- **快速编辑** - 双击卡片快速编辑
|
|
162
|
+
- **添加成员** - 将成员添加到任务
|
|
163
|
+
- **设置标签** - 添加颜色标签
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## 技能管理
|
|
168
|
+
|
|
169
|
+

|
|
170
|
+
|
|
171
|
+
技能管理功能管理 AI 可用的技能库。
|
|
172
|
+
|
|
173
|
+
### 查看技能列表
|
|
174
|
+
1. 点击导航栏的 **"技能"** 按钮
|
|
175
|
+
2. 查看所有可用技能
|
|
176
|
+
3. 按类别、状态筛选
|
|
177
|
+
|
|
178
|
+
### 技能分类
|
|
179
|
+
- **系统技能** - 内置的核心技能
|
|
180
|
+
- **自定义技能** - 用户创建的技能
|
|
181
|
+
- **社区技能** - 从社区获取的技能
|
|
182
|
+
|
|
183
|
+
### 使用技能
|
|
184
|
+
1. 在聊天中输入技能命令
|
|
185
|
+
2. 或通过技能面板选择
|
|
186
|
+
3. AI 将执行相应技能
|
|
187
|
+
|
|
188
|
+
### 管理技能
|
|
189
|
+
- **启用/禁用** - 控制技能是否可用
|
|
190
|
+
- **配置参数** - 修改技能设置
|
|
191
|
+
- **删除技能** - 移除不需要的技能
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
## 记忆管理
|
|
196
|
+
|
|
197
|
+

|
|
198
|
+
|
|
199
|
+
记忆管理功能管理 AI 的记忆系统。
|
|
200
|
+
|
|
201
|
+
### 记忆子菜单
|
|
202
|
+
|
|
203
|
+
记忆页面提供以下子菜单选项:
|
|
204
|
+
|
|
205
|
+
#### 1. 我的备注
|
|
206
|
+
|
|
207
|
+

|
|
208
|
+
|
|
209
|
+
- **功能**:管理个人笔记和备忘
|
|
210
|
+
- **操作**:
|
|
211
|
+
- 点击 **"我的备注"** 进入笔记管理
|
|
212
|
+
- 点击 **"编辑"** 按钮修改当前笔记
|
|
213
|
+
- 查看笔记的最后修改时间
|
|
214
|
+
- **使用场景**:
|
|
215
|
+
- 记录重要信息和想法
|
|
216
|
+
- 保存待办事项
|
|
217
|
+
- 记录学习心得
|
|
218
|
+
|
|
219
|
+
#### 2. 用户画像
|
|
220
|
+
|
|
221
|
+

|
|
222
|
+
|
|
223
|
+
- **功能**:管理 AI 对用户的了解
|
|
224
|
+
- **内容**:
|
|
225
|
+
- 用户偏好设置
|
|
226
|
+
- 工作习惯
|
|
227
|
+
- 沟通风格
|
|
228
|
+
- 技术栈信息
|
|
229
|
+
- **操作**:
|
|
230
|
+
- 查看 AI 已学习的用户特征
|
|
231
|
+
- 手动添加或修改用户信息
|
|
232
|
+
- 删除不准确的用户画像
|
|
233
|
+
|
|
234
|
+
#### 3. 智能体灵魂
|
|
235
|
+
|
|
236
|
+

|
|
237
|
+
|
|
238
|
+
- **功能**:定义 AI 的个性和行为模式
|
|
239
|
+
- **配置项**:
|
|
240
|
+
- **性格特征**:定义 AI 的沟通风格
|
|
241
|
+
- **专业知识**:指定 AI 的专业领域
|
|
242
|
+
- **行为准则**:设置 AI 的行为边界
|
|
243
|
+
- **回复风格**:调整 AI 的回复方式
|
|
244
|
+
- **使用场景**:
|
|
245
|
+
- 定制个性化 AI 助手
|
|
246
|
+
- 适应不同工作场景
|
|
247
|
+
- 优化交互体验
|
|
248
|
+
|
|
249
|
+
### 记忆类型
|
|
250
|
+
- **用户记忆** - 关于用户的偏好和习惯
|
|
251
|
+
- **会话记忆** - 当前会话的上下文
|
|
252
|
+
- **仓库记忆** - 代码库相关记忆
|
|
253
|
+
|
|
254
|
+
### 查看记忆
|
|
255
|
+
1. 点击导航栏的 **"记忆"** 按钮
|
|
256
|
+
2. 浏览不同类别的记忆
|
|
257
|
+
3. 搜索特定记忆内容
|
|
258
|
+
|
|
259
|
+
### 管理记忆
|
|
260
|
+
- **添加记忆** - 手动添加新记忆
|
|
261
|
+
- **编辑记忆** - 修改现有记忆
|
|
262
|
+
- **删除记忆** - 删除不需要的记忆
|
|
263
|
+
- **导出记忆** - 导出记忆为文件
|
|
264
|
+
|
|
265
|
+
### 记忆搜索
|
|
266
|
+
1. 使用搜索框输入关键词
|
|
267
|
+
2. 按类别筛选记忆
|
|
268
|
+
3. 按时间排序记忆
|
|
269
|
+
|
|
270
|
+
---
|
|
271
|
+
|
|
272
|
+
## 设置配置
|
|
273
|
+
|
|
274
|
+

|
|
275
|
+
|
|
276
|
+
设置功能配置 BitSeek Claw 的各种选项。
|
|
277
|
+
|
|
278
|
+
### 设置子菜单
|
|
279
|
+
|
|
280
|
+
设置页面提供以下子菜单选项:
|
|
281
|
+
|
|
282
|
+
#### 1. 对话
|
|
283
|
+
|
|
284
|
+

|
|
285
|
+
|
|
286
|
+
- **功能**:管理当前对话的设置和操作
|
|
287
|
+
- **操作选项**:
|
|
288
|
+
- **记录**:将对话导出为 Markdown 文件
|
|
289
|
+
- **JSON**:将对话完整导出为 JSON 格式
|
|
290
|
+
- **导入**:从 JSON 文件导入对话历史
|
|
291
|
+
- **清空**:清空当前对话中的所有消息
|
|
292
|
+
- **使用场景**:
|
|
293
|
+
- 备份重要对话
|
|
294
|
+
- 在不同设备间同步对话
|
|
295
|
+
- 清理不需要的对话记录
|
|
296
|
+
|
|
297
|
+
#### 2. 外观
|
|
298
|
+
|
|
299
|
+

|
|
300
|
+
|
|
301
|
+
- **功能**:自定义界面外观和主题
|
|
302
|
+
- **配置项**:
|
|
303
|
+
- **主题选择**:
|
|
304
|
+
- 深色主题(默认)
|
|
305
|
+
- 浅色主题
|
|
306
|
+
- 跟随系统
|
|
307
|
+
- **字体设置**:
|
|
308
|
+
- 字体大小调整
|
|
309
|
+
- 字体样式选择
|
|
310
|
+
- **布局配置**:
|
|
311
|
+
- 侧边栏显示/隐藏
|
|
312
|
+
- 面板大小调整
|
|
313
|
+
- 动画效果开关
|
|
314
|
+
- **使用场景**:
|
|
315
|
+
- 适应不同光线环境
|
|
316
|
+
- 个性化界面风格
|
|
317
|
+
- 优化阅读体验
|
|
318
|
+
|
|
319
|
+
#### 3. 偏好
|
|
320
|
+
|
|
321
|
+

|
|
322
|
+
|
|
323
|
+
- **功能**:设置个人使用偏好
|
|
324
|
+
- **配置项**:
|
|
325
|
+
- **语言设置**:
|
|
326
|
+
- 界面语言选择
|
|
327
|
+
- 时间格式设置
|
|
328
|
+
- 日期格式设置
|
|
329
|
+
- **通知设置**:
|
|
330
|
+
- 桌面通知开关
|
|
331
|
+
- 声音提醒设置
|
|
332
|
+
- 通知频率调整
|
|
333
|
+
- **隐私设置**:
|
|
334
|
+
- 数据收集选项
|
|
335
|
+
- 分享偏好设置
|
|
336
|
+
- 清除历史记录
|
|
337
|
+
- **使用场景**:
|
|
338
|
+
- 适配本地化需求
|
|
339
|
+
- 管理通知干扰
|
|
340
|
+
- 保护个人隐私
|
|
341
|
+
|
|
342
|
+
#### 4. 提供商
|
|
343
|
+
|
|
344
|
+

|
|
345
|
+
|
|
346
|
+
- **功能**:管理 AI 模型提供商配置
|
|
347
|
+
- **配置项**:
|
|
348
|
+
- **API 密钥管理**:
|
|
349
|
+
- 添加新的 API 密钥
|
|
350
|
+
- 测试密钥有效性
|
|
351
|
+
- 删除无效密钥
|
|
352
|
+
- **模型配置**:
|
|
353
|
+
- 选择默认 AI 模型
|
|
354
|
+
- 设置模型参数
|
|
355
|
+
- 配置模型优先级
|
|
356
|
+
- **提供商设置**:
|
|
357
|
+
- OpenAI 配置
|
|
358
|
+
- Anthropic 配置
|
|
359
|
+
- Google 配置
|
|
360
|
+
- 其他提供商配置
|
|
361
|
+
- **使用场景**:
|
|
362
|
+
- 配置多个 AI 提供商
|
|
363
|
+
- 优化成本和性能
|
|
364
|
+
- 测试不同模型效果
|
|
365
|
+
|
|
366
|
+
#### 5. 插件
|
|
367
|
+
|
|
368
|
+

|
|
369
|
+
|
|
370
|
+
- **功能**:管理扩展插件和技能
|
|
371
|
+
- **操作选项**:
|
|
372
|
+
- **查看已安装插件**:浏览当前安装的插件
|
|
373
|
+
- **安装新插件**:从插件市场安装
|
|
374
|
+
- **更新插件**:更新到最新版本
|
|
375
|
+
- **卸载插件**:移除不需要的插件
|
|
376
|
+
- **插件配置**:调整插件设置
|
|
377
|
+
- **使用场景**:
|
|
378
|
+
- 扩展 BitSeek Claw 功能
|
|
379
|
+
- 安装社区插件
|
|
380
|
+
- 管理插件生命周期
|
|
381
|
+
|
|
382
|
+
#### 6. 系统
|
|
383
|
+
|
|
384
|
+

|
|
385
|
+
|
|
386
|
+
- **功能**:系统级配置和管理
|
|
387
|
+
- **配置项**:
|
|
388
|
+
- **数据管理**:
|
|
389
|
+
- 导出所有数据
|
|
390
|
+
- 导入备份数据
|
|
391
|
+
- 清除本地数据
|
|
392
|
+
- **网络设置**:
|
|
393
|
+
- 代理配置
|
|
394
|
+
- 防火墙设置
|
|
395
|
+
- 连接超时设置
|
|
396
|
+
- **调试和日志**:
|
|
397
|
+
- 日志级别调整
|
|
398
|
+
- 调试模式开关
|
|
399
|
+
- 错误报告设置
|
|
400
|
+
- **系统信息**:
|
|
401
|
+
- 版本信息
|
|
402
|
+
- 系统状态
|
|
403
|
+
- 资源使用情况
|
|
404
|
+
- **使用场景**:
|
|
405
|
+
- 数据备份和恢复
|
|
406
|
+
- 网络问题排查
|
|
407
|
+
- 系统性能优化
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
---
|
|
412
|
+
|
|
413
|
+
## 快捷操作
|
|
414
|
+
|
|
415
|
+
### 全局快捷键
|
|
416
|
+
| 快捷键 | 功能 |
|
|
417
|
+
|--------|------|
|
|
418
|
+
| `Ctrl/Cmd + N` | 新建对话 |
|
|
419
|
+
| `Ctrl/Cmd + /` | 聚焦搜索框 |
|
|
420
|
+
| `Ctrl/Cmd + Enter` | 发送消息 |
|
|
421
|
+
| `Ctrl/Cmd + ,` | 打开设置 |
|
|
422
|
+
| `Esc` | 关闭弹窗 |
|
|
423
|
+
|
|
424
|
+
### 消息快捷键
|
|
425
|
+
| 快捷键 | 功能 |
|
|
426
|
+
|--------|------|
|
|
427
|
+
| `Enter` | 发送消息 |
|
|
428
|
+
| `Shift + Enter` | 换行 |
|
|
429
|
+
| `↑` | 编辑上一条消息 |
|
|
430
|
+
| `Ctrl/Cmd + C` | 复制选中文本 |
|
|
431
|
+
|
|
432
|
+
### 导航快捷键
|
|
433
|
+
| 快捷键 | 功能 |
|
|
434
|
+
|--------|------|
|
|
435
|
+
| `1-9` | 切换导航标签 |
|
|
436
|
+
| `←` | 收起侧边栏 |
|
|
437
|
+
| `→` | 展开侧边栏 |
|
|
438
|
+
|
|
439
|
+
---
|
|
440
|
+
|
|
441
|
+
## 故障排除
|
|
442
|
+
|
|
443
|
+
### 常见问题
|
|
444
|
+
|
|
445
|
+
#### 消息发送失败
|
|
446
|
+
1. 检查网络连接
|
|
447
|
+
2. 检查 API 密钥是否有效
|
|
448
|
+
3. 查看控制台错误信息
|
|
449
|
+
|
|
450
|
+
#### 界面无响应
|
|
451
|
+
1. 刷新页面(`F5` 或 `Ctrl/Cmd + R`)
|
|
452
|
+
2. 清除浏览器缓存
|
|
453
|
+
3. 重启 BitSeek Claw 服务
|
|
454
|
+
|
|
455
|
+
#### 文件无法上传
|
|
456
|
+
1. 检查文件大小限制
|
|
457
|
+
2. 检查文件类型是否支持
|
|
458
|
+
3. 检查网络连接
|
|
459
|
+
|
|
460
|
+
### 获取帮助
|
|
461
|
+
- 查看系统日志(设置 → 日志)
|
|
462
|
+
- 查看控制台错误信息
|
|
463
|
+
- 访问项目文档
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# BitSeek Claw 操作文档
|
|
2
|
+
|
|
3
|
+
本目录包含 BitSeek Claw(Hermes WebUI)的完整操作指南。
|
|
4
|
+
|
|
5
|
+
## 目录结构
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
操作文档/
|
|
9
|
+
├── README.md # 本文件 - 文档目录
|
|
10
|
+
├── 00-安装启动.md # 安装和启动说明
|
|
11
|
+
├── 01-整体概览.md # 界面整体概览
|
|
12
|
+
├── 02-页面操作.md # 详细页面操作指南
|
|
13
|
+
└── images/ # 截图和图片资源
|
|
14
|
+
├── main-page.png # 主页面截图
|
|
15
|
+
├── navigation-bar.png # 导航栏截图
|
|
16
|
+
├── chat-area.png # 聊天区域截图
|
|
17
|
+
├── sidebar.png # 侧边栏截图
|
|
18
|
+
├── workspace-panel.png # 工作区面板截图
|
|
19
|
+
├── ai-colleagues.png # AI 同事界面截图
|
|
20
|
+
├── tasks.png # 任务管理界面截图
|
|
21
|
+
├── kanban.png # 看板视图截图
|
|
22
|
+
├── skills.png # 技能管理界面截图
|
|
23
|
+
├── memory.png # 记忆管理界面截图
|
|
24
|
+
├── memory-overview.png # 记忆概览截图
|
|
25
|
+
├── memory-notes.png # 我的备注截图
|
|
26
|
+
├── memory-profile.png # 用户画像截图
|
|
27
|
+
├── memory-soul.png # 智能体灵魂截图
|
|
28
|
+
├── settings.png # 设置界面截图
|
|
29
|
+
├── settings-overview.png # 设置概览截图
|
|
30
|
+
├── settings-conversation.png # 对话设置截图
|
|
31
|
+
├── settings-appearance.png # 外观设置截图
|
|
32
|
+
├── settings-preferences.png # 偏好设置截图
|
|
33
|
+
├── settings-providers.png # 提供商设置截图
|
|
34
|
+
├── settings-plugins.png # 插件设置截图
|
|
35
|
+
└── settings-system.png # 系统设置截图
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## 快速导航
|
|
39
|
+
|
|
40
|
+
1. **[安装启动](00-安装启动.md)** - 如何安装和启动 BitSeek Claw
|
|
41
|
+
2. **[整体概览](01-整体概览.md)** - 界面布局和主要功能区域介绍
|
|
42
|
+
3. **[页面操作](02-页面操作.md)** - 各个页面的详细操作指南
|
|
43
|
+
|
|
44
|
+
## 关于 BitSeek Claw
|
|
45
|
+
|
|
46
|
+
BitSeek Claw 是 Hermes Agent 的轻量级 Web 界面,提供与 CLI 完全对等的功能。它采用三栏布局设计,支持深色主题,无需构建步骤或框架。
|
|
47
|
+
|
|
48
|
+
### 主要特性
|
|
49
|
+
|
|
50
|
+
- **持久化记忆** - 跨会话保持上下文和记忆
|
|
51
|
+
- **多平台支持** - 支持 10+ 消息平台
|
|
52
|
+
- **自改进技能** - 自动从经验中学习和保存技能
|
|
53
|
+
- **提供商无关** - 支持 OpenAI、Anthropic、Google 等多家提供商
|
|
54
|
+
- **自托管** - 完全控制对话、记忆和硬件
|
|
55
|
+
|
|
56
|
+
## 获取帮助
|
|
57
|
+
|
|
58
|
+
如有问题,请查看:
|
|
59
|
+
- 项目根目录的 `README.md`
|
|
60
|
+
- `docs/` 目录下的详细文档
|
|
61
|
+
- `CONTRIBUTING.md` 贡献指南
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# 构建定制版 Release 包
|
|
3
|
+
|
|
4
|
+
set -e
|
|
5
|
+
|
|
6
|
+
echo "🔨 开始构建 Hermes WebUI 定制版 Release..."
|
|
7
|
+
|
|
8
|
+
# 检查分支
|
|
9
|
+
CURRENT_BRANCH=$(git branch --show-current)
|
|
10
|
+
if [[ ! "$CURRENT_BRANCH" =~ ^release/ ]]; then
|
|
11
|
+
echo "❌ 请在 release/* 分支上构建 Release"
|
|
12
|
+
echo " 当前分支: $CURRENT_BRANCH"
|
|
13
|
+
echo " 推荐分支: release/v1.0-custom"
|
|
14
|
+
exit 1
|
|
15
|
+
fi
|
|
16
|
+
|
|
17
|
+
# 确保最新代码
|
|
18
|
+
echo "📥 拉取最新代码..."
|
|
19
|
+
git pull origin "$CURRENT_BRANCH"
|
|
20
|
+
|
|
21
|
+
# 版本信息
|
|
22
|
+
VERSION=$(git describe --tags --abbrev=0 2>/dev/null || echo "v1.0-custom")
|
|
23
|
+
COMMIT=$(git rev-parse --short HEAD)
|
|
24
|
+
TIMESTAMP=$(date +%Y%m%d_%H%M%S)
|
|
25
|
+
|
|
26
|
+
# 文件名
|
|
27
|
+
FILENAME="hermes-webui-custom-${VERSION}-${TIMESTAMP}.zip"
|
|
28
|
+
|
|
29
|
+
echo "📦 打包版本: $VERSION"
|
|
30
|
+
echo "🔧 提交: $COMMIT"
|
|
31
|
+
echo "📁 文件名: $FILENAME"
|
|
32
|
+
|
|
33
|
+
# 打包 (排除 .git 和其他不需要的文件)
|
|
34
|
+
echo "🗜️ 正在打包..."
|
|
35
|
+
git archive --format=zip --output="$FILENAME" HEAD \
|
|
36
|
+
--exclude=.git \
|
|
37
|
+
--exclude=.gitignore \
|
|
38
|
+
--exclude=.dockerignore \
|
|
39
|
+
--exclude=tests/ \
|
|
40
|
+
--exclude=.github/ \
|
|
41
|
+
--exclude=*.pyc \
|
|
42
|
+
--exclude=__pycache__/ \
|
|
43
|
+
--exclude=.pytest_cache/ \
|
|
44
|
+
--exclude=.coverage
|
|
45
|
+
|
|
46
|
+
echo "✅ 打包完成: $FILENAME"
|
|
47
|
+
echo ""
|
|
48
|
+
echo "📋 Release 信息:"
|
|
49
|
+
echo " 版本: $VERSION"
|
|
50
|
+
echo " 分支: dev-zkp"
|
|
51
|
+
echo " 提交: $COMMIT"
|
|
52
|
+
echo " 大小: $(du -h "$FILENAME" | cut -f1)"
|
|
53
|
+
echo ""
|
|
54
|
+
echo "🚀 下一步:"
|
|
55
|
+
echo " 1. 在 GitHub 创建 Release: $VERSION"
|
|
56
|
+
echo " 2. 上传文件: $FILENAME"
|
|
57
|
+
echo " 3. 更新 install.sh 中的 DOWNLOAD_URL"
|
|
58
|
+
echo ""
|
|
59
|
+
echo "📝 Release 描述模板:"
|
|
60
|
+
echo " 🎨 Hermes WebUI 定制版 $VERSION"
|
|
61
|
+
echo " 📦 包含所有定制功能和优化"
|
|
62
|
+
echo " 🚀 一键安装: curl -fsSL https://your-domain.com/install.sh | bash"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
services:
|
|
2
|
+
hermes-webui-custom:
|
|
3
|
+
build: .
|
|
4
|
+
container_name: hermes-webui-custom
|
|
5
|
+
restart: unless-stopped
|
|
6
|
+
ports:
|
|
7
|
+
- "127.0.0.1:8787:8787"
|
|
8
|
+
extra_hosts:
|
|
9
|
+
# 让 Linux Docker Engine 也能使用 host.docker.internal 访问宿主机
|
|
10
|
+
- "host.docker.internal:host-gateway"
|
|
11
|
+
environment:
|
|
12
|
+
- HERMES_WEBUI_HOST=0.0.0.0
|
|
13
|
+
- HERMES_WEBUI_PORT=8787
|
|
14
|
+
- HERMES_WEBUI_PASSWORD=${HERMES_WEBUI_PASSWORD:-}
|
|
15
|
+
- HERMES_WEBUI_STATE_DIR=/home/hermeswebui/.hermes/webui
|
|
16
|
+
- HERMES_WEBUI_DEFAULT_WORKSPACE=/workspace
|
|
17
|
+
- HERMES_WEBUI_EXTENSION_DIR=/app/extensions
|
|
18
|
+
- HERMES_WEBUI_EXTENSION_STYLESHEET_URLS=${HERMES_WEBUI_EXTENSION_STYLESHEET_URLS:-}
|
|
19
|
+
- HERMES_WEBUI_EXTENSION_SCRIPT_URLS=${HERMES_WEBUI_EXTENSION_SCRIPT_URLS:-}
|
|
20
|
+
- HERMES_WEBUI_BOT_NAME=${HERMES_WEBUI_BOT_NAME:-}
|
|
21
|
+
- HERMES_WEBUI_SKIP_ONBOARDING=${HERMES_WEBUI_SKIP_ONBOARDING:-0}
|
|
22
|
+
- WANTED_UID=${UID:-1000}
|
|
23
|
+
- WANTED_GID=${GID:-1000}
|
|
24
|
+
volumes:
|
|
25
|
+
# 绑定宿主机的 ~/.hermes,让容器能读取宿主机 hermes-agent 的配置和状态
|
|
26
|
+
- ${HERMES_HOME:-${HOME}/.hermes}:/home/hermeswebui/.hermes
|
|
27
|
+
- ${HERMES_WORKSPACE:-${HOME}/workspace}:/workspace
|
|
28
|
+
- ./extensions:/app/extensions
|
|
29
|
+
healthcheck:
|
|
30
|
+
test: ["CMD", "curl", "-f", "http://127.0.0.1:8787/health"]
|
|
31
|
+
interval: 30s
|
|
32
|
+
timeout: 10s
|
|
33
|
+
retries: 3
|