757718c492
feat: add user turn tool protection to shallow compression
...
- Add shallow_compress_keep_user_turn_tools config (default: 3)
- Add is_auto_generated metadata to system messages (sub_agent/background_command)
- Fix sub_agent notification path to include auto_message marker
- Frontend: add input field in PersonalizationDrawer
- Backend: implement protection logic in _run_auto_shallow_compression
2026-04-12 18:48:08 +08:00
ccb7128867
feat: 实现AGENTS.md自动注入功能和根目录文件创建限制功能
2026-04-12 16:34:57 +08:00
aeb3fb1285
feat: 添加个性化配置字段 - AGENTS.md自动注入和根目录文件创建开关
2026-04-12 16:34:00 +08:00
eba36c46da
fix(versioning): 压缩继承版本控制并忽略系统目录
2026-04-11 17:02:39 +08:00
6379f8c729
feat: complete conversation versioning UX and restore workflow
2026-04-11 16:16:40 +08:00
e814e89e32
feat: add conversation-bound permission modes and tool approval flow
2026-04-11 04:07:28 +08:00
90233690ad
feat: add json-based extensible model registry and dynamic model UI
2026-04-09 20:56:54 +08:00
a04eca3aab
fix: unify background run_command notifications with sub-agent flow
2026-04-08 16:13:40 +08:00
d798d39da3
fix: persist onboarding prompt status and bump android app to 1.0.20
2026-04-07 20:08:33 +08:00
9a2bae04b5
fix: repair admin monitor auth and add invite CRUD
2026-04-07 18:23:09 +08:00
3ae5be47d9
feat: add per-skill strict read-before-tool enforcement
2026-04-07 11:50:38 +08:00
bc939a0098
feat: make context compression policy configurable and stabilize compression UX
2026-04-06 16:51:43 +08:00
7e03e3cd5f
feat: stabilize context compression and deep-compact flow
2026-04-06 15:12:25 +08:00
5f6622a212
chore: add docs and remove sub_agent
2026-03-17 22:46:43 +08:00
12c7a4bdd9
fix: remove legacy file edit tags
2026-03-17 22:43:51 +08:00
5ab3acef9c
feat: 添加 terminal-guide 和 sub-agent-guide skills
...
- 新增 terminal-guide skill: 持久化终端使用指南
- 新增 sub-agent-guide skill: 子智能体使用指南
- 优化终端工具定义和执行逻辑
- 更新系统提示词以引用新 skills
- 添加 utils/__init__.py 模块初始化文件
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-16 21:17:02 +08:00
96d0e68347
fix: run sub-agent tools inside container
2026-03-14 21:13:27 +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
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
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
823b1e105e
feat: implement graceful tool cancellation on stop request
...
- Add stop flag monitoring loop (checks every 100ms during tool execution)
- Cancel tool task immediately when stop flag is detected
- Return cancellation message to conversation history with role=tool
- Save cancellation result: '命令执行被用户取消'
- Clean up pending tasks to prevent 'Task was destroyed but it is pending' warnings
- Fix terminal_ops.py to properly cancel stdout/stderr read tasks
Known issue: Tool result display in frontend still shows arguments instead of cancellation message when expanded
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-08 04:12:50 +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
4be61fe76e
feat: unify terminal session controls
2026-03-04 23:49:10 +08:00
12047ce237
feat: add terminal_input timeout hints
2026-02-25 15:21:35 +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
9ded11de7a
feat: support batch todo updates
2026-01-30 18:50:02 +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
d0197c38c3
fix: expand workspace file access and paginate convo index
2026-01-25 16:13:32 +08:00
51f61b04d2
feat: add api admin ui and container status fix
2026-01-25 10:49:52 +08:00
6e0df78fef
feat(api): multi-workspace endpoints and container cleanup
2026-01-24 18:29:30 +08:00
82e7d0680a
feat: add api v1 bearer auth and polling docs
2026-01-24 02:35:07 +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
c787df2cef
fix: reuse terminal container for command exec
2026-01-20 21:08:39 +08:00
aacdfc78eb
fix: fallback timeout wrapper for terminal commands
2026-01-19 21:57:59 +08:00
026588bba3
fix: align toolbox python env for run_command
2026-01-19 20:58:38 +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
4cfd0ef090
fix: stop converting Kimi balance and switch Qwen endpoint to business.aliyuncs.com
2026-01-05 14:22:06 +08:00
1cf8bd7014
fix: use Kimi base URL from env to avoid 401
2026-01-05 14:19:37 +08:00
5fd2739878
fix: align qwen balance signing/query encoding to avoid 400
2026-01-05 14:18:41 +08:00
2d17143d72
fix: fallback to existing kimi/deepseek key names in balance fetch
2026-01-05 14:17:43 +08:00
e58936bf05
chore: read balance creds from .env by default
2026-01-05 14:13:51 +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
f9b5aa2af9
fix: reset defaults for new conversations
2026-01-03 16:46:33 +08:00
7853830624
feat: improve vlm workflow and workspace image serving
2026-01-01 18:56:29 +08:00
61b6b2d492
chore: clarify /workspace path error message
2026-01-01 17:16:39 +08:00
4262922694
fix: intent streaming defaults and UI stability
2026-01-01 05:48:13 +08:00
5bdbfa138e
feat: auto-generate chat titles with personalization toggle
2025-12-30 09:43:53 +08:00
385c8154ea
chore: pause container polling when tab hidden
2025-12-16 22:27:19 +08:00
c96e99cd13
fix(ui): load folder contents in monitor and improve messages
2025-12-15 22:34:25 +08:00
4617e00693
fix: improve terminal timeouts and clean outputs
2025-12-15 18:13:53 +08:00
b78921b1ca
fix: correct terminal_input error reporting
2025-12-15 16:04:47 +08:00
8fe06753bb
fix: stabilize terminal tool timeouts
2025-12-15 15:15:03 +08:00
ca8f65fe35
feat: index-based memory tool with append/replace/delete
2025-12-14 17:56:18 +08:00
8755688c8e
feat: enhance virtual monitor command/python playback
2025-12-14 17:38:03 +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
eb7ccf1dd2
feat: restore run mode personalization
2025-12-02 19:03:33 +08:00
51bb0f1033
fix: improve write_file_diff diagnostics
2025-12-01 23:44:56 +08:00
02ab023ad7
feat: persist behavior preferences
2025-11-30 13:11:04 +08:00
2847ade631
chore: log project size errors
2025-11-30 13:09:36 +08:00
b39d7cc795
chore: snapshot before tool ui fix
2025-11-26 18:07:52 +08:00
7cc91571de
feat: modularize frontend layout
2025-11-25 22:41:15 +08:00
75a7febcd1
feat: add upload quarantine scanning and ui toasts
2025-11-24 14:31:13 +08:00
7c7038b5c9
fix: delay quota window start until first use
2025-11-24 01:38:24 +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
089a3ad0c9
feat: update prompts and backend
2025-11-22 18:17:24 +08:00
d0af9755c6
feat: enhance personal space experience
2025-11-22 18:14:23 +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
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
6921939c13
<fix thinking chunk>
2025-11-19 20:47:56 +08:00
20ff71bda0
fix: ensure todo system note follows tool result
2025-11-18 19:05:23 +08:00
71f24c2d72
fix: include completed sub agents in overview
2025-11-18 18:05:50 +08:00
7b804bf65f
fix: patch ocr http client for httpx 0.28
2025-11-18 17:17:15 +08:00
adb1f1249a
feat: add ocr tool for main and sub agent
2025-11-18 17:06:48 +08:00
1b69bc2719
fix: propagate manual termination status
2025-11-15 17:20:26 +08:00
f2bfa3f377
feat: add sub agent termination control
2025-11-15 17:10:58 +08:00
3100643534
feat: add close_sub_agent tool
2025-11-15 16:51:13 +08:00
dc1d566db3
fix: clarify wait tool and todo prompts
2025-11-15 16:43:23 +08:00
3eec18b8a9
fix: per conversation sub agent limit and todo hints
2025-11-15 16:40:01 +08:00
1c4a7ba003
fix: isolate sub agent limits
2025-11-15 16:33:25 +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