用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill vscode-copilot-customization命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | vscode-copilot-customization |
| description | > Use when this capability is needed. |
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) |
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?
├─ YES → Custom Agent (.agent.md)
└─ NO →
Is it a reusable multi-agent portable capability?
├─ YES → Agent Skill (SKILL.md)
└─ NO → Prompt File (.prompt.md)
Do you want to run shell commands around agent actions?
└─ YES → Hook (hooks/*.json)
Do you want to bundle everything for distribution?
└─ YES → Agent Plugin (plugin.json)
Always-on context and rules. Stored in .github/copilot-instructions.md (workspace-wide), AGENTS.md (multi-agent), or *.instructions.md (file-scoped via applyTo glob).
Read references/instructions.md when asked to create, write, or configure custom instructions.
Reusable task templates invoked manually via / slash command. Stored in .github/prompts/*.prompt.md.
Read references/prompt-files.md when asked to create a prompt file or reusable chat task.
Specialized Copilot persona with tool whitelist, model choice, and optional handoffs. Stored in .github/agents/*.agent.md.
Read references/custom-agents.md when asked to create a custom agent or chat mode.
Portable, progressive-loading capabilities that work across VS Code, Copilot CLI, and cloud agents. Stored in .github/skills/<name>/SKILL.md.
Read references/agent-skills.md when asked to create a skill or when the user asks about SKILL.md format, frontmatter fields, or skill best practices.
Shell commands triggered at agent lifecycle events (PostToolUse, Stop, etc.). Stored in .github/hooks/*.json.
Read references/hooks.md when asked to create a hook, set up auto-formatting, or run commands around agent actions.
Bundle skills, agents, hooks, and MCP servers for distribution. Defined in plugin.json.
Read references/plugins.md when asked to create, publish, or install an agent plugin.
| Type | Workspace location | User profile location |
|---|---|---|
| Always-on instructions (Copilot) | .github/copilot-instructions.md | — |
| Always-on instructions (multi-agent) | AGENTS.md | — |
| Targeted instructions | .github/instructions/*.instructions.md | ~/.vscode/instructions/ |
| Prompt files | .github/prompts/*.prompt.md | ~/.vscode/prompts/ |
| Custom agents | .github/agents/*.agent.md | ~/.vscode/agents/ |
| Agent skills | .github/skills/<name>/SKILL.md | ~/.vscode/skills/ |
| Hooks | .github/hooks/*.json | ~/.vscode/hooks/ |
| Claude Code agents | .claude/agents/*.md | — |
| Claude Code rules | .claude/rules/*.md | — |
/init → workspace-wide copilot-instructions.md
/create-instruction → targeted .instructions.md
/create-prompt → .prompt.md file
/create-agent → .agent.md file
/create-skill → agent skill directory
/create-hook → hook JSON file
Open the Chat Customizations editor for a visual overview:
Command Palette → "Chat: Open Chat Customizations"
references/instructions.md – Custom instructions templates and settingsreferences/prompt-files.md – Prompt file templates and input variablesreferences/custom-agents.md – Agent templates and handoff configurationreferences/agent-skills.md – Skill format, progressive loading, official docsreferences/hooks.md – Hook templates, events, naming conventionreferences/plugins.md – Plugin structure and distributionreferences/frontmatter-reference.md – Complete frontmatter field reference for all typesreferences/examples.md – Real-world examples organized by use caseSource: danielsitek/skills — distributed by TomeVault.