skills/dataknifeai/virtual-machine-management/SKILL.md
Create, manage, and optimize virtual machines in Proxmox. Control VM lifecycle, monitor performance, adjust resources, and plan VM deployment strategies.
npx skillsauth add aiskillstore/marketplace virtual-machine-managementInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create, manage, and optimize virtual machines in your Proxmox environment.
This skill enables you to:
Use this skill when you need to:
get_vms - List all VMs on a specific nodeget_vm_status - Get detailed VM status and configurationget_vm_config - Get full VM configuration detailsstart_vm - Start a virtual machinestop_vm - Stop a VM immediatelyshutdown_vm - Gracefully shutdown a VMreboot_vm - Reboot a virtual machinesuspend_vm - Suspend (pause) a running VMresume_vm - Resume a suspended VMcreate_vm - Create a new virtual machine with basic configurationcreate_vm_advanced - Create a VM with advanced configuration optionsclone_vm - Clone an existing virtual machineupdate_vm_config - Update VM configuration (resources, options, mark as template)delete_vm - Delete a virtual machineCreating template VMs allows you to quickly deploy preconfigured virtual machines:
Create or prepare a base VM
create_vm_advanced or clone from an existing VMUpdate VM as Template
update_vm_config with template: 1 to mark as template{
"template": 1
}
Clone from Template
clone_vm to create instances from the template# First, prepare your VM (install OS, apps, configure)
# Then mark it as a template:
update_vm_config(node="pve2", vmid=100, config={"template": 1})
# Clone the template to create a new VM
clone_vm(node="pve2", source_vmid=100, new_vmid=200, new_name="web-server-01", full=true)
get_vms to list available VMsget_vm_status or get_vm_config to check VM statecreate_vm or create_vm_advanced to provision new VMget_vm_status to verify configurationclone_vm to create copies for testing or deploymentget_vm_config to review detailed settingssuspend_vm to pause a running VM (preserves state)resume_vm to resume operations from suspended stateshutdown_vm for graceful shutdownreboot_vm to restart VMstop_vm for immediate termination if neededget_vm_status to check VM healthWhen using this skill, I provide:
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.