proxmox-guest-compare-chart

proxmox-guest-compare-chart is a skill for Claude Code, Codex from rcarmo/piclaw-addons. It costs 30 tokens per session (709 once invoked), scanned A, original, MIT.

A comparison tool for two Proxmox guests, which are virtual machines or containers managed by Proxmox. It collects current and 24-hour performance data and creates SVG, CSV, and JSON files.

In plain words
What is it for?
Use it to compare CPU, memory, disk, status, and uptime for two Proxmox guests and produce chart or data files.
Why use it?
It puts the same resource measurements for two guests into one view, so you do not have to collect and compare them manually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to compare CPU, memory, disk, status, and uptime for two Proxmox guests and produce chart or data files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rcarmo/piclaw-addons/proxmox-guest-compare-chart
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 rcarmo/piclaw-addons --skill proxmox-guest-compare-chart
Clone the repo
git clone --depth 1 https://github.com/rcarmo/piclaw-addons

Made for: Claude Code, Codex.

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-guest-compare-chart

README.md
[![agentmods](https://agentmods.dev/badge/skills/rcarmo/piclaw-addons/proxmox-guest-compare-chart/github.svg)](https://agentmods.dev/skills/rcarmo/piclaw-addons/proxmox-guest-compare-chart)
Your own site
<a href="https://agentmods.dev/skills/rcarmo/piclaw-addons/proxmox-guest-compare-chart"><img src="https://agentmods.dev/badge/skills/rcarmo/piclaw-addons/proxmox-guest-compare-chart/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for proxmox-guest-compare-chart

Your own site · 80×15
<a href="https://agentmods.dev/skills/rcarmo/piclaw-addons/proxmox-guest-compare-chart"><img src="https://agentmods.dev/badge/skills/rcarmo/piclaw-addons/proxmox-guest-compare-chart.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 709 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00030 $0.00709
Opus 5 $0.00015 $0.00354
Sonnet 5 $0.00006 $0.00142
Haiku 4.5 $0.00003 $0.00071

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

Security

Grade A, and why

proxmox-guest-compare-chart 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (render-proxmox-guest-compare.ts), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

- Keep data collection in the native `proxmox` tool, not ad-hoc curl scripts.
addons/proxmox/skills/proxmox-guest-compare-chart/SKILL.md · 89 lines

How it starts

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

Proxmox guest compare chart

Use this skill when you need a comparative chart for two Proxmox guests.

Goal

Collect data through the native proxmox tool only, then render comparison artifacts locally.

Native-tool-first collection flow

  1. Ensure Proxmox config exists:
    • action: "discover"
    • action: "set" if needed
  2. Resolve guests by name with raw request:
    • action: "request"
    • method: "GET"
    • path: "/cluster/resources"
    • query: { "type": "vm" }
  3. Find the exact guest rows and capture:
    • name
    • type (lxc or qemu)
    • node
    • vmid
    • current summary fields such as status, cpu, mem, disk, maxmem, maxdisk, uptime
  4. Fetch one RRD series per guest with raw request:
    • action: "request"
    • method: "GET"
    • path: "/nodes/{node}/{lxc|qemu}/{vmid}/rrddata"
    • query: { "timeframe": "day", "cf": "AVERAGE" }
  5. Write a normalized input JSON file.
  6. Run the renderer script in this skill directory.
  7. Attach the SVG/CSV/JSON outputs.

Input schema for the renderer

Write JSON like this before rendering:

{
  "title": "Proxmox comparison: smith vs relay",
  "subtitle": "24h AVERAGE RRD metrics from Proxmox",
  "items": [
    {
      "name": "smith",
      "type": "lxc",
      "node": "tnas",
      "vmid": 103,
      "status": "running",
      "maxmem": 4294967296,
      "mem": 468541440,
      "maxdisk": 137438953472,
      "disk": 5935202304,
      "uptime": 163231,
      "series": [
        { "time": 1743868800, "cpu_pct": 1.2, "mem_pct": 8.4 }
      ]
    }
  ]
}

Render command

Run the renderer script adjacent to this SKILL file:

bun ./render-proxmox-guest-compare.ts \
  --in /workspace/tmp/proxmox-compare-input.json \
  --out-prefix /workspace/exports/proxmox-compare

This writes:

  • /workspace/exports/proxmox-compare.svg
  • /workspace/exports/proxmox-compare.csv
  • /workspace/exports/proxmox-compare.json

Notes

  • Keep data collection in the native proxmox tool, not ad-hoc curl scripts.
  • The renderer is local-only and intentionally dumb: it consumes normalized JSON and draws the chart.
  • Prefer explicit guest names and exact matches from /cluster/resources.
  • Use the visual-design defaults: clean, minimal, visible axes, subtle grid, compact legend.

Read the full file on GitHub · 89 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 89 lines · 30 tokens per session scan A 87bfd38a67df

Subscribe to this mod's changes

proxmox-guest-compare-chart is a skill published in the GitHub repository rcarmo/piclaw-addons (23 stars, last pushed today), licensed MIT. It adds 30 tokens to every session and 709 once invoked, about $0.0002 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-08-30.