Install
Quick install
npx skills add https://github.com/microsoft/vscode-copilot-chat/tree/HEAD/assets/prompts/skills/agent-customizationnpx skills add microsoft/vscode-copilot-chat --skill agent-customization --agent claude-codenpx skills add microsoft/vscode-copilot-chat --skill agent-customization --agent cursornpx skills add microsoft/vscode-copilot-chat --skill agent-customization --agent codexnpx skills add microsoft/vscode-copilot-chat --skill agent-customization --agent opencodenpx skills add microsoft/vscode-copilot-chat --skill agent-customization --agent github-copilotnpx skills add microsoft/vscode-copilot-chat --skill agent-customization --agent windsurfMore install options
Shorthand — useful for multi-skill repos:
npx skills add microsoft/vscode-copilot-chat --skill agent-customizationManual — clone the repo and drop the folder into your agent's skills directory:
git clone https://github.com/microsoft/vscode-copilot-chat.gitcp -r vscode-copilot-chat/assets/prompts/skills/agent-customization ~/.claude/skills/agent-customization
WORKFLOW SKILL — Create, update, review, fix, or debug VS Code agent customization files (.instructions.md, .prompt.md, .agent.md, SKILL.md,…
agent-customizationby microsoft
WORKFLOW SKILL — Create, update, review, fix, or debug VS Code agent customization files (.instructions.md, .prompt.md, .agent.md, SKILL.md,…npx skills add https://github.com/microsoft/vscode-copilot-chat --skill agent-customizationDownload ZIPGitHub
Agent Customization
Decision Flow
PrimitiveWhen to UseWorkspace InstructionsAlways-on, applies everywhere in the projectFile InstructionsExplicit via applyTo patterns, or on-demand via descriptionMCPIntegrates external systems, APIs, or dataHooksDeterministic shell commands at agent lifecycle points (block tools, auto-format, inject context)Custom AgentsSubagents for context isolation, or multi-stage workflows with tool restrictionsPromptsSingle focused task with parameterized inputsSkillsOn-demand workflow with bundled assets (scripts/templates)
Quick Reference
Consult the reference docs for templates, domain examples, advanced frontmatter options, asset organization, anti-patterns, and creation checklists. If the references are not enough, load the official documentation links for each primitive.
TypeFileLocationReferenceWorkspace Instructionscopilot-instructions.md, AGENTS.md.github/ or rootLinkFile Instructions.instructions.md.github/instructions/LinkPrompts.prompt.md.github/prompts/LinkHooks.json.github/hooks/LinkCustom Agents.agent.md.github/agents/LinkSkillsSKILL.md.github/skills/<name>/, .agents/skills/<name>/, .claude/skills/<name>/Link
User-level: {{VSCODE_USER_PROMPTS_FOLDER}}/ (.prompt.md, .instructions.md, *.agent.md; not skills)
Customizations roam with user's settings sync
Creation Process
If you need to explore or validate patterns in the codebase, use a read-only subagent. If the ask-questions tool is available, use it to interview the user and clarify requirements.
Follow these steps when creating any customization file.
1. Determine Scope
Ask the user where they want the customization:
- Workspace: For project-specific, team-shared customizations →
.github/folder
- User profile: For personal, cross-workspace customizations →
{{VSCODE_USER_PROMPTS_FOLDER}}/
2. Choose the Right Primitive
Use the Decision Flow above to select the appropriate file type based on the user's need.
3. Create the File
Create the file directly at the appropriate path:
- Use the location tables in each reference file
- Include required frontmatter as needed
- Add the body content following the templates
4. Validate
After creating:
- Confirm the file is in the correct location
- Verify frontmatter syntax (YAML between
---markers)
- Check that
descriptionis present and meaningful
Edge Cases
Instructions vs Skill? Does this apply to most work, or specific tasks? Most → Instructions. Specific → Skill.
Skill vs Prompt? Both appear as slash commands in chat (type /). Multi-step workflow with bundled assets → Skill. Single focused task with inputs → Prompt.
Skill vs Custom Agent? Same capabilities for all steps → Skill. Need context isolation (subagent returns single output) or different tool restrictions per stage → Custom Agent.
Hooks vs Instructions? Instructions guide agent behavior (non-deterministic). Hooks enforce behavior via shell commands at lifecycle events like PreToolUse or PostToolUse — they can block operations, require approval, or run formatters deterministically. See hooks reference.
Common Pitfalls
Description is the discovery surface. The description field is how the agent decides whether to load a skill, instruction, or agent. If trigger phrases aren't IN the description, the agent won't find it. Use the "Use when..." pattern with specific keywords.
YAML frontmatter silent failures. Unescaped colons in values, tabs instead of spaces, name that doesn't match folder name — all cause silent failures with no error message. Always quote descriptions that contain colons: description: "Use when: doing X".
applyTo: "" burns context. This means "always included for every file request" — it loads the instruction into the context window on every interaction, even when irrelevant. Use specific globs (/*.py, src/api/) unless the instruction truly applies to all files.
More skills from microsoft
oss-growthby microsoftOSS growth hacker personapr-description-skillby microsoftTrigger this skill on any of the following intents:python-architectureby microsoftPython architect personasupply-chain-securityby microsoftSupply chain security expert personaskill-nameby microsoftDescription of what the skill does and when to use itwork-iterationsby microsoftList, create, and assign iterations for Azure DevOps projects and teams.djangoby microsoftBest practices for Django web development including models, views, templates, and testing.flaskby microsoftBest practices for Flask web development including routing, blueprints, and testing.---
Source: https://github.com/microsoft/vscode-copilot-chat/tree/HEAD/assets/prompts/skills/agent-customization
Author: microsoft
Discovered via**: mcpservers.org
SKILL.md source
---
name: agent-customization
description: **WORKFLOW SKILL** — Create, update, review, fix, or debug VS Code agent customization files (.instructions.md, .prompt.md, .agent.md, SKILL.md,…
---
# agent-customization
**WORKFLOW SKILL** — Create, update, review, fix, or debug VS Code agent customization files (.instructions.md, .prompt.md, .agent.md, SKILL.md,…
# agent-customizationby microsoft
**WORKFLOW SKILL** — Create, update, review, fix, or debug VS Code agent customization files (.instructions.md, .prompt.md, .agent.md, SKILL.md,…
`npx skills add https://github.com/microsoft/vscode-copilot-chat --skill agent-customization`Download ZIPGitHub
## Agent Customization
## Decision Flow
PrimitiveWhen to UseWorkspace InstructionsAlways-on, applies everywhere in the projectFile InstructionsExplicit via `applyTo` patterns, or on-demand via `description`MCPIntegrates external systems, APIs, or dataHooksDeterministic shell commands at agent lifecycle points (block tools, auto-format, inject context)Custom AgentsSubagents for context isolation, or multi-stage workflows with tool restrictionsPromptsSingle focused task with parameterized inputsSkillsOn-demand workflow with bundled assets (scripts/templates)
## Quick Reference
Consult the reference docs for templates, domain examples, advanced frontmatter options, asset organization, anti-patterns, and creation checklists. If the references are not enough, load the official documentation links for each primitive.
TypeFileLocationReferenceWorkspace Instructions`copilot-instructions.md`, `AGENTS.md``.github/` or rootLinkFile Instructions`*.instructions.md``.github/instructions/`LinkPrompts`*.prompt.md``.github/prompts/`LinkHooks`*.json``.github/hooks/`LinkCustom Agents`*.agent.md``.github/agents/`LinkSkills`SKILL.md``.github/skills/<name>/`, `.agents/skills/<name>/`, `.claude/skills/<name>/`Link
User-level: `{{VSCODE_USER_PROMPTS_FOLDER}}/` (*.prompt.md, *.instructions.md, *.agent.md; not skills)
Customizations roam with user's settings sync
## Creation Process
If you need to explore or validate patterns in the codebase, use a read-only subagent. If the ask-questions tool is available, use it to interview the user and clarify requirements.
Follow these steps when creating any customization file.
### 1. Determine Scope
Ask the user where they want the customization:
* Workspace: For project-specific, team-shared customizations → `.github/` folder
* User profile: For personal, cross-workspace customizations → `{{VSCODE_USER_PROMPTS_FOLDER}}/`
### 2. Choose the Right Primitive
Use the Decision Flow above to select the appropriate file type based on the user's need.
### 3. Create the File
Create the file directly at the appropriate path:
* Use the location tables in each reference file
* Include required frontmatter as needed
* Add the body content following the templates
### 4. Validate
After creating:
* Confirm the file is in the correct location
* Verify frontmatter syntax (YAML between `---` markers)
* Check that `description` is present and meaningful
## Edge Cases
Instructions vs Skill? Does this apply to most work, or specific tasks? Most → Instructions. Specific → Skill.
Skill vs Prompt? Both appear as slash commands in chat (type `/`). Multi-step workflow with bundled assets → Skill. Single focused task with inputs → Prompt.
Skill vs Custom Agent? Same capabilities for all steps → Skill. Need context isolation (subagent returns single output) or different tool restrictions per stage → Custom Agent.
Hooks vs Instructions? Instructions guide agent behavior (non-deterministic). Hooks enforce behavior via shell commands at lifecycle events like `PreToolUse` or `PostToolUse` — they can block operations, require approval, or run formatters deterministically. See hooks reference.
## Common Pitfalls
Description is the discovery surface. The `description` field is how the agent decides whether to load a skill, instruction, or agent. If trigger phrases aren't IN the description, the agent won't find it. Use the "Use when..." pattern with specific keywords.
YAML frontmatter silent failures. Unescaped colons in values, tabs instead of spaces, `name` that doesn't match folder name — all cause silent failures with no error message. Always quote descriptions that contain colons: `description: "Use when: doing X"`.
`applyTo: "**"` burns context. This means "always included for every file request" — it loads the instruction into the context window on every interaction, even when irrelevant. Use specific globs (`**/*.py`, `src/api/**`) unless the instruction truly applies to all files.
## More skills from microsoft
oss-growthby microsoftOSS growth hacker personapr-description-skillby microsoftTrigger this skill on any of the following intents:python-architectureby microsoftPython architect personasupply-chain-securityby microsoftSupply chain security expert personaskill-nameby microsoftDescription of what the skill does and when to use itwork-iterationsby microsoftList, create, and assign iterations for Azure DevOps projects and teams.djangoby microsoftBest practices for Django web development including models, views, templates, and testing.flaskby microsoftBest practices for Flask web development including routing, blueprints, and testing.
---
**Source**: https://github.com/microsoft/vscode-copilot-chat/tree/HEAD/assets/prompts/skills/agent-customization
**Author**: microsoft
**Discovered via**: mcpservers.org
Related skills 6
running-claude-code-via-litellm-copilot
Use when routing Claude Code through a local LiteLLM proxy to GitHub Copilot, reducing direct Anthropic spend, configuring ANTHROPIC_BASE_URL or ANTHROPIC_MODEL overrides, or troubleshooting Copilot proxy setup failures such as model-not-found, no localhost traffic, or GitHub 401/403 auth errors.
skills-cli
Use when users ask to discover, install, list, check, update, remove, back up, restore, sync, or initialize Agent Skills, mention `bunx skills`, `npx skills`, `skills.sh`, or `skills-lock.json`, ask "find a skill for X", or want help extending agent capabilities with installable skills.
repo-intake-and-plan
Narrow RigorPilot helper for README-first deep learning repo reproduction. Use when the task is specifically to scan a repository, read the README and common project files, extract documented commands, classify inference, evaluation, and training candidates, and return the smallest trustworthy reproduction plan to the main orchestrator. Do not use for environment setup, asset download, command execution, final reporting, paper lookup, or end-to-end orchestration.
image-to-video
Animate any still image on RunComfy — this skill is a smart router that matches the user's intent to the right i2v model in the RunComfy catalog. Picks HappyHorse 1.0 I2V (Arena #1, native audio, identity preservation) for general animations, Wan 2.7 with `audio_url` for custom-voiceover lip-sync, or Seedance 2.0 Pro for multi-modal animation from image + reference video + reference audio. Bundles each model's documented prompting patterns so the caller gets sharper output without burning ite...
video-edit
Edit existing video on RunComfy — this skill is a smart router that matches the user's intent to the right edit model in the RunComfy catalog. Picks Wan 2.7 Edit-Video (general restyle / background swap / packaging swap, identity + motion preservation), Kling 2.6 Pro Motion Control (transfer precise motion from a reference video to a target character), or Lucy Edit Restyle (lightweight identity-stable restyle / outfit swap). Bundles each model's documented prompting patterns so the skill gets...
nano-banana-2
Generate images with Google Nano Banana 2 (Gemini-family flash-tier text-to-image) on RunComfy — bundled with the model's documented prompting patterns so the skill gets sharper output than naive prompting against the same model. Documents Nano Banana 2's strengths (rapid iteration, in-image typography rendering, predictable framing, optional web-grounded context), the resolution-tier pricing, the safety-tolerance dial, and when to route to Nano Banana Pro / GPT Image 2 / Flux 2 / Seedream in...