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.
npx skills add marcusquinn/aidevops --skill proxmox-fullgit clone --depth 1 https://github.com/marcusquinn/aidevopsWrote 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.
[](https://agentmods.dev/skills/marcusquinn/aidevops/proxmox-full)<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>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.
| Model | Per session | Once 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 |
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 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"
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.
- 4d ago First seen · 122 lines · 27 tokens per session scan A a4acb5269733
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.
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.
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.
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.
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…
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"…
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".