@bitseek/hermes-webui 0.1.0-beta.0 → 0.1.0

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.
Files changed (99) hide show
  1. package/package.json +2 -2
  2. package/vendor/agent-frontend-shell/.bitseek-source.json +2 -2
  3. package/vendor/agent-frontend-shell/CHANGELOG.md +178 -1
  4. package/vendor/agent-frontend-shell/CONTRIBUTORS.md +5 -5
  5. package/vendor/agent-frontend-shell/api/agent_health.py +134 -0
  6. package/vendor/agent-frontend-shell/api/config.py +145 -104
  7. package/vendor/agent-frontend-shell/api/gateway_chat.py +56 -12
  8. package/vendor/agent-frontend-shell/api/helpers.py +4 -2
  9. package/vendor/agent-frontend-shell/api/models.py +202 -20
  10. package/vendor/agent-frontend-shell/api/paths.py +77 -0
  11. package/vendor/agent-frontend-shell/api/plugins.py +185 -0
  12. package/vendor/agent-frontend-shell/api/profiles.py +95 -16
  13. package/vendor/agent-frontend-shell/api/routes.py +831 -30
  14. package/vendor/agent-frontend-shell/api/run_journal.py +1 -0
  15. package/vendor/agent-frontend-shell/api/state_sync.py +5 -4
  16. package/vendor/agent-frontend-shell/api/streaming.py +211 -56
  17. package/vendor/agent-frontend-shell/api/todo_state.py +122 -0
  18. package/vendor/agent-frontend-shell/api/updates.py +30 -3
  19. package/vendor/agent-frontend-shell/api/upload.py +251 -18
  20. package/vendor/agent-frontend-shell/api/workspace.py +323 -65
  21. package/vendor/agent-frontend-shell/bitseek_docs/BitSeek_Claw_Operation_Manual_EN.docx +0 -0
  22. package/vendor/agent-frontend-shell/bitseek_docs/BitSeek_Claw_Operation_Manual_ZH.docx +0 -0
  23. package/vendor/agent-frontend-shell/bitseek_docs/en/00-Installation.md +174 -0
  24. package/vendor/agent-frontend-shell/bitseek_docs/en/01-Overview.md +128 -0
  25. package/vendor/agent-frontend-shell/bitseek_docs/en/02-Page-Operations.md +461 -0
  26. package/vendor/agent-frontend-shell/bitseek_docs/en/README.md +61 -0
  27. package/vendor/agent-frontend-shell/bitseek_docs/en/images/ai-colleagues.png +0 -0
  28. package/vendor/agent-frontend-shell/bitseek_docs/en/images/chat-area.png +0 -0
  29. package/vendor/agent-frontend-shell/bitseek_docs/en/images/kanban.png +0 -0
  30. package/vendor/agent-frontend-shell/bitseek_docs/en/images/main-page.png +0 -0
  31. package/vendor/agent-frontend-shell/bitseek_docs/en/images/memory-notes.png +0 -0
  32. package/vendor/agent-frontend-shell/bitseek_docs/en/images/memory-overview.png +0 -0
  33. package/vendor/agent-frontend-shell/bitseek_docs/en/images/memory-profile.png +0 -0
  34. package/vendor/agent-frontend-shell/bitseek_docs/en/images/memory-soul.png +0 -0
  35. package/vendor/agent-frontend-shell/bitseek_docs/en/images/memory.png +0 -0
  36. package/vendor/agent-frontend-shell/bitseek_docs/en/images/navigation-bar.png +0 -0
  37. package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-appearance.png +0 -0
  38. package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-conversation.png +0 -0
  39. package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-overview.png +0 -0
  40. package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-plugins.png +0 -0
  41. package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-preferences.png +0 -0
  42. package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-providers.png +0 -0
  43. package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings-system.png +0 -0
  44. package/vendor/agent-frontend-shell/bitseek_docs/en/images/settings.png +0 -0
  45. package/vendor/agent-frontend-shell/bitseek_docs/en/images/sidebar.png +0 -0
  46. package/vendor/agent-frontend-shell/bitseek_docs/en/images/skills.png +0 -0
  47. package/vendor/agent-frontend-shell/bitseek_docs/en/images/tasks.png +0 -0
  48. package/vendor/agent-frontend-shell/bitseek_docs/en/images/workspace-panel.png +0 -0
  49. package/vendor/agent-frontend-shell/bitseek_docs/md_to_docx.py +351 -0
  50. package/vendor/agent-frontend-shell/bitseek_docs/zh/00-/345/256/211/350/243/205/345/220/257/345/212/250.md +174 -0
  51. package/vendor/agent-frontend-shell/bitseek_docs/zh/01-/346/225/264/344/275/223/346/246/202/350/247/210.md +128 -0
  52. package/vendor/agent-frontend-shell/bitseek_docs/zh/02-/351/241/265/351/235/242/346/223/215/344/275/234.md +463 -0
  53. package/vendor/agent-frontend-shell/bitseek_docs/zh/README.md +61 -0
  54. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/ai-colleagues.png +0 -0
  55. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/chat-area.png +0 -0
  56. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/kanban.png +0 -0
  57. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/main-page.png +0 -0
  58. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/memory-notes.png +0 -0
  59. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/memory-overview.png +0 -0
  60. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/memory-profile.png +0 -0
  61. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/memory-soul.png +0 -0
  62. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/memory.png +0 -0
  63. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/navigation-bar.png +0 -0
  64. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-appearance.png +0 -0
  65. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-conversation.png +0 -0
  66. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-overview.png +0 -0
  67. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-plugins.png +0 -0
  68. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-preferences.png +0 -0
  69. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-providers.png +0 -0
  70. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings-system.png +0 -0
  71. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/settings.png +0 -0
  72. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/sidebar.png +0 -0
  73. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/skills.png +0 -0
  74. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/tasks.png +0 -0
  75. package/vendor/agent-frontend-shell/bitseek_docs/zh/images/workspace-panel.png +0 -0
  76. package/vendor/agent-frontend-shell/build-release.sh +62 -0
  77. package/vendor/agent-frontend-shell/ctl.sh +1 -0
  78. package/vendor/agent-frontend-shell/docker-compose.local.yml +33 -0
  79. package/vendor/agent-frontend-shell/docker-compose.yml +8 -0
  80. package/vendor/agent-frontend-shell/docker_init.bash +1 -0
  81. package/vendor/agent-frontend-shell/docs/rfcs/hermes-run-adapter-contract.md +74 -15
  82. package/vendor/agent-frontend-shell/extensions/common/index.css +6 -0
  83. package/vendor/agent-frontend-shell/extensions/manifest.json +6 -0
  84. package/vendor/agent-frontend-shell/extensions/pages/ai-teammates/page.js +60 -14
  85. package/vendor/agent-frontend-shell/readme-simple.md +103 -0
  86. package/vendor/agent-frontend-shell/requirements.txt +5 -0
  87. package/vendor/agent-frontend-shell/server.py +7 -0
  88. package/vendor/agent-frontend-shell/static/boot.js +53 -1
  89. package/vendor/agent-frontend-shell/static/commands.js +20 -10
  90. package/vendor/agent-frontend-shell/static/i18n.js +1142 -1016
  91. package/vendor/agent-frontend-shell/static/index.html +13 -3
  92. package/vendor/agent-frontend-shell/static/messages.js +48 -3
  93. package/vendor/agent-frontend-shell/static/panels.js +199 -30
  94. package/vendor/agent-frontend-shell/static/sessions.js +249 -39
  95. package/vendor/agent-frontend-shell/static/style.css +46 -2
  96. package/vendor/agent-frontend-shell/static/ui.js +323 -79
  97. package/vendor/agent-frontend-shell/static/workspace.js +185 -7
  98. package/vendor/agent-frontend-shell/README-CUSTOM.md +0 -76
  99. package/vendor/agent-frontend-shell/docker-compose.custom.yml +0 -26
@@ -0,0 +1,128 @@
1
+ # BitSeek Claw Overview
2
+
3
+ BitSeek Claw features a modern three-panel layout design, providing an intuitive user interface. Below is an introduction to the overall interface structure.
4
+
5
+ ## Interface Layout
6
+
7
+ ![Overall Layout](images/main-page.png)
8
+
9
+ The BitSeek Claw interface is divided into three main areas:
10
+
11
+ 1. **Top Navigation Bar** - Function module switching
12
+ 2. **Left Sidebar** - Session management and navigation
13
+ 3. **Central Main Area** - Chat and workspace
14
+ 4. **Right Panel** - File browsing (optional)
15
+
16
+ ## Top Navigation Bar
17
+
18
+ ![Navigation Bar](images/navigation-bar.png)
19
+
20
+ The navigation bar is located at the top of the page and contains the following function modules:
21
+
22
+ | Icon | Name | Description |
23
+ |------|------|-------------|
24
+ | 💬 | Chat | Communicate with AI through dialogue |
25
+ | 👥 | AI Colleagues | Manage and interact with multiple AI agents |
26
+ | 📋 | Tasks | View and manage task lists |
27
+ | 📊 | Kanban | Task kanban view |
28
+ | ⚡ | Skills | Manage AI skill library |
29
+ | 🧠 | Memory | View and manage AI memory |
30
+ | 📁 | Workspace | File and project management |
31
+ | ⚙️ | Profiles | Agent configuration management |
32
+ | ✅ | Todos | Todo item management |
33
+ | 📈 | Insights | Usage statistics and insights |
34
+ | 📊 | Hermes Dashboard | System monitoring panel |
35
+ | 📝 | Logs | System log viewing |
36
+ | ⚙️ | Settings | System settings |
37
+
38
+ ## Left Sidebar
39
+
40
+ ![Sidebar](images/sidebar.png)
41
+
42
+ The left sidebar provides session management and quick navigation:
43
+
44
+ ### Session Management
45
+ - **New Conversation** - Create a new chat session
46
+ - **Filter Conversations** - Filter sessions by keywords
47
+ - **Session List** - Displays all historical sessions
48
+ - Grouped by time (today, yesterday, last week, etc.)
49
+ - Each session shows title and last active time
50
+ - Right-click menu provides more operations
51
+
52
+ ### Project Management
53
+ - **All** - View all sessions
54
+ - **Unassigned** - View sessions without assigned projects
55
+ - **New Project** - Create new project group
56
+
57
+ ## Central Main Area
58
+
59
+ ![Chat Area](images/chat-area.png)
60
+
61
+ The central main area is the primary workspace, displaying different content based on the currently selected function module:
62
+
63
+ ### Chat Interface
64
+ - **Welcome Message** - Displays guide questions
65
+ - **Message Input Box** - Enter messages to communicate with AI
66
+ - **Quick Actions** - File selection, dictation, and other functions
67
+ - **Context Information** - Shows current model, workspace, etc.
68
+
69
+ ### Other Function Interfaces
70
+ - Task management, kanban view, skills management, etc.
71
+ - Each function module has its own dedicated interface layout
72
+
73
+ ## Right Workspace Panel
74
+
75
+ ![Workspace Panel](images/workspace-panel.png)
76
+
77
+ The right workspace panel provides file management functions:
78
+
79
+ ### File Browser
80
+ - **File List** - Displays files and folders in the workspace
81
+ - **File Operations** - Create new files, folders, refresh, etc.
82
+ - **File Preview** - Click on a file to preview its content
83
+
84
+ ### Function Tabs
85
+ - **Files** - File browser
86
+ - **Artifacts** - Generated artifacts and content
87
+
88
+ ## Bottom Control Bar
89
+
90
+ The bottom control bar provides session-level controls:
91
+
92
+ ### Model Selection
93
+ - **AI Model** - Switch between different AI models
94
+ - **Reasoning Effort** - Adjust AI reasoning intensity
95
+ - **Profile** - Switch user profiles
96
+
97
+ ### Message Actions
98
+ - **Send Button** - Send the entered message
99
+ - **File Attachment** - Attach files to messages
100
+ - **Dictation** - Voice input support
101
+
102
+ ## Themes and Appearance
103
+
104
+ BitSeek Claw supports multiple themes:
105
+
106
+ - **Dark Theme** - Default theme, comfortable for eyes
107
+ - **Light Theme** - Bright and refreshing interface
108
+ - **Custom Themes** - Supports custom color schemes
109
+
110
+ ## Responsive Design
111
+
112
+ The interface supports different screen sizes:
113
+ - **Desktop** - Complete three-panel layout
114
+ - **Tablet** - Collapsible sidebar
115
+ - **Mobile** - Single-column layout, adapted for phone screens
116
+
117
+ ## Keyboard Shortcuts
118
+
119
+ Common keyboard shortcuts:
120
+ - `Ctrl/Cmd + N` - New conversation
121
+ - `Ctrl/Cmd + /` - Focus search box
122
+ - `Ctrl/Cmd + Enter` - Send message
123
+ - `Esc` - Close popup or cancel operation
124
+
125
+ ## Next Steps
126
+
127
+ After understanding the overall layout, please refer to:
128
+ - **[Page Operations](02-Page-Operations.md)** - Detailed operation guide for each function module
@@ -0,0 +1,461 @@
1
+ # BitSeek Claw Page Operations Guide
2
+
3
+ This guide provides detailed instructions on how to operate each function module of BitSeek Claw.
4
+
5
+ ## Table of Contents
6
+
7
+ 1. [Chat Function](#chat-function)
8
+ 2. [AI Colleagues](#ai-colleagues)
9
+ 3. [Task Management](#task-management)
10
+ 4. [Kanban View](#kanban-view)
11
+ 5. [Skills Management](#skills-management)
12
+ 6. [Memory Management](#memory-management)
13
+ 7. [Settings Configuration](#settings-configuration)
14
+
15
+ ---
16
+
17
+ ## Chat Function
18
+
19
+ ![Chat Interface](images/chat-area.png)
20
+
21
+ Chat is the core function of BitSeek Claw, used for communicating with AI through dialogue.
22
+
23
+ ### Sending Messages
24
+
25
+ 1. **Enter Message**
26
+ - Type text in the message input box at the bottom
27
+ - Supports multi-line input (press `Shift + Enter` for new line)
28
+
29
+ 2. **Send Message**
30
+ - Click the send button 📤
31
+ - Or press `Enter` key to send
32
+ - Or press `Ctrl/Cmd + Enter` to send
33
+
34
+ 3. **Quick Actions**
35
+ - 📎 **Select File** - Attach files to messages
36
+ - 🎤 **Dictation** - Voice input
37
+ - ⚡ **Quick Commands** - Insert preset commands
38
+
39
+ ### Session Management
40
+
41
+ #### New Conversation
42
+ 1. Click the **"New Conversation"** button in the left sidebar
43
+
44
+ #### Switch Conversations
45
+ 1. Click on the conversation you want to switch to in the session list in the left sidebar
46
+ 2. Sessions are grouped by time (today, yesterday, last week, etc.)
47
+
48
+ #### Filter Conversations
49
+ 1. Use the search box to enter keywords for filtering
50
+ 2. Or use tags for filtering
51
+
52
+ #### Conversation Operations
53
+ - **Rename** - Right-click conversation → Rename
54
+ - **Delete** - Right-click conversation → Delete
55
+ - **Export** - Right-click conversation → Export as Markdown
56
+
57
+ ### Message Operations
58
+
59
+ #### Edit Message
60
+ 1. Hover over the message
61
+ 2. Click the edit icon ✏️
62
+ 3. Modify the content and save
63
+
64
+ #### Copy Message
65
+ 1. Hover over the message
66
+ 2. Click the copy icon 📋
67
+ 3. The message will be copied to clipboard
68
+
69
+ #### Quote Message
70
+ 1. Hover over the message
71
+ 2. Click the quote icon 💬
72
+ 3. The quoted content will be added to the input box
73
+
74
+ ### Context Information
75
+
76
+ The bottom status bar displays the current session context:
77
+ - **Model** - Current AI model being used
78
+ - **Profile** - Current user profile
79
+ - **Workspace** - Current working directory
80
+ - **Reasoning Effort** - AI reasoning intensity setting
81
+
82
+ ---
83
+
84
+ ## AI Colleagues
85
+
86
+ ![AI Colleagues Interface](images/ai-colleagues.png)
87
+
88
+ The AI Colleagues function allows you to manage and interact with multiple AI agents.
89
+
90
+ ### View AI Colleagues List
91
+ 1. Click the **"AI Colleagues"** button in the navigation bar
92
+ 2. View all available AI agents
93
+
94
+ ### Chat with AI Colleagues
95
+ 1. Select an AI colleague from the list
96
+ 2. Click to enter the chat interface
97
+ 3. Enter messages to start communication
98
+
99
+ ---
100
+
101
+ ## Task Management
102
+
103
+ ![Task Management Interface](images/tasks.png)
104
+
105
+ The task management function helps you track and manage various tasks.
106
+
107
+ ### View Tasks
108
+ 1. Click the **"Tasks"** button in the navigation bar
109
+ 2. View all task lists
110
+ 3. Filter by status, priority, or assignee
111
+
112
+ ### Create Tasks
113
+ 1. Click the **"New Task"** button
114
+ 2. Fill in task information:
115
+ - Title
116
+ - Description
117
+ - Due date
118
+ - Priority
119
+ - Assignee
120
+ 3. Click save
121
+
122
+ ### Task Operations
123
+ - **Edit Task** - Click task title to enter edit mode
124
+ - **Mark Complete** - Click the complete button
125
+ - **Delete Task** - Select task and delete
126
+ - **Add Comment** - Add comments to tasks
127
+
128
+ ### Task Views
129
+ - **List View** - Traditional list display
130
+ - **Kanban View** - Kanban-style display
131
+ - **Timeline View** - Gantt chart display
132
+
133
+ ---
134
+
135
+ ## Kanban View
136
+
137
+ ![Kanban Interface](images/kanban.png)
138
+
139
+ The kanban view provides an intuitive task management interface.
140
+
141
+ ### Kanban Columns
142
+ Kanban typically includes the following columns:
143
+ - **To Do** - Tasks to be processed
144
+ - **In Progress** - Tasks currently being worked on
145
+ - **Completed** - Tasks that have been completed
146
+ - **Archived** - Tasks that have been archived
147
+
148
+ ### Drag and Drop Tasks
149
+ 1. Find the task card in the kanban column
150
+ 2. Hold the left mouse button and drag
151
+ 3. Release in the target column
152
+
153
+ ### Manage Kanban
154
+ - **Add Column** - Click the add column button
155
+ - **Rename Column** - Double-click column title
156
+ - **Delete Column** - Right-click column → Delete
157
+ - **Adjust Order** - Drag column title to adjust order
158
+
159
+ ### Card Operations
160
+ - **View Details** - Click card to view detailed information
161
+ - **Quick Edit** - Double-click card for quick edit
162
+ - **Add Members** - Add members to tasks
163
+ - **Set Labels** - Add color labels
164
+
165
+ ---
166
+
167
+ ## Skills Management
168
+
169
+ ![Skills Interface](images/skills.png)
170
+
171
+ The skills management function manages the AI's available skill library.
172
+
173
+ ### View Skills List
174
+ 1. Click the **"Skills"** button in the navigation bar
175
+ 2. View all available skills
176
+ 3. Filter by category or status
177
+
178
+ ### Skill Categories
179
+ - **System Skills** - Built-in core skills
180
+ - **Custom Skills** - User-created skills
181
+ - **Community Skills** - Skills obtained from the community
182
+
183
+ ### Using Skills
184
+ 1. Enter skill commands in chat
185
+ 2. Or select through the skills panel
186
+ 3. AI will execute the corresponding skill
187
+
188
+ ### Managing Skills
189
+ - **Enable/Disable** - Control whether skills are available
190
+ - **Configure Parameters** - Modify skill settings
191
+ - **Delete Skills** - Remove unwanted skills
192
+
193
+ ---
194
+
195
+ ## Memory Management
196
+
197
+ ![Memory Interface](images/memory.png)
198
+
199
+ The memory management function manages AI's memory system.
200
+
201
+ ### Memory Submenu
202
+
203
+ The memory page provides the following submenu options:
204
+
205
+ #### 1. My Notes
206
+
207
+ ![My Notes Interface](images/memory-notes.png)
208
+
209
+ - **Function**: Manage personal notes and memos
210
+ - **Operations**:
211
+ - Click **"My Notes"** to enter notes management
212
+ - Click **"Edit"** button to modify current note
213
+ - View note's last modification time
214
+ - **Use Cases**:
215
+ - Record important information and ideas
216
+ - Save todo items
217
+ - Record learning insights
218
+
219
+ #### 2. User Profile
220
+
221
+ ![User Profile Interface](images/memory-profile.png)
222
+
223
+ - **Function**: Manage AI's understanding of the user
224
+ - **Content**:
225
+ - User preference settings
226
+ - Work habits
227
+ - Communication style
228
+ - Technical stack information
229
+ - **Operations**:
230
+ - View AI-learned user characteristics
231
+ - Manually add or modify user information
232
+ - Delete inaccurate user profiles
233
+
234
+ #### 3. Agent Soul
235
+
236
+ ![Agent Soul Interface](images/memory-soul.png)
237
+
238
+ - **Function**: Define AI's personality and behavior patterns
239
+ - **Configuration Items**:
240
+ - **Personality Traits**: Define AI's communication style
241
+ - **Expertise**: Specify AI's professional domains
242
+ - **Behavioral Guidelines**: Set AI's behavioral boundaries
243
+ - **Response Style**: Adjust AI's response methods
244
+ - **Use Cases**:
245
+ - Customize personalized AI assistant
246
+ - Adapt to different work scenarios
247
+ - Optimize interaction experience
248
+
249
+ ### Memory Types
250
+ - **User Memory** - About user preferences and habits
251
+ - **Session Memory** - Current session context
252
+ - **Repository Memory** - Codebase-related memory
253
+
254
+ ### View Memory
255
+ 1. Click the **"Memory"** button in the navigation bar
256
+ 2. Browse different categories of memory
257
+ 3. Search for specific memory content
258
+
259
+ ### Manage Memory
260
+ - **Add Memory** - Manually add new memory
261
+ - **Edit Memory** - Modify existing memory
262
+ - **Delete Memory** - Delete unwanted memory
263
+ - **Export Memory** - Export memory to file
264
+
265
+ ### Memory Search
266
+ 1. Use the search box to enter keywords
267
+ 2. Filter memory by category
268
+ 3. Sort memory by time
269
+
270
+ ---
271
+
272
+ ## Settings Configuration
273
+
274
+ ![Settings Interface](images/settings.png)
275
+
276
+ The settings function configures various options for BitSeek Claw.
277
+
278
+ ### Settings Submenu
279
+
280
+ The settings page provides the following submenu options:
281
+
282
+ #### 1. Conversation
283
+
284
+ ![Conversation Settings Interface](images/settings-conversation.png)
285
+
286
+ - **Function**: Manage current conversation settings and operations
287
+ - **Operation Options**:
288
+ - **Record**: Export conversation as Markdown file
289
+ - **JSON**: Export conversation completely as JSON format
290
+ - **Import**: Import conversation history from JSON file
291
+ - **Clear**: Clear all messages in current conversation
292
+ - **Use Cases**:
293
+ - Backup important conversations
294
+ - Sync conversations across different devices
295
+ - Clean up unwanted conversation records
296
+
297
+ #### 2. Appearance
298
+
299
+ ![Appearance Settings Interface](images/settings-appearance.png)
300
+
301
+ - **Function**: Customize interface appearance and theme
302
+ - **Configuration Items**:
303
+ - **Theme Selection**:
304
+ - Dark theme (default)
305
+ - Light theme
306
+ - Follow system
307
+ - **Font Settings**:
308
+ - Font size adjustment
309
+ - Font style selection
310
+ - **Layout Configuration**:
311
+ - Sidebar show/hide
312
+ - Panel size adjustment
313
+ - Animation effects toggle
314
+ - **Use Cases**:
315
+ - Adapt to different lighting environments
316
+ - Personalize interface style
317
+ - Optimize reading experience
318
+
319
+ #### 3. Preferences
320
+
321
+ ![Preferences Settings Interface](images/settings-preferences.png)
322
+
323
+ - **Function**: Set personal usage preferences
324
+ - **Configuration Items**:
325
+ - **Language Settings**:
326
+ - Interface language selection
327
+ - Time format settings
328
+ - Date format settings
329
+ - **Notification Settings**:
330
+ - Desktop notification toggle
331
+ - Sound reminder settings
332
+ - Notification frequency adjustment
333
+ - **Privacy Settings**:
334
+ - Data collection options
335
+ - Sharing preferences
336
+ - Clear history records
337
+ - **Use Cases**:
338
+ - Adapt to localization needs
339
+ - Manage notification interruptions
340
+ - Protect personal privacy
341
+
342
+ #### 4. Providers
343
+
344
+ ![Providers Settings Interface](images/settings-providers.png)
345
+
346
+ - **Function**: Manage AI model provider configuration
347
+ - **Configuration Items**:
348
+ - **API Key Management**:
349
+ - Add new API keys
350
+ - Test key validity
351
+ - Delete invalid keys
352
+ - **Model Configuration**:
353
+ - Select default AI model
354
+ - Set model parameters
355
+ - Configure model priorities
356
+ - **Provider Settings**:
357
+ - OpenAI configuration
358
+ - Anthropic configuration
359
+ - Google configuration
360
+ - Other provider configurations
361
+ - **Use Cases**:
362
+ - Configure multiple AI providers
363
+ - Optimize cost and performance
364
+ - Test different model effects
365
+
366
+ #### 5. Plugins
367
+
368
+ ![Plugins Settings Interface](images/settings-plugins.png)
369
+
370
+ - **Function**: Manage extension plugins and skills
371
+ - **Operation Options**:
372
+ - **View Installed Plugins**: Browse currently installed plugins
373
+ - **Install New Plugins**: Install from plugin marketplace
374
+ - **Update Plugins**: Update to latest version
375
+ - **Uninstall Plugins**: Remove unwanted plugins
376
+ - **Plugin Configuration**: Adjust plugin settings
377
+ - **Use Cases**:
378
+ - Extend BitSeek Claw functionality
379
+ - Install community plugins
380
+ - Manage plugin lifecycle
381
+
382
+ #### 6. System
383
+
384
+ ![System Settings Interface](images/settings-system.png)
385
+
386
+ - **Function**: System-level configuration and management
387
+ - **Configuration Items**:
388
+ - **Data Management**:
389
+ - Export all data
390
+ - Import backup data
391
+ - Clear local data
392
+ - **Network Settings**:
393
+ - Proxy configuration
394
+ - Firewall settings
395
+ - Connection timeout settings
396
+ - **Debug and Logs**:
397
+ - Log level adjustment
398
+ - Debug mode toggle
399
+ - Error reporting settings
400
+ - **System Information**:
401
+ - Version information
402
+ - System status
403
+ - Resource usage
404
+ - **Use Cases**:
405
+ - Data backup and recovery
406
+ - Network troubleshooting
407
+ - System performance optimization
408
+
409
+ ---
410
+
411
+ ## Quick Actions
412
+
413
+ ### Global Keyboard Shortcuts
414
+ | Shortcut | Function |
415
+ |----------|----------|
416
+ | `Ctrl/Cmd + N` | New conversation |
417
+ | `Ctrl/Cmd + /` | Focus search box |
418
+ | `Ctrl/Cmd + Enter` | Send message |
419
+ | `Ctrl/Cmd + ,` | Open settings |
420
+ | `Esc` | Close popup |
421
+
422
+ ### Message Keyboard Shortcuts
423
+ | Shortcut | Function |
424
+ |----------|----------|
425
+ | `Enter` | Send message |
426
+ | `Shift + Enter` | New line |
427
+ | `↑` | Edit previous message |
428
+ | `Ctrl/Cmd + C` | Copy selected text |
429
+
430
+ ### Navigation Keyboard Shortcuts
431
+ | Shortcut | Function |
432
+ |----------|----------|
433
+ | `1-9` | Switch navigation tabs |
434
+ | `←` | Collapse sidebar |
435
+ | `→` | Expand sidebar |
436
+
437
+ ---
438
+
439
+ ## Troubleshooting
440
+
441
+ ### Common Issues
442
+
443
+ #### Message Sending Failed
444
+ 1. Check network connection
445
+ 2. Verify API key is valid
446
+ 3. Check console error messages
447
+
448
+ #### Interface Not Responding
449
+ 1. Refresh the page (`F5` or `Ctrl/Cmd + R`)
450
+ 2. Clear browser cache
451
+ 3. Restart BitSeek Claw service
452
+
453
+ #### File Upload Failed
454
+ 1. Check file size limits
455
+ 2. Verify file type is supported
456
+ 3. Check network connection
457
+
458
+ ### Getting Help
459
+ - View system logs (Settings → Logs)
460
+ - Check console error messages
461
+ - Visit project documentation
@@ -0,0 +1,61 @@
1
+ # BitSeek Claw Operation Manual
2
+
3
+ This directory contains the complete operation guide for BitSeek Claw (Hermes WebUI).
4
+
5
+ ## Directory Structure
6
+
7
+ ```
8
+ Operation Manual/
9
+ ├── README.md # This file - Documentation directory
10
+ ├── 00-Installation.md # Installation and startup instructions
11
+ ├── 01-Overview.md # Interface overview
12
+ ├── 02-Page-Operations.md # Detailed page operation guide
13
+ └── images/ # Screenshots and image resources
14
+ ├── main-page.png # Main page screenshot
15
+ ├── navigation-bar.png # Navigation bar screenshot
16
+ ├── chat-area.png # Chat area screenshot
17
+ ├── sidebar.png # Sidebar screenshot
18
+ ├── workspace-panel.png # Workspace panel screenshot
19
+ ├── ai-colleagues.png # AI colleagues interface screenshot
20
+ ├── tasks.png # Task management interface screenshot
21
+ ├── kanban.png # Kanban view screenshot
22
+ ├── skills.png # Skills management interface screenshot
23
+ ├── memory.png # Memory management interface screenshot
24
+ ├── memory-overview.png # Memory overview screenshot
25
+ ├── memory-notes.png # My Notes screenshot
26
+ ├── memory-profile.png # User Profile screenshot
27
+ ├── memory-soul.png # Agent Soul screenshot
28
+ ├── settings.png # Settings interface screenshot
29
+ ├── settings-overview.png # Settings overview screenshot
30
+ ├── settings-conversation.png # Conversation settings screenshot
31
+ ├── settings-appearance.png # Appearance settings screenshot
32
+ ├── settings-preferences.png # Preferences settings screenshot
33
+ ├── settings-providers.png # Providers settings screenshot
34
+ ├── settings-plugins.png # Plugins settings screenshot
35
+ └── settings-system.png # System settings screenshot
36
+ ```
37
+
38
+ ## Quick Navigation
39
+
40
+ 1. **[Installation](00-Installation.md)** - How to install and start BitSeek Claw
41
+ 2. **[Overview](01-Overview.md)** - Interface layout and main functional areas
42
+ 3. **[Page Operations](02-Page-Operations.md)** - Detailed operation guide for each page
43
+
44
+ ## About BitSeek Claw
45
+
46
+ BitSeek Claw is a lightweight web interface for Hermes Agent that provides full parity with the CLI experience. It features a three-panel layout design, supports dark themes, and requires no build steps or frameworks.
47
+
48
+ ### Key Features
49
+
50
+ - **Persistent Memory** - Maintains context and memory across sessions
51
+ - **Multi-platform Support** - Supports 10+ messaging platforms
52
+ - **Self-improving Skills** - Automatically learns and saves skills from experience
53
+ - **Provider Agnostic** - Supports OpenAI, Anthropic, Google, and other providers
54
+ - **Self-hosted** - Full control over conversations, memory, and hardware
55
+
56
+ ## Getting Help
57
+
58
+ If you encounter any issues, please refer to:
59
+ - `README.md` in the project root directory
60
+ - Detailed documentation in the `docs/` directory
61
+ - `CONTRIBUTING.md` contribution guide