mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-15 12:55:51 +00:00
三平台 Computer Use (macOS + Windows + Linux),Windows 专项增强。
- MCP server: toolCalls/tools/executor/mcpServer 等 12 文件完整实现
- 平台抽象层: platforms/{win32,darwin,linux}.ts
- 跨平台 executor: executorCrossPlatform.ts
- CHICAGO_MCP + VOICE_MODE feature flags 启用
- windowMessage.ts: SendMessageW (WM_CHAR Unicode + 剪贴板粘贴)
- windowBorder.ts: 4 叠加窗口边框 (30fps 跟踪)
- uiAutomation.ts: UI Automation 元素树/点击/写值
- accessibilitySnapshot.ts: 无障碍快照 → 模型感知 GUI
- bridge.py + bridgeClient.ts: Python 长驻进程 (替代 per-call PS)
- window_management: min/max/restore/close/focus (Win32 API)
- click_element / type_into_element: 按名称操作 (无需坐标)
- 截图自动附带 Accessibility Snapshot
- 17 种方法, stdin/stdout JSON 通信
- 窗口枚举 1.5ms vs PS 500ms, 截图 360ms vs PS 800ms
- 依赖: mss + Pillow + pywinauto
29 lines
295 B
Plaintext
29 lines
295 B
Plaintext
node_modules
|
|
.DS_Store
|
|
dist
|
|
coverage
|
|
.env
|
|
*.log
|
|
.idea
|
|
.vscode
|
|
*.suo
|
|
*.lock
|
|
src/utils/vendor/
|
|
|
|
# AI tool runtime directories
|
|
.agents/
|
|
.codex/
|
|
.omx/
|
|
|
|
# Binary / screenshot files (root only)
|
|
/*.png
|
|
*.bmp
|
|
|
|
# Agent / tool state dirs
|
|
.swarm/
|
|
.agents/__pycache__/
|
|
|
|
# Python bytecode
|
|
__pycache__/
|
|
*.pyc
|