proxmox-full

proxmox-full is a skill for Claude Code from marcusquinn/aidevops. It costs 27 tokens per session (1,753 once invoked), scanned A, original, MIT.

A management interface for Proxmox VE, a server platform that runs virtual machines and lightweight containers.

In plain words
What is it for?
It helps inspect cluster nodes, control virtual machines and containers, manage snapshots and backups, and check storage.
Why use it?
It gathers common server-management tasks behind Proxmox’s REST API, so operators do not need to handle each task manually.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents; installed under .agents/ (shared by several agents).

Part of the aidevops plugin — 13 skills, 128 commands shipped together

Good fit It helps inspect cluster nodes, control virtual machines and containers, manage snapshots and backups, and check storage.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/marcusquinn/aidevops/proxmox-full
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add marcusquinn/aidevops --skill proxmox-full
Clone the repo
git clone --depth 1 https://github.com/marcusquinn/aidevops

Made for: Claude Code.

Or install aidevops, the plugin that ships this one along with the rest of its 13 skills, 128 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for proxmox-full

README.md
[![agentmods](https://agentmods.dev/badge/skills/marcusquinn/aidevops/proxmox-full.svg)](https://agentmods.dev/skills/marcusquinn/aidevops/proxmox-full)
Your own site
<a href="https://agentmods.dev/skills/marcusquinn/aidevops/proxmox-full"><img src="https://agentmods.dev/badge/skills/marcusquinn/aidevops/proxmox-full.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,753 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00027 $0.01753
Opus 5 $0.00014 $0.00877
Sonnet 5 $0.00005 $0.00351
Haiku 4.5 $0.00003 $0.00175

Measured 4d ago against content hash a4acb5269733, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

proxmox-full scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sk -H "$AUTH" "$PVE_URL/api2/json/cluster/status" | jq
.agents/services/hosting/proxmox-full-skill.md · 122 lines

How it starts

The opening of the file, as written. The whole thing — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Proxmox VE - Full Management

Setup

export PVE_URL="https://192.168.1.10:8006"
export PVE_TOKEN="user@pam!tokenid=secret-uuid"
AUTH="Authorization: PVEAPIToken=$PVE_TOKEN"

API tokens skip CSRF (unlike cookie auth). Use -k for self-signed certs. Replace {node}, {vmid}, {snapname}, {upid} with actual values. Create/clone ops return a task UPID for tracking.

Cluster & Nodes

curl -sk -H "$AUTH" "$PVE_URL/api2/json/cluster/status" | jq
curl -sk -H "$AUTH" "$PVE_URL/api2/json/nodes" | jq '.data[] | {node, status, cpu, mem: (.mem/.maxmem*100|round)}'
curl -sk -H "$AUTH" "$PVE_URL/api2/json/nodes/{node}/status" | jq

VMs & Containers

# List per-node
curl -sk -H "$AUTH" "$PVE_URL/api2/json/nodes/{node}/qemu" | jq '.data[] | {vmid, name, status}'
curl -sk -H "$AUTH" "$PVE_URL/api2/json/nodes/{node}/lxc" | jq '.data[] | {vmid, name, status}'
# Cluster-wide
curl -sk -H "$AUTH" "$PVE_URL/api2/json/cluster/resources?type=vm" | jq '.data[] | {vmid, name, node, status, type}'
# Control: start, stop (immediate), shutdown (graceful ACPI), reboot — replace qemu with lxc for containers
curl -sk -X POST -H "$AUTH" "$PVE_URL/api2/json/nodes/{node}/qemu/{vmid}/status/{action}"

Create VM

curl -sk -H "$AUTH" "$PVE_URL/api2/json/cluster/nextid" | jq '.data'  # next available VMID
curl -sk -X POST -H "$AUTH" "$PVE_URL/api2/json/nodes/{node}/qemu" \
  -d "vmid=100" -d "name=myvm" -d "memory=4096" \
  -d "cores=4" -d "sockets=1" -d "cpu=host" \
  -d "net0=virtio,bridge=vmbr0" \
  -d "scsi0=local-lvm:32" -d "scsihw=virtio-scsi-single" \
  -d "ide2=local:iso/debian-12.iso,media=cdrom" \
  -d "boot=order=scsi0;ide2" -d "ostype=l26"

Create LXC Container

curl -sk -X POST -H "$AUTH" "$PVE_URL/api2/json/nodes/{node}/lxc" \
  -d "vmid=200" -d "hostname=mycontainer" \
  -d "ostemplate=local:vztmpl/debian-12-standard_12.2-1_amd64.tar.zst" \
  -d "storage=local-lvm" -d "rootfs=local-lvm:8" \
  -d "memory=2048" -d "swap=512" -d "cores=2" \
  -d "net0=name=eth0,bridge=vmbr0,ip=dhcp" \
  -d "password=$LXC_PASSWORD" -d "start=1" -d "unprivileged=1"

Read the full file on GitHub · 122 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 122 lines · 27 tokens per session scan A a4acb5269733

Subscribe to this mod's changes

proxmox-full is a skill published in the GitHub repository marcusquinn/aidevops (392 stars, last pushed yesterday), licensed MIT. It adds 27 tokens to every session and 1,753 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

wshobson-ml-pipeline-workflow

Skill "wshobson-ml-pipeline-workflow" from ItamarZand88/awesome-agent-conventions, covering ml pipeline workflow, when to use this skill, what this skill provides, core capabilities and reference documentation.

ItamarZand88/awesome-agent-conventions · 0 tokens

cost-optimization

Optimize cloud costs across AWS, Azure, GCP, and OCI through resource rightsizing, tagging strategies, reserved instances, and spending analysis. Use when reducing cloud expenses, analyzing infrastructure costs, or implementing cost governance policies.

wshobson/agents · 48 tokens

linkerd-patterns

Implement Linkerd service mesh patterns for lightweight, security-focused service mesh deployments. Use when setting up Linkerd, configuring traffic policies, or implementing zero-trust networking with minimal overhead.

wshobson/agents · 41 tokens

azure-resource-manager-durabletask-dotnet

Azure Resource Manager SDK for Durable Task Scheduler in .NET. Use for MANAGEMENT PLANE operations: creating/managing Durable Task Schedulers, Task Hubs, and retention policies via Azure Resource Manager. Triggers: "Durable Task Scheduler", "create scheduler", "task hub", "DurableTaskSchedulerResource", "provision…

microsoft/skills · 84 tokens

azure-eventhub-dotnet

Azure Event Hubs SDK for .NET. Use for high-throughput event streaming: sending events (EventHubProducerClient, EventHubBufferedProducerClient), receiving events (EventProcessorClient with checkpointing), partition management, and real-time data ingestion. Triggers: "Event Hubs", "event streaming"…

microsoft/skills · 94 tokens

azure-mgmt-botservice-dotnet

Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".

microsoft/skills · 78 tokens