Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计未展示

install-windows-3.11安装 Windows 3 11

Agent Skill

install-windows-3.11 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

857

周安装

35

GitHub Stars

93

下载量

274
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:install-windows-3.11(安装 Windows 3 11)
来源仓库:https://github.com/letta-ai/skills
仓库路径:skills/install-windows-3.11
安装命令:
npx skills add https://github.com/letta-ai/skills --skill install-windows-3.11
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill install-windows-3.11

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • install-windows-3.11 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Install Windows 3.11 in QEMU

Overview

This skill provides procedural knowledge for installing and running Windows 3.11 in a QEMU virtual machine with VNC and web-based access. Windows 3.11 is a legacy 16-bit operating system that requires specific QEMU configuration for proper operation.

Pre-Installation Checklist

Before starting, verify the following:

  1. Check for expected file paths and naming conventions - Tests or acceptance criteria may expect specific paths (e.g., /tmp/qemu-monitor.sock vs /tmp/monitor-socket). Review any test files or documentation first.
  2. Identify the disk image location and format - Common locations include /app/isos/ or /var/lib/qemu/
  3. Determine QEMU version compatibility - If the image is known to work with a specific QEMU version, note any compatibility flags needed

QEMU Configuration for Windows 3.11

Essential Parameters

Windows 3.11 requires specific QEMU parameters for proper operation:

qemu-system-i386 \
  -drive file=/path/to/win311.img,format=raw,if=ide \
  -m 32 \
  -vga cirrus \
  -vnc :1 \
  -monitor unix:/tmp/qemu-monitor.sock,server,nowait \
  -snapshot \
  -k en-us

Critical Parameters Explained

ParameterPurposeNotes
-vga cirrusVGA adapter typeREQUIRED for Windows 3.11 display compatibility. Alternatives: -vga std. Without this, display may not work.
-m 32Memory allocation32MB is appropriate for Windows 3.11
-monitor unix:/tmp/qemu-monitor.sock,server,nowaitQMP monitor socketUse the expected socket path - check tests/docs for naming conventions
-snapshotImmutable disk modePrevents writes to the original image
-k en-usKeyboard layoutUS keyboard mapping
if=ideDisk interfaceIDE interface for legacy OS compatibility

Common VGA Options for Legacy Systems

  • -vga cirrus - Best compatibility for Windows 3.x/9x
  • -vga std - Standard VGA, good fallback option
  • -vga vmware - VMware SVGA (may not work with Windows 3.11)

VNC and Web Access Setup

VNC Configuration

When using -vnc:1, the VNC server runs on port 5901 (5900 + display number).

noVNC Web Interface

To provide web-based access to the VNC session:

  1. Install websockify: Bridges WebSocket connections to VNC pip install websockify
  2. Start websockify: websockify --web=/usr/share/novnc 6080 localhost:5901
  3. Configure nginx (if needed):

- Check existing nginx configuration with nginx -T before making changes - Look for conflicting server blocks or port bindings - Create a dedicated configuration file in /etc/nginx/sites-available/

Verification Strategies

1. Verify QEMU Process

ps aux | grep qemu

Confirm the process is running with expected parameters.

2. Test QMP Monitor Connection

echo '{"execute": "qmp_capabilities"}' | nc -U /tmp/qemu-monitor.sock

Expected response should include {"return": {}}.

3. Test VNC Connectivity

nc -zv localhost 5901

4. Visual Verification (Critical)

Do not mark boot completion as verified without visual confirmation. Options:

  • Take a VNC screenshot using a tool like vncsnapshot
  • Use a headless browser to capture the noVNC web interface
  • Connect via VNC client and manually verify

5. Wait for Boot Completion

Windows 3.11 boot time varies. Wait at least 30-60 seconds before testing, not just 10 seconds.

Common Pitfalls

Missing VGA Configuration

Problem: QEMU starts but display is blank or garbled. Solution: Add -vga cirrus or -vga std to the QEMU command.

Wrong Socket Path

Problem: Tests fail to connect to QMP monitor. Solution: Check expected socket path in tests/documentation. Common paths:

  • /tmp/qemu-monitor.sock
  • /tmp/monitor-socket
  • /var/run/qemu-monitor.sock

Nginx Configuration Conflicts

Problem: Nginx fails to start or proxy doesn't work. Solution:

  1. Run nginx -T to see full configuration before making changes
  2. Check for conflicting server blocks
  3. Ensure no duplicate listen directives

Premature Completion Claims

Problem: Marking tasks complete without actual verification. Solution: Always verify visually that Windows 3.11 reaches the desktop before claiming completion.

QEMU Version Compatibility

Problem: Image created for older QEMU version doesn't work correctly. Solution:

  • Check if legacy machine types are needed: -M pc-i440fx-2.0
  • Review QEMU changelog for breaking changes between versions
  • Test with compatibility flags if available

Troubleshooting Workflow

  1. Check QEMU is running: ps aux | grep qemu
  2. Verify VNC port is open: netstat -tlnp | grep 590
  3. Test QMP socket: nc -U /tmp/qemu-monitor.sock
  4. Check QEMU logs: Run QEMU with -D /tmp/qemu.log for debugging
  5. Verify nginx status: systemctl status nginx and nginx -t
  6. Check websockify: ps aux | grep websockify

Approach Summary

  1. Research first: Check tests/docs for expected paths and configurations
  2. Configure QEMU properly: Include VGA adapter and correct socket path
  3. Set up access layer: VNC, websockify, nginx in sequence
  4. Verify each component: Test connectivity at each layer
  5. Visual confirmation: Always verify Windows 3.11 actually boots to desktop

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.95%
按下载量换算79

Gemini CLI

25.14%
按下载量换算69

Codex

18.15%
按下载量换算50

Antigravity

12.23%
按下载量换算34

OpenCode

8.88%
按下载量换算24

windsurf

3.53%
按下载量换算10

安全审计

暂无安全审计结果可展示。

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills