Windows Computer-Use Skill
Use this skill when the task needs a portable Windows computer-use skill bundled with its own standalone runtime and MCP server.
What this skill does
- - uses the bundled
windows-computer-use-skill project under the installed skill directory - builds the standalone MCP server
- lets the server auto-bootstrap its Python runtime on first launch
- avoids any dependency on local Claude binaries,
.node modules, or extracted app assets - stays explicitly Windows-only because the underlying desktop-control backend is Windows-specific
Default bundled project path
After installation, assume the standalone project lives at:
CODEBLOCK0
If the user installed the skill under a custom CODEX_HOME, use that equivalent path instead.
Build
Always build from the bundled project:
CODEBLOCK1
Run
CODEBLOCK2
The first real run will automatically create .runtime/venv and install the public Python dependencies.
Validation notes
- - Version
0.1.1 fixes the shared system-key blocklist logic so Windows runtime builds use the correct Windows shortcut denylist instead of a broken cross-platform branch. - This project has been statically validated from macOS for TypeScript build health, bundled project integrity, and Python helper syntax, but still needs end-to-end runtime validation on a real Windows machine.
Guardrails
- - Treat this host as trusted-local only.
- Do not tell the user to search their local Claude install for binaries or hidden assets.
- Be explicit that this runtime is standalone and uses public dependencies only.
- Mention that the current runtime reports
screenshotFiltering: none, so action gating is handled at the MCP layer.
Windows 计算机使用技能
当任务需要一个包含独立运行时和MCP服务器的便携式Windows计算机使用技能时,请使用此技能。
该技能的功能
- - 使用已安装技能目录下捆绑的 windows-computer-use-skill 项目
- 构建独立的MCP服务器
- 让服务器在首次启动时自动引导其Python运行时
- 避免依赖本地Claude二进制文件、.node 模块或提取的应用资源
- 明确仅适用于Windows,因为底层桌面控制后端是Windows专用的
默认捆绑项目路径
安装后,假设独立项目位于:
bash
~/.codex/skills/computer-use-windows/project
如果用户在自定义的 CODEX_HOME 下安装了该技能,请使用相应的路径替代。
构建
始终从捆绑项目进行构建:
bash
cd ~/.codex/skills/computer-use-windows/project
npm install
npm run build
运行
bash
cd ~/.codex/skills/computer-use-windows/project
node dist/cli.js
首次实际运行将自动创建 .runtime/venv 并安装公开的Python依赖项。
验证说明
- - 版本 0.1.1 修复了共享系统按键阻止列表逻辑,使Windows运行时构建使用正确的Windows快捷键阻止列表,而非损坏的跨平台分支。
- 该项目已在macOS上对TypeScript构建健康度、捆绑项目完整性以及Python辅助语法进行了静态验证,但仍需在真实Windows机器上进行端到端运行时验证。
使用限制
- - 仅将此主机视为受信任的本地主机。
- 不要告知用户搜索其本地Claude安装中的二进制文件或隐藏资源。
- 明确说明此运行时是独立的,仅使用公开依赖项。
- 提及当前运行时报告 screenshotFiltering: none,因此操作门控在MCP层处理。