ワンクリックで
proxmox-guest-compare-chart
Compare two Proxmox guests using native proxmox tool data collection and render SVG/CSV outputs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Compare two Proxmox guests using native proxmox tool data collection and render SVG/CSV outputs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Delegate a self-contained task to a verified cheaper/faster child-Pi model in a fresh ephemeral context.
Use the stealth browser for human-like web automation against bot-protected sites. Handles login flows, scraping, and form filling with anti-detection bypass.
Export a chat timeline to a PDF using the internal localhost export endpoint and wkhtmltopdf.
Nightly Bayesian interaction-quality classifier — flags behavioral patterns from chat history and writes self-improvement reflections without spending model tokens on classification.
Record major friction or postmortem feedback in the configured workspace vent log.
Open a spreadsheet-style widget for a Markdown table so the user can edit it and send the final Markdown table back into chat.
| name | proxmox-guest-compare-chart |
| description | Compare two Proxmox guests using native proxmox tool data collection and render SVG/CSV outputs. |
| distribution | public |
Use this skill when you need a comparative chart for two Proxmox guests.
Collect data through the native proxmox tool only, then render comparison artifacts locally.
action: "discover"action: "set" if neededaction: "request"method: "GET"path: "/cluster/resources"query: { "type": "vm" }nametype (lxc or qemu)nodevmidstatus, cpu, mem, disk, maxmem, maxdisk, uptimeaction: "request"method: "GET"path: "/nodes/{node}/{lxc|qemu}/{vmid}/rrddata"query: { "timeframe": "day", "cf": "AVERAGE" }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 }
]
}
]
}
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.jsonproxmox tool, not ad-hoc curl scripts./cluster/resources.