Give your coding agent (Claude Code, Codex, Gemini CLI, Cursor) DGX Station expertise via an AGENTS.md and on-demand Agent Skills
Modern coding agents — Claude Code, OpenAI Codex CLI, Gemini CLI, Cursor — all support two extension mechanisms: a project-level context file that's loaded into every conversation, and on-demand procedural workflows (called skills, prompts, commands, or rules depending on the harness). This playbook ships both for DGX Station:
AGENTS.md with the critical DGX Station constraints your agent should always know (mixed coherency, GPU targeting, common pitfalls). AGENTS.md is the cross-harness standard; an install.sh lays it down as CLAUDE.md, GEMINI.md, or AGENTS.md depending on the agent you use.vllm-setup, sglang-setup, mig-configure, dgx-diagnose — authored once in the Anthropic Agent Skills format and installed into the right per-harness location (.claude/skills/, .codex/prompts/, .gemini/commands/, or .cursor/rules/).This approach keeps your agent's context lean in every conversation while giving it deep procedural knowledge on demand, regardless of which agent you use.
| AGENTS.md | Agent Skill | |
|---|---|---|
| Loaded | Every conversation, automatically | Only when invoked by name (or matched by description, in Claude) |
| Best for | Constraints, pitfalls, "never do X" rules | Step-by-step workflows, deployment procedures |
| Context cost | Consumed every time | Zero until invoked |
The DGX Station mixed-coherency constraint (--gpus all will crash) should be in every conversation. The full vLLM deployment procedure should not.
AGENTS.md and four Agent Skills into your project directory for your chosen agent (Claude Code, Codex, Gemini CLI, or Cursor).vllm-setup to deploy a vLLM inference server with validated configuration.sglang-setup to deploy an SGLang inference server.mig-configure to partition the GB300 into MIG instances.dgx-diagnose to troubleshoot common DGX Station issues.curl -fsSL https://claude.ai/install.sh | shnpm i -g @openai/codexnpm i -g @google/gemini-clihttps://cursor.com/assets/AGENTS.md — canonical context file with critical constraints, GPU targeting, software versions, and common pitfalls. Cross-harness standard.assets/skills/vllm-setup/SKILL.md — skill: deploy vLLM with validated configuration.assets/skills/sglang-setup/SKILL.md — skill: deploy SGLang with validated configuration.assets/skills/mig-configure/SKILL.md — skill: configure MIG partitions on the GB300.assets/skills/dgx-diagnose/SKILL.md — skill: troubleshoot common DGX Station issues.assets/install.sh — per-harness installer (claude, codex, gemini, cursor, or all).AGENTS.md / CLAUDE.md / GEMINI.md) and the harness-specific skill directory (.claude/skills/, .codex/prompts/, .gemini/commands/, or .cursor/rules/) from your project directory