aeb782d479
refactor: 清理WebSocket遗留代码,标记为废弃
...
Phase 2 WebSocket代码清理:
前端 (useLegacySocket.ts):
1. 添加文件头注释说明架构变更
- 聊天流式事件已废弃,改用 REST API 轮询
- 保留系统事件、配额事件、对话事件、子智能体事件
- 标记待清理的流式处理代码
2. 简化 ai_message_start 事件处理器
- 只保留子智能体模式的处理
- 删除复杂的流式状态管理逻辑
3. 保留备份文件 useLegacySocket.ts.backup
- 用于紧急回退
后端 (socket_handlers.py):
1. 标记 handle_message 为废弃
- 添加废弃警告和迁移指南
- 返回错误提示引导用户使用 REST API
- 保留原代码用于紧急回退(注释掉)
2. 说明新架构优势
- 支持分布式部署
- 更好的错误恢复
- 减少 WebSocket 连接压力
注意:
- 未删除大量流式处理代码,只添加注释标记
- 保留向后兼容性,避免破坏现有功能
- 后续可逐步清理标记为废弃的代码
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-04-04 01:15:31 +08:00
7912d3fd64
fix: 修复页面初始化时对话列表不加载的bug
...
问题描述:
- 页面刷新后对话列表显示"暂无对话记录"
- 必须创建新对话才会触发列表加载
- 用户体验很差
根本原因:
- loadInitialData() 方法中缺少 loadConversationsList() 调用
- 对话列表只在创建新对话时才会刷新(createNewConversation 第383行)
- 导致页面初始化时 conversations 数组为空
修复方案:
- 在 loadInitialData() 末尾添加对话列表加载
- 重置 conversationsOffset 为 0 确保从头加载
- 在其他初始化任务完成后执行,避免阻塞
测试:
1. 刷新页面,对话列表应立即显示
2. 创建新对话,列表应正常更新
3. 切换对话,列表应保持正常
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-04-04 01:08:13 +08:00
8d6c59deed
feat: 优化轮询机制(重试、清理、错误提示)
...
Phase 3 轮询优化:
1. 添加重试机制(task.ts)
- 新增 pollingErrorCount 状态字段
- 添加 5 秒超时(AbortSignal.timeout)
- 连续失败 5 次后停止轮询并通知用户
- 成功后重置错误计数
2. 改进错误提示(taskPolling.ts)
- 根据 error_type 提供友好提示
- 支持 api_error、timeout、quota_exceeded 等类型
- 延长错误提示显示时间(8秒)
3. 添加任务清理机制(tasks.py)
- 新增 cleanup_old_tasks() 方法
- 清理超过 1 小时的已完成任务
- 启动后台定时器(每 10 分钟清理一次)
- 减少内存占用,支持长期运行
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-04-04 01:04:35 +08:00
de82a37958
fix: 修复代码块复制、事件去重、任务结束、停止按钮bug
...
Phase 1 关键Bug修复:
1. 代码块复制功能
- 删除 index.html 中的全局事件监听(47-53行)
- 避免与 Vue 方法的双重监听冲突
2. 事件去重机制
- 在 handleTaskEvent() 添加基于 idx 的去重检查
- 使用 Set 存储已处理的事件索引(最多1000个)
- 在 restoreTaskState() 时清理已处理事件
3. 任务结束逻辑
- 修复 handleTaskComplete() 异步状态清理问题
- 新增 clearTaskState() 统一清理方法
- 在 stopPolling() 中清除 currentTaskId
4. 停止按钮状态同步
- 改进 stopTask() 错误处理
- 添加后端确认等待(300ms)
- 确保失败时也清理前端状态
- 添加 finally 块清除 dropToolEvents
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-04-04 01:03:06 +08:00
860fa7b539
feat(web): remove socket dependency from main chat flow
2026-04-03 11:34:42 +08:00
12c7a4bdd9
fix: remove legacy file edit tags
2026-03-17 22:43:51 +08:00
f3179e2a97
feat: 优化滚动锁定和个性化称呼功能
...
滚动锁定优化:
- 滚动锁定默认始终启用,不再根据输出状态自动解锁
- 深色模式下锁定图标显示为白色,与箭头图标保持一致
个性化称呼功能:
- AI 助手名称根据个性化设置中的"自称"动态显示
- 用户名称根据个性化设置中的"称呼"动态显示
- 页面初始化时自动加载个性化设置,无需打开个人空间
- 在"模型行为"中新增"使用自定义称呼"开关
- 开关关闭时显示默认的"AI Assistant"和"用户"
- 修复保存后开关状态被重置的问题
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-13 12:10:08 +08:00
bd863f6d38
feat: 优化图片/视频上传和显示功能
...
- 支持从本地一次选择多个文件上传
- 图片选择器上传完成后自动关闭
- 输入框和用户消息块显示缩略图(60x60px)而非文件名
- 输入框缩略图悬停时显示删除按钮(右上角 × 符号)
- 统一图片/视频预览样式,提升用户体验
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-13 11:40:54 +08:00
cd3f07bcc8
fix: enrich sub-agent results
2026-03-11 18:05:01 +08:00
ed82fc966e
fix: improve sub-agent ui and state
2026-03-11 15:40:28 +08:00
f09621fd86
feat: 为子智能体添加思考模式参数
...
- 新增 thinking_mode 参数(fast/thinking),支持根据任务复杂度选择模式
- 优化子智能体工具说明,提供详细的使用场景示例
- 增强子智能体状态展示,添加统计信息摘要
- 完善交付目录验证,要求必须为不存在的新目录
- 优化子智能体完成/超时/失败的消息格式
- 同步更新前端和批处理相关代码
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-11 03:34:20 +08:00
b68dee9d98
chore: snapshot current changes
2026-03-10 23:48:40 +08:00
e395c82a9f
fix: 优化对话压缩和复制功能
...
- 隐藏前端系统消息块显示
- 修复压缩对话后自动跳转到新对话
- 压缩对话标题改为"原标题 压缩后"
- 复制对话标题改为"原标题 的副本"
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-09 17:59:53 +08:00
a4d3160b0a
fix: 修复页面加载时出现两次动画的问题
...
问题原因:
- Socket 事件(conversation_changed, status_update 等)在初始化期间与 bootstrapRoute 并发执行
- loadConversationsList 在初始化期间自动加载第一个对话
- 导致 currentConversationId 被多次设置,触发多次历史加载和动画
解决方案:
- 在 Socket 事件处理中添加 initialRouteResolved 检查
- 初始化完成前,Socket 事件不修改 currentConversationId
- loadConversationsList 在初始化完成前不自动加载对话
- 确保所有数据(历史、文件树、思考模式等)在同一时间加载完成
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-09 16:59:56 +08:00
cd68812743
fix: 修复页面刷新时思考块自动展开的问题
...
- 在历史加载时给思考块设置 collapsed: true 默认折叠
- 在任务恢复时跳过思考块的展开/折叠动画
- 延迟清除 _rebuildingFromScratch 标记,确保所有历史事件处理完毕
- 删除过早清除重建标记的逻辑,避免后续思考块被展开
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-09 16:31:00 +08:00
d71525a3c6
feat: add personal usage stats
2026-03-09 12:03:47 +08:00
77b96623ac
feat: 优化手机端UI布局和样式
...
- 手机端对话内容左右边距减小,AI消息更贴近屏幕边缘
- 修复工具intent文本溢出显示省略号,保持箭头和图标位置不变
- 重构手机端左上角菜单为纵向下拉样式,新增"新建对话"选项
- 统一菜单图标大小和线条粗细,支持亮色/暗色主题自动适配
- 修复个人空间弹窗顶部被状态栏遮挡问题
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-09 00:20:47 +08:00
43409c523e
fix: 移除错误的对话切换跳转逻辑并修复工具执行返回值问题
...
主要修复:
1. 移除前端"取消跳转到正在运行的对话"的错误逻辑
- 删除 switchConversation 中的任务检查和确认提示
- 删除 createNewConversation 中的跳转回运行对话逻辑
- 删除 loadConversation 中对未定义变量 hasActiveTask 的引用
2. 修复后端工具执行返回值问题
- 修复 execute_tool_calls 在用户停止时返回 None 的 bug
- 确保所有返回路径都返回包含 stopped 和 last_tool_call_time 的字典
3. 其他改进
- 添加代码复制功能 (handleCopyCodeClick)
- 移除 FocusPanel 相关代码
- 更新个性化配置 (enhanced_tool_display)
- 样式和主题优化
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-08 17:42:07 +08:00
5ce21eb280
修复手机端个人空间选项卡滑动问题
...
- 为选项卡容器添加 width: 100% 和 max-width: 100% 限制宽度
- 添加 -webkit-overflow-scrolling: touch 启用 iOS 平滑滚动
- 添加 touch-action: pan-x 明确允许横向触摸滚动
- 添加 scroll-behavior: smooth 实现平滑滚动效果
- 添加 overscroll-behavior-x: contain 防止滚动溢出
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-08 04:52:30 +08:00
07be7a1061
feat: gracefully stop tool execution on user request
...
- Remove direct task.cancel() calls, use stop flag instead
- Monitor stop flag every 100ms during tool execution
- Cancel tool task immediately when stop flag is detected
- Return "命令执行被用户取消" as tool result with role=tool
- Save cancellation result to conversation history
- Prevent abrupt task termination, allow graceful shutdown
Changes:
- server/socket_handlers.py: Comment out pending_task.cancel()
- server/tasks.py: Comment out entry['task'].cancel()
- server/chat_flow_tool_loop.py: Add stop flag monitoring loop
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-08 03:50:34 +08:00
141f6116fd
perf: increase conversation search batch size
...
- Increase initial search batch from 100 to 5000
- Increase load more batch from 50 to 200
- Raise backend API limit from 100 to 10000
- Improve search performance for large conversation lists
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-08 03:32:43 +08:00
0e4f625338
feat: add task confirmation when switching conversations
...
- Prompt user to confirm when switching/creating conversation with active task
- Automatically stop running task after user confirmation
- Filter out events from previous conversation to prevent cross-talk
- Show toast notification after task is stopped
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-08 03:32:35 +08:00
801d20591c
feat: 实现 REST API + 轮询模式,支持页面刷新后任务继续执行
...
主要改进:
- 新增 REST API 任务管理接口 (/api/tasks)
- 实现 150ms 轮询机制,提供流畅的流式输出体验
- 支持页面刷新后自动恢复任务状态
- WebSocket 断开时检测 REST API 任务,避免误停止
- 修复堆叠块融合问题,刷新后内容正确合并
- 修复思考块展开/折叠逻辑,只展开正在流式输出的块
- 修复工具块重复显示问题,通过注册机制实现状态更新
- 修复历史不完整导致内容丢失的问题
- 新增 tool_intent 事件处理,支持打字机效果显示
- 修复对话列表排序时 None 值比较错误
技术细节:
- 前端:新增 taskPolling.ts 和 task store 处理轮询逻辑
- 后端:TaskManager 管理任务生命周期和事件存储
- 状态恢复:智能判断是否需要从头重建,避免内容重复
- 工具块注册:恢复时注册到 toolActionIndex,支持状态更新
- Intent 显示:0.5-1秒打字机效果,历史加载直接显示
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-08 03:12:46 +08:00
66b846ee37
refactor: split frontend app modules
2026-03-08 00:03:14 +08:00
c067df4e1b
feat: add include_domains search filter and UI display
2026-03-07 17:50:35 +08:00
877bcc2fad
fix: improve api error diagnostics and raise model quotas
2026-03-06 17:02:19 +08:00
868640b479
feat: add aliyun quota fallback
2026-03-06 12:31:20 +08:00
4be61fe76e
feat: unify terminal session controls
2026-03-04 23:49:10 +08:00
eb32e31cc1
feat: update image and video sending
2026-02-25 13:20:27 +08:00
8d0c187bbf
fix: ignore empty text blocks in stacks
2026-02-25 13:20:15 +08:00
3f76780fff
fix: avoid empty text action on stream
2026-02-25 03:18:18 +08:00
08bc08b35f
feat: update model support and multimodal
2026-02-25 01:41:05 +08:00
89eeb449b5
chore: sync workspace updates
2026-02-23 01:20:41 +08:00
7472028997
feat: add skills framework and controls
2026-02-07 00:20:35 +08:00
b0941a247b
fix: reduce workspace scans in host mode
2026-02-06 17:09:19 +08:00
55ef45e04d
feat: add silent disable option and workspace prompt split
2026-02-03 23:11:15 +08:00
50b0dd9336
fix: wrap chat text and align header fonts
2026-02-02 18:34:07 +08:00
406e777e22
feat: improve compression and context budgeting
2026-01-31 10:30:00 +08:00
b81e14b314
feat: add video processing toast
2026-01-30 18:15:54 +08:00
bb91d22631
feat: add video send/view flow and guard model constraints
2026-01-30 17:04:33 +08:00
462b0ed6f3
feat: move model and mode pickers to header bar
2026-01-30 15:55:27 +08:00
7890926c3d
fix: improve cancellation flow and api error tracing
2026-01-30 15:36:44 +08:00
453df30f45
refactor: replace file diff tools, simplify todos, disable typewriter
2026-01-29 14:20:01 +08:00
6f8c1b36cc
feat: add image compression preference for uploads
2026-01-28 11:43:09 +08:00
60d27e9c1c
fix: refine host mode controls and kimi-k2.5 support
2026-01-28 11:19:50 +08:00
8a7cc5d9c6
feat: support kimi-k2.5 with multimodal thinking
2026-01-28 10:34:27 +08:00
d8cffa30cc
feat: add host mode quick entry
2026-01-28 10:01:04 +08:00
51f61b04d2
feat: add api admin ui and container status fix
2026-01-25 10:49:52 +08:00
d6fb59e1d8
refactor: split web_server into modular architecture
...
- Refactor 6000+ line web_server.py into server/ module
- Create separate modules: auth, chat, conversation, files, admin, etc.
- Keep web_server.py as backward-compatible entry point
- Add container running status field in user_container_manager
- Improve admin dashboard API with credentials and debug support
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-22 09:21:53 +08:00
88dc7e02a4
feat: improve onboarding and copy ux
2026-01-19 21:02:24 +08:00
e256182304
fix: stabilize code block font to prevent jitter
2026-01-07 19:06:04 +08:00
60e63595a6
chore: sync pending changes
2026-01-05 21:48:55 +08:00
5c7cdd72c9
feat: add custom tools guide and id validation
2026-01-05 21:46:55 +08:00
cec28df931
feat: add manual balance checker for admin monitor
2026-01-05 14:10:19 +08:00
99cbea30da
feat: polish admin policy UI and tool selection
2026-01-05 13:34:00 +08:00
3540fa8e4b
feat: conversation review flow and token fixes
2026-01-05 00:59:35 +08:00
f9b5aa2af9
fix: reset defaults for new conversations
2026-01-03 16:46:33 +08:00
f5cf2fb7e7
fix: send full extract_webpage content to model
2026-01-03 15:03:41 +08:00
e2ba632ac8
feat: expand model support and qwen-vl ux
2026-01-03 07:01:24 +08:00
e903c99ca4
fix: refine title ribbon visuals and typing
2026-01-02 14:26:59 +08:00
d34fbe963a
fix: unify collapse animation and scroll lock reset
2026-01-02 12:39:23 +08:00
95285747c0
fix: persist search results and speed init
2026-01-02 12:14:04 +08:00
9ae43e89ff
fix: smooth scroll when unlocking
2026-01-01 20:17:21 +08:00
b42cb3b032
fix: allow scroll button tap when idle
2026-01-01 19:39:40 +08:00
7853830624
feat: improve vlm workflow and workspace image serving
2026-01-01 18:56:29 +08:00
8ead6ebc08
fix: avoid auto re-locking scroll after tasks
2026-01-01 17:37:55 +08:00
ce5032cef4
fix: keep scroll lock user-controlled during thinking
2026-01-01 17:35:22 +08:00
f725212988
feat: support inline image rendering via show_image and user_upload route
2026-01-01 16:41:24 +08:00
52f6135d37
fix: sync stacked more animation with container
2026-01-01 15:00:42 +08:00
eeb3db084b
chore: snapshot before collapse fix
2026-01-01 14:23:39 +08:00
2a67e10e9b
feat: add tool intent toggle
2026-01-01 06:20:41 +08:00
8de3b5d24a
fix: prevent duplicate history animation
2026-01-01 06:15:01 +08:00
4262922694
fix: intent streaming defaults and UI stability
2026-01-01 05:48:13 +08:00
713659a644
feat: refine stacked blocks toggle and animations
2026-01-01 03:06:05 +08:00
93304bd2b8
chore: snapshot before stacked blocks demo
2026-01-01 01:09:24 +08:00
7639e0677b
fix: stabilize thinking block animation and bg streaming
2025-12-31 09:27:21 +08:00
15e1f3c40f
fix: allow quick menu actions and stabilize blank welcome
2025-12-30 10:47:06 +08:00
099de1e922
feat: add blank chat hero and limit quick menu actions
2025-12-30 10:32:09 +08:00
5bdbfa138e
feat: auto-generate chat titles with personalization toggle
2025-12-30 09:43:53 +08:00
7b735e252f
fix: keep model activity alive and switch new chats
2025-12-30 09:16:51 +08:00
385c8154ea
chore: pause container polling when tab hidden
2025-12-16 22:27:19 +08:00
599f331c35
fix: harden container status polling after idle
2025-12-16 20:32:24 +08:00
760fae4920
fix: simplify folder icon handling
2025-12-16 18:01:33 +08:00
e27bc62ca7
fix: 缓存项目存储轮询并降低频率
2025-12-16 16:35:58 +08:00
fc88a22272
fix: render monitor desktop immediately on load
2025-12-16 00:39:36 +08:00
fce6fb0eb8
feat(ui): allow live switch between chat and monitor views
2025-12-15 22:44:46 +08:00
c96e99cd13
fix(ui): load folder contents in monitor and improve messages
2025-12-15 22:34:25 +08:00
3729cae4d2
chore(ui): show real tool names and speed long inputs
2025-12-15 18:24:44 +08:00
8fe06753bb
fix: stabilize terminal tool timeouts
2025-12-15 15:15:03 +08:00
28383722cc
fix: keep wait overlay alive for long waits
2025-12-15 00:52:32 +08:00
8c304c113f
fix: guard memory empty snapshot replay
2025-12-15 00:10:00 +08:00
9750b0b8f1
fix: sync wait overlay with runtime
2025-12-14 23:28:22 +08:00
d5e6c9c077
fix: keep todo scrolling simple and visible
2025-12-14 22:07:21 +08:00
8b250c5c6b
feat: redesign todo window animation and layout
2025-12-14 21:20:29 +08:00
9183e0caf0
fix: refine memory monitor scrolling and snapshots
2025-12-14 21:03:21 +08:00
8755688c8e
feat: enhance virtual monitor command/python playback
2025-12-14 17:38:03 +08:00
757e1adaae
fix: sync stop states with composer busy
2025-12-14 17:35:34 +08:00
55af5b52c6
fix: delay tool blocks until text fully streamed
2025-12-14 14:50:20 +08:00
6d330b1388
chore: checkpoint before tool playback change
2025-12-14 14:43:54 +08:00
053db95fee
feat: virtual monitor
2025-12-14 04:22:00 +08:00
2f75c1c8bb
feat: stable version before virtual monitor timing fix
...
Current status includes:
- Virtual monitor surface and components
- Monitor store for state management
- Tool call animations and transitions
- Liquid glass shader integration
Known issue to fix: Tool status display timing - "正在xx" appears
after tool execution completes instead of when tool call starts.
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-13 17:12:12 +08:00
d97955fdc1
feat: reimport liquid glass shader
2025-12-04 15:47:32 +08:00
eb7ccf1dd2
feat: restore run mode personalization
2025-12-02 19:03:33 +08:00
97da631e01
chore: refresh deep mode styling
2025-11-30 17:57:48 +08:00
2fea4a7244
refactor: remove legacy think tags
2025-11-30 15:15:35 +08:00
02ab023ad7
feat: persist behavior preferences
2025-11-30 13:11:04 +08:00
9bfc6f3903
feat: redesign personal space layout
2025-11-30 02:21:46 +08:00
93c53eed32
fix: eagerly reload conversations
2025-11-30 01:00:48 +08:00
3a7ed2e042
fix: polish streaming state and ui controls
2025-11-30 00:54:55 +08:00
87ceaad92b
feat: improve ui feedback
2025-11-30 00:09:05 +08:00
09654b7d4b
fix: stabilize conversation loading
2025-11-29 23:13:11 +08:00
dd32db7677
feat: persist api usage tokens
2025-11-29 17:45:32 +08:00
e42a924429
fix: stabilize streaming buffer drain
2025-11-29 17:01:28 +08:00
7e2550880d
fix: refine search quota and upload flow
2025-11-27 19:36:09 +08:00
4563fad2d9
feat: enhance workspace toggle and mobile topbar
2025-11-27 18:42:08 +08:00
8655e64ed7
fix: show desktop sidebar collapse control
2025-11-27 13:34:08 +08:00
4fe0ee473a
feat: improve mobile overlays and focus panel
2025-11-26 23:50:57 +08:00
4cd4232c62
Revert "feat: restyle utility panel and streaming focus"
...
This reverts commit 931a0488cc .
2025-11-26 20:21:49 +08:00
931a0488cc
feat: restyle utility panel and streaming focus
2025-11-26 20:00:11 +08:00
79a90f4fad
fix: stabilize tool error rendering
2025-11-26 18:45:47 +08:00
b39d7cc795
chore: snapshot before tool ui fix
2025-11-26 18:07:52 +08:00
ef4479866e
fix: prevent duplicate history loading
2025-11-25 23:55:33 +08:00
e8411affc1
feat: add loading animation
2025-11-25 23:46:30 +08:00
2d083786bf
fix: integrate sidebar components
2025-11-25 23:19:38 +08:00
7cc91571de
feat: modularize frontend layout
2025-11-25 22:41:15 +08:00
91371b4e94
fix: restore chat container height
2025-11-25 21:25:08 +08:00
35dc89abed
fix: restore floating input layout
2025-11-25 21:20:23 +08:00
c6bf3a3986
chore: drop legacy css fallback
2025-11-25 21:15:32 +08:00
bfa7b540cb
fix: restore chat layout and file tree
2025-11-25 21:13:09 +08:00
a6da8280ff
fix: harden terminal websocket init
2025-11-24 20:11:58 +08:00
75a7febcd1
feat: add upload quarantine scanning and ui toasts
2025-11-24 14:31:13 +08:00
fd797e3e36
feat: redesign token usage dashboard
2025-11-24 00:59:43 +08:00
8c8b2d3a20
chore: snapshot before usage menu update
2025-11-24 00:47:17 +08:00
7348eab83a
docs: refresh readme and phase2 summary
2025-11-23 21:24:09 +08:00
b81d6760bd
feat: containerize terminals and add resource controls
2025-11-23 18:49:35 +08:00
f3206357e9
fix: auto-save personalization toggle
2025-11-22 18:42:14 +08:00
d0af9755c6
feat: enhance personal space experience
2025-11-22 18:14:23 +08:00
57f218d57c
fix: keep quick menu open while interacting
2025-11-22 13:17:05 +08:00
e25384d342
feat: modularize easter egg effects
2025-11-22 13:07:54 +08:00
afd1bb9d28
feat: add hidden easter egg flood effect
2025-11-22 02:25:42 +08:00
6e8321cf7e
feat: polish logo card with svg transitions
2025-11-22 00:14:40 +08:00
411cbf71ee
feat: replace ui emoji with svg icons
2025-11-21 23:33:35 +08:00
b2cfabcd1b
fix: refine sidebar ui and conversation sorting
2025-11-21 22:37:55 +08:00
9a83f92dd9
fix: improve terminal history rendering
2025-11-21 19:06:12 +08:00
21f206559e
revert: restore terminal monitor layout
2025-11-21 14:28:00 +08:00
d71c935d3c
fix: vector stop icon
2025-11-21 10:41:49 +08:00
2d7a1b6f0c
fix: smooth stadium glow
2025-11-21 00:43:55 +08:00
cd59bbfa41
fix: refine input stadium interactions
2025-11-21 00:38:22 +08:00
2beaf6c702
fix: tweak settings buttons and send icon
2025-11-20 19:05:49 +08:00
aee18837e4
feat: enhance smart thinking scheduling
2025-11-20 17:25:30 +08:00
d9eff0c803
refactor: adjust frontend layout
2025-11-20 15:43:34 +08:00
d10ae0c4bb
feat: add compact layout demo
2025-11-20 11:59:32 +08:00
6921939c13
<fix thinking chunk>
2025-11-19 20:47:56 +08:00
cf4d34e7ac
chore: collapse token panel by default
2025-11-18 23:03:08 +08:00
49d2a7b915
feat: add realtime terminal entry
2025-11-18 22:58:35 +08:00
aea1463730
feat: use camera icon for ocr tool
2025-11-18 22:43:35 +08:00
05b404687a
feat: auto-scroll thinking block with per-block lock
2025-11-18 22:27:56 +08:00
e7a81f00e7
feat: auto-scroll and collapse thinking blocks
2025-11-18 22:19:15 +08:00
19c0e9d04b
fix: simplify settings mode button label
2025-11-18 22:11:19 +08:00
5106b0333a
fix: clarify settings mode button label
2025-11-18 22:10:11 +08:00
041c79f3b7
fix(web): persist thinking mode toggle
2025-11-18 10:35:12 +08:00
7ca7bddba4
feat(web): make thinking toggle usable
2025-11-18 10:27:23 +08:00
f7ce0559b7
feat(web): add reasoning mode toggle
2025-11-18 10:12:16 +08:00
01138d0881
fix: clean sub agent tooling
2025-11-15 15:51:17 +08:00
ba47147425
chore: snapshot sub agent baseline
2025-11-15 11:21:31 +08:00
0ac246c22b
feat: integrate sub agent workflow
2025-11-15 02:41:13 +08:00
8709dda329
style: enforce square tool cards
2025-11-14 22:32:48 +08:00
aa76738b44
style: square tool cards layout
2025-11-14 22:31:14 +08:00
d6b58436d1
style: compact tool grid to 4 columns
2025-11-14 22:28:53 +08:00
e11c76fee8
chore: arrange tool menu into 3 columns
2025-11-14 22:24:09 +08:00
b9a08671a9
feat: redesign tool menu grid
2025-11-14 22:21:27 +08:00
dacc68f46a
feat: enhance read tool and config structure
2025-11-14 18:33:55 +08:00
fea932425a
chore: initial import
2025-11-14 16:44:12 +08:00