Install
openclaw skills install @ricanwarfare/proxmox-completeManage Proxmox VE clusters via REST API. List nodes, VMs, containers; control power states; manage snapshots, backups, storage, and tasks. Use when user asks about Proxmox, VMs, LXC, snapshots, backups, or cluster status.
openclaw skills install @ricanwarfare/proxmox-completeComprehensive Proxmox VE management combining:
Create ~/.openclaw/credentials/proxmox.json:
{
"host": "your-proxmox-ip",
"token_id": "clawd@pve!tokenname",
"token_secret": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"verify_ssl": false
}
export PVE_HOST="your-proxmox-ip"
export PVE_TOKEN_ID="clawd@pve!tokenname"
export PVE_TOKEN_SECRET="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
export PVE_VERIFY_SSL="false"
cat > ~/.proxmox-credentials << 'EOF'
PROXMOX_HOST=https://your-proxmox-ip:8006
PROXMOX_TOKEN_ID=clawd@pve!tokenname
PROXMOX_TOKEN_SECRET=your-token-secret
EOF
chmod 600 ~/.proxmox-credentials
# Cluster overview
python3 scripts/proxmox.py nodes
# Node health (CPU, RAM, uptime)
python3 scripts/proxmox.py node_health pve
# Bash alternative
bash scripts/pve.sh status
# All VMs cluster-wide
python3 scripts/proxmox.py vms
# All VMs on specific node
bash scripts/pve.sh vms pve
# LXC containers on node
bash scripts/pve.sh lxc pve
# Cluster resources (all types)
bash scripts/pve.sh resources
# Python (detailed)
python3 scripts/proxmox.py status pve qemu 115
# Bash (quick)
bash scripts/pve.sh info pve 115
# Start VM
python3 scripts/proxmox.py start pve qemu 115
# Stop VM (hard)
python3 scripts/proxmox.py stop pve qemu 115
# Shutdown VM (graceful)
python3 scripts/proxmox.py shutdown pve qemu 115
# Reboot VM
python3 scripts/proxmox.py reboot pve qemu 115
# Bash alternatives
bash scripts/pve.sh start 115 pve
bash scripts/pve.sh stop 115 pve
bash scripts/pve.sh shutdown 115 pve
# List snapshots
python3 scripts/proxmox.py list_snapshots pve qemu 115
# Create snapshot (vmstate=0: no RAM, vmstate=1: include RAM)
python3 scripts/proxmox.py snapshot pve qemu 115 pre-update 0
# Delete snapshot (requires approval)
python3 scripts/proxmox.py delete_snapshot pve qemu 115 pre-update
# Rollback to snapshot (bash)
bash scripts/pve.sh rollback pve 115 pre-update
# List backups
bash scripts/pve.sh backups pve local
# Start backup
bash scripts/pve.sh backup pve 115 local
# List storage pools
bash scripts/pve.sh storage pve
# Storage content
bash scripts/pve.sh content pve local
# Recent tasks
bash scripts/pve.sh tasks pve
# Task log
bash scripts/pve.sh log pve UPID:pve:00001234:...
These actions require user approval:
start, stop, shutdown, rebootsnapshot, delete_snapshotbackuprollbackRead-only operations (no approval needed):
nodes, vms, status, list_snapshotsbackups (list only), storage, tasks, logAll commands return JSON for easy parsing:
{
"ok": true,
"data": { ... }
}
Error responses:
{
"ok": false,
"error": "Missing env var: PVE_HOST"
}
pve with your actual node name115 with actual VMIDqemu = VM, lxc = containerverify_ssl: false or use -k flagMerged from:
robnew/proxmox-skill — Python tool-based approach with approvalsweird-aftertaste/proxmox — Bash helper with comprehensive API coverageMIT