← ClaudeAtlas

vscode-copilot-customizationlisted

Expert guide for creating GitHub Copilot customization files in VS Code: custom instructions (.instructions.md), prompt files (.prompt.md), custom agents (.agent.md), agent skills (SKILL.md), hooks (JSON), and agent plugins. Use this skill whenever the user asks about customizing Copilot behavior, creating reusable AI workflows, writing copilot-instructions.md, building custom chat agents, automating Copilot tasks with prompt files, or setting up agent skills and hooks in VS Code. Also trigger when the user asks which Copilot customization type to use for a given scenario — always start with the decision matrix below.
danielsitek/skills · ★ 0 · AI & Automation · score 70
Install: claude install-skill danielsitek/skills
# VS Code Copilot Customization ## Decision Matrix Use this matrix to recommend the right customization type. Always start here. | Scenario | Best choice | | ------------------------------------------------------------------- | ---------------------------------- | | Project-wide coding standards, always active | `copilot-instructions.md` | | Rules only for specific file types / folders | `*.instructions.md` with `applyTo` | | Works with multiple AI agents (Claude, Copilot, etc.) | `AGENTS.md` | | Reusable task you invoke manually in chat | Prompt file (`.prompt.md`) | | Specialized workflow with tool restrictions or model choice | Custom agent (`.agent.md`) | | Portable capability reusable across projects + CLI + cloud agents | Agent skill (`SKILL.md`) | | Auto-run commands at agent lifecycle points (format, lint, enforce) | Hook (`.json`) | | Bundle multiple customizations to share or distribute | Agent plugin (`plugin.json`) | ### Quick decision flow ``` Do you want it ON automatically for every request? ├─ YES → Instructions (.instructions.md / copilot-instructions.md / AGENTS.md) └─ NO, I invoke it manually → Does it need persistent persona, tool restrictions, or model choice? ├─ YE