8.9k★by robnew
proxmox – OpenClaw Skill
proxmox is an OpenClaw Skills integration for coding workflows. Manage Proxmox VE nodes, VMs, and containers. Can list hardware stats, resources, and control power states (start, stop, reboot, shutdown).
Skill Snapshot
| name | proxmox |
| description | Manage Proxmox VE nodes, VMs, and containers. Can list hardware stats, resources, and control power states (start, stop, reboot, shutdown). OpenClaw Skills integration. |
| owner | robnew |
| repository | robnew/proxmox-skill |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @robnew/proxmox-skill |
| last updated | Feb 7, 2026 |
Maintainer

name: proxmox description: "Manage Proxmox VE nodes, VMs, and containers. Can list hardware stats, resources, and control power states (start, stop, reboot, shutdown)." metadata: requires: bins: ["python3"] env: ["PVE_HOST", "PVE_TOKEN_ID", "PVE_TOKEN_SECRET"]
Proxmox Skill
This skill allows the agent to interact with a Proxmox VE cluster to manage virtual machines and containers.
Tools
proxmox_list
List Proxmox nodes or all available VMs and containers across the entire cluster.
- Command: python3 {{skillDir}}/scripts/proxmox.py {{type}}
- Args:
- type: "nodes" or "vms"
proxmox_node_health
Get hardware-level health stats (CPU usage, RAM, Uptime, Version) for a specific physical node.
- Command: python3 {{skillDir}}/scripts/proxmox.py node_health {{node}}
- Args:
- node: The name of the Proxmox host (e.g., "pve" or "hydra")
proxmox_status
Get the real-time status of a specific VM or container.
- Command: python3 {{skillDir}}/scripts/proxmox.py status {{node}} {{kind}} {{vmid}}
- Args:
- node: The Proxmox node name where the resource lives
- kind: "qemu" for VMs, "lxc" for containers
- vmid: The numerical ID of the resource (e.g., "100")
proxmox_power_action
Perform power management actions. These actions require human approval by default.
- Approval: true
- Command: python3 {{skillDir}}/scripts/proxmox.py {{action}} {{node}} {{kind}} {{vmid}}
- Args:
- action: "start", "stop", "reboot", or "shutdown"
- node: The Proxmox node name
- kind: "qemu" or "lxc"
- vmid: The ID of the resource
Proxmox Skill for OpenClaw
Proxmox VE Management
Monitor node health, list cluster resources, and manage VM/LXC power states.
[ Quick Start ]
<u>Install Dependencies</u>
Ensure you have Python 3.10+ and the required API libraries installed on the machine running OpenClaw:
pip install proxmoxer requests
⚙️ <u>Environment Variables</u>
Add these to your .bashrc or OpenClaw environment config:
export PVE_HOST="https://your.proxmox.local:8006"
export PVE_TOKEN_ID="user@pam!token-name"
export PVE_TOKEN_SECRET="your-generated-secret"
[ Permission Setup ]
For security, use a dedicated API token rather than the root password.
<u>Step 1: Create an API Token</u>
- Log in to the Proxmox VE web interface.
- Navigate to Datacenter > Permissions > Users.
- Optional but Recommended: Click Add to create a dedicated service user
(e.g., openclaw@pve). - Go to the API Tokens tab and click Add.
- Select your user and enter a Token ID (e.g., bot-token).
- Important: Copy the Token Secret immediately. It will only be displayed once.
<u>Step 2: Assign Permissions your API token</u>
- Navigate to Datacenter > Permissions > Add > API Token Permission.
- Path: Enter / (to allow access to the whole cluster) or a specific VM path.
- Token: Select the token you just created.
- Role: - PVEAuditor: If you only want the bot to see stats but not touch anything.
PVEDatastoreAdmin / PVEVMAdmin: If you want the bot to be able to start/stop VMs. - Propagate: Check this box so the permissions apply to all nodes and VMs.
[ Features ]
🖥️ Node Health
Monitor real-time CPU and RAM usage for physical hosts. Stay ahead of hardware bottlenecks before they impact your services.
🔍 Resource Discovery
List all VMs and Containers across the Proxmox cluster. Instant visibility into your entire infrastructure.
⚡ Power Management
Start, Stop, Reboot, and Shutdown. Full control over your virtual fleet with safety-first logic.
📸 Snapshot Management
Take, list, and rollback snapshots for any VM or Container. One-click recovery points for your lab experiments.
🛡️ Security & Guardrails
-
Non-Root Users: Always create a restricted user for your API tokens.
-
Secret Management: Never commit your PVE_TOKEN_SECRET to a public repository.
-
Approval Guards: By default, destructive actions (Stop/Shutdown) require you to click an "Approve" button in your chat client.
[ Manual Usage ]
To test the connection and list all nodes:
python3 scripts/proxmox.py nodes
To see all VMs and Containers across the cluster:
python3 scripts/proxmox.py vms
To take a manual snapshot of a VM:
python3 scripts/proxmox.py take_snapshot pve qemu 100 "Manual-Backup"
To power on a specific VM:
python3 scripts/proxmox.py start pve qemu 100
Note: Ensure your Environment Variables (PVE_HOST, PVE_TOKEN_ID, and PVE_TOKEN_SECRET) are exported in your terminal before running these commands manually.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install proxmox?
Run openclaw add @robnew/proxmox-skill in your terminal. This installs proxmox into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/robnew/proxmox-skill. Review commits and README documentation before installing.
