用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/agentydragon/ducktape --skill proxmox-vm命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | proxmox_vm |
| description | Interact with Proxmox VMs - screenshots, keystrokes, network info (user) |
Interact with VMs on Proxmox via QEMU monitor. Actions execute sequentially in command-line order.
vm-interact <vmid> [actions...]
| Action | Description |
|---|---|
--screenshot, -s | Take screenshot, save to ~/.cache/proxmox-vm/vm<id>/<timestamp>.png |
--type "text", -t "text" | Type text (converts chars to QEMU keys) |
--enter, -e | Press Enter |
--sendkey <key>, -k <key> | Send QEMU key code (e.g., ctrl-c, ret, shift-a) |
--info, -i | Show VM network interfaces via guest agent |
--sleep <secs> | Sleep between actions |
--stdin | Read commands from stdin (one per line) |
# Take screenshot
vm-interact 110 --screenshot
# Type command and press Enter
vm-interact 110 --type "ip addr" --enter
# Log in and run command
vm-interact 110 --type "root" --enter --sleep 0.5 --type "password" --enter
# Send Ctrl+C then screenshot
vm-interact 110 --sendkey ctrl-c --screenshot
# Get network info
vm-interact 110 --info
# From stdin
echo -e "type ip addr\nenter\nsleep 1\nscreenshot" | vm-interact 110 --stdin
Common keys: a-z, 0-9, ret (Enter), spc (Space), tab, minus, equal, comma, dot, slash, backslash, semicolon, apostrophe, bracket_left, bracket_right, grave_accent
Modifiers: shift-X, ctrl-X, alt-X (e.g., shift-a for 'A', ctrl-c for Ctrl+C)
One command per line:
screenshot
type ip addr
enter
sendkey ctrl-c
info
sleep 1.5
# comments start with #