AMD Had Zero Agent Skills. I Built the First 10. A developer built the first open-source collection of 10 agent skills for AMD ROCm GPU workloads, filling a gap where NVIDIA had 428+ skills on skills.sh and AMD had zero. The skills cover GPU setup, Docker configuration, inference deployment, benchmarking, and safety compliance, following the agentskills.io specification for compatibility with multiple AI coding agents. NVIDIA has 428+ agent skills on skills.sh. AMD had zero. This is the story of building the first open-source collection of agent skills for AMD ROCm GPU workloads — and why it matters for the entire AI ecosystem. If you've used AI coding agents like Claude Code, OpenCode, Cursor, or Codex, you've probably encountered agent skills — reusable instruction sets that teach agents how to perform specific tasks. Skills are the building blocks of agent workflows: "set up my GPU", "deploy vLLM", "run YOLO inference", "check PPE compliance". The agent skills ecosystem is powered by skills.sh https://skills.sh , a registry that indexes skill repositories from GitHub. When you run npx skills add owner/repo , the CLI clones the repo and installs skills into your agent's configuration directory. Here's the problem: | GPU Vendor | Agent Skills on skills.sh | |---|---| | NVIDIA | 428+ | | AMD | 0 | Zero. Not a single skill for AMD ROCm. If you're a developer using AMD MI300X, MI250, or even a Radeon RX 7900 with an AI coding agent, you had nothing. Every GPU setup, every Docker configuration, every inference deployment required manual documentation lookup and copy-paste. I built amd-rocm-skills — 10 production-ready agent skills covering the full AMD ROCm GPU workflow: | Skill | What it does | |---|---| rocm-setup | Install, verify, and configure ROCm on AMD GPUs with PyTorch. Auto-detects NVIDIA CUDA and CPU fallback. | rocm-docker | Docker with AMD GPU passthrough --device=/dev/kfd , NVIDIA runtime, and CPU profiles. docker-compose multi-profile. | vllm-rocm-deploy | Deploy vLLM for LLM/VLM inference on ROCm. InternVL2, Qwen2-VL, LLaVA. OpenAI-compatible API. | yolo-rocm-deploy | YOLOv8 on PyTorch ROCm. Inference, model export ONNX, TorchScript , benchmarking. | | Skill | What it does | |---|---| video-pipeline-rocm | Video inference pipeline with GStreamer + ROCm. RTSP capture, hardware decode AMD VCN / NVIDIA NVDEC , frame extraction, batch inference. | vlm-rocm-inference | VLM inference directly with PyTorch on ROCm. InternVL2, Qwen2-VL. Multimodal text + image . | rocm-benchmark | GPU benchmarking: matmul, memory bandwidth, inference latency, VRAM monitoring. ROCm + CUDA + CPU comparison. | | Skill | What it does | |---|---| ppe-detection-pipeline | PPE Personal Protective Equipment detection in video for industrial safety. YOLOv8 + tracking + alerts webhook, MQTT, log . Multi-camera, multi-GPU. | ds132-compliance | Chilean DS 132 mining safety compliance checker. Zone-based EPP requirements, audit logging, compliance reports. | rocm-troubleshoot | Diagnostics and troubleshooting for ROCm. Error codes, compatibility checks, quick fixes, optimization checklist. | Every skill follows the agentskills.io https://agentskills.io/specification specification — the open standard for agent skills: skills/