Skip to content

/proxmox

Source: proxmox-docs Category: Infrastructure

Proxmox VE administration and VM management.

What It Does

  • Walks you through VM creation using the documented steps
  • Generates network configs based on the actual configuration SOPs
  • Helps with backup/restore using the specific procedures documented
  • Hardens security following the exact security SOP checklist
  • Troubleshoots cluster issues using the documented patterns
  • Generates CLI commands for common operations from the quick-ref

Example Usage

Input: "Set up a new VM with 4 cores, 8GB RAM, bridged networking"

Skill Response:

  • Gives you the exact commands/steps from the documented VM creation SOP
  • Configures networking properly
  • Sets up storage
  • Handles post-creation tasks

Capabilities

ActionDescription
VM CreationStep-by-step VM setup
Network ConfigurationBridge, VLAN, bonding setup
Backup/RestoreScheduled backups and recovery
Security HardeningFollow security SOP checklist
Cluster ManagementMulti-node cluster operations

Common Operations

Create VM

bash
qm create 100 --memory 8192 --cores 4 --name myvm
qm set 100 --net0 virtio,bridge=vmbr0
qm set 100 --scsi0 local-lvm:32

Backup

bash
vzdump 100 --storage backup-storage --mode snapshot

Network Bridge

bash
# Edit /etc/network/interfaces
auto vmbr0
iface vmbr0 inet static
    address 192.168.1.1/24
    bridge-ports eth0

Quick Start

/proxmox

Skill will ask what you need to do, then walk you through using the documented SOPs.

14 Skills | Built from SOP Documentation Sites