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 agentmods add instructions/evilfreelancer/gpu-server-setup/agents-mdgit clone --depth 1 https://github.com/EvilFreelancer/gpu-server-setupWhat 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 | $0.01393 | $0.01393 |
| Opus 5 | $0.00696 | $0.00696 |
| Sonnet 5 | $0.00279 | $0.00279 |
| Haiku 4.5 | $0.00139 | $0.00139 |
Grade A, and why
gpu-server-setup AGENTS.md 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 yesterday.
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.
- **check.sh is pure bash**, no dependencies beyond coreutils/curl/docker. It How it starts
The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Authoring & maintaining the gpu-server-setup skill
Agent guide for working inside this skill repository. Read it before editing
SKILL.md, the references, the presets, scripts/check.sh, or any plugin
manifest.
Naming (Russian): the adjective for "agent / agentic" is «агентный», never «агентский».
Repository layout
This skill is packaged for Claude Code, Cursor, and OpenAI Codex
(and installs as a plain skill folder for other agents). The layout is flat —
SKILL.md and its assets live at the repo root, and the plugin manifests point
their skill source at ./.
gpu-server-setup/
├─ .claude-plugin/
│ ├─ plugin.json # Claude Code plugin manifest
│ └─ marketplace.json # single-plugin marketplace (plugin lives at "./")
├─ .cursor-plugin/plugin.json # Cursor manifest
├─ .codex-plugin/plugin.json # Codex manifest (interface block + skills: "./")
├─ SKILL.md # CANONICAL skill: YAML frontmatter + instructions
├─ references/ # deep knowledge, loaded on demand from SKILL.md
├─ presets/ # ready docker-compose stacks (adapt, don't paste verbatim)
├─ scripts/check.sh # staged verification script (pure bash)
├─ README.md AGENTS.md LICENSE
There is no skills/<name>/ subfolder — the root is the skill.
Editing rules
- Keep
SKILL.mdthin. It holds the workflow, the stage gates, and the hard rules. Depth goes inreferences/andpresets/. If a section grows past a screen, move the detail into a reference and link it. - One package source. Every install path in this skill uses the official
NVIDIA CUDA apt repo + the official Docker repo. Never add instructions that
mix distro
nvidia-*packages,ubuntu-drivers, or.runinstallers into the same flow — mixed sources are the #1 support burden this skill exists to prevent. - Gates are not optional. Any edit must preserve the staged verification order (lspci → nvidia-smi → GPU-in-Docker → service health) and the rule that the agent stops on a failing gate.
- Presets must stay runnable. They are working configs with
<PLACEHOLDER>tokens for site-specific values (IPs, tokens, models where relevant). Never bake in real IPs or secrets. Version numbers inimage:tags are allowed (they document a known-good combination) but prefer noting "check for the current release" where staleness bites. - check.sh is pure bash, no dependencies beyond coreutils/curl/docker. It
must stay read-only except the single
docker run … nvidia-smigate, must not useset -e(it collects failures), and must exit non-zero on any FAIL. After editing runbash -n scripts/check.shand exercise it on a machine with and without a configured GPU. - Version drift. Driver branches, CUDA majors, and image tags in the text
are examples of a known-good state, not eternal truth. When refreshing them,
update
nvidia-cuda.md, the presets, and the README consistently in one commit.
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.
- yesterday First seen · 114 lines · 1,393 tokens per session scan A 4609e7355577
gpu-server-setup AGENTS.md is an instructions file published in the GitHub repository EvilFreelancer/gpu-server-setup (11 stars, last pushed 19d ago), licensed MIT. It adds 1,393 tokens to every session, about $0.0070 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.
Other instructions, from other repositories
flashinfer AGENTS.md
Instructions for flashinfer-ai/flashinfer: This repository’s agent instructions live in CLAUDE.md.
AutoMegaKernel AGENTS.md
Instructions for RightNow-AI/AutoMegaKernel, covering what amk is, the edit surface, scheduleconfig + kernelknobs only, canonical tool surface (mcp), use these exact names, codex mcp server config (/.codex/config.toml) and the copy-paste loop a codex agent runs.
flashinfer CLAUDE.md
Instructions for flashinfer-ai/flashinfer, covering claude.md, project overview, quick reference, quick start for development and installation.
fastapi-langgraph-agent-production-ready-template AGENTS.md
Instructions for wassim249/fastapi-langgraph-agent-production-ready-template, covering ai agent development guide, quick commands, project structure, project overview and quick reference: critical rules.
cuopt AGENTS.md
Instructions for NVIDIA/cuopt, covering agents.md — cuopt ai agent entry point, skills directory (flat), rules, common (concepts only; no api code) and installation.
cuda-metal AGENTS.md
Instructions for Lulzx/cuda-metal, covering agents.md — cumetal development guide, project identity, current focus, repository structure and non-negotiable constraints.