plugin-management
Discover, evaluate, install, test, and manage agent plugins for VS Code Copilot
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Discover, evaluate, install, test, and manage agent plugins for VS Code Copilot
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Set up and manage GitHub Actions workflows that use Copilot coding agents for automated PR handling and issue resolution
Inspect active GitHub Actions workflows before commit or push, run matching local checks for staged or unpushed files, ask which missing tools to install via askQuestions, and fix in-scope issues so the Commit agent can proceed.
Write a commit message following the Conventional Commits specification with scope and body
Create an Architectural Decision Record (ADR) to document a significant design or technology choice
Audit VS Code extensions against the current project stack and recommend keep/add/remove actions
Diagnose and fix a failing CI pipeline or GitHub Actions workflow
| name | plugin-management |
| description | Discover, evaluate, install, test, and manage agent plugins for VS Code Copilot |
| compatibility | >=3.2 |
Skill metadata: version "1.1"; license MIT; tags [plugins, agents, extensions, discovery, management]; compatibility ">=3.2"; recommended tools [codebase, runCommands, editFiles].
Agent plugins (VS Code 1.110+, Preview) are installable packages that bundle agents, skills, hooks, MCP servers, and slash commands. This skill covers discovering, evaluating, installing, testing, and managing plugins alongside the template's own customization files.
A single plugin can bundle any combination of:
| Type | Description |
|---|---|
| Slash commands | Additional / commands in chat |
| Skills | Agent skills with instructions, scripts, and resources |
| Agents | Custom agents with specialized personas and tool configurations |
| Hooks | Shell commands at agent lifecycle points (hook config in hooks/hooks.json or hooks.json) |
| MCP servers | External tool integrations (config in .mcp.json at plugin root, uses mcpServers key) |
User wants a plugin
│
├─ 1. CHECK INSTALLED — list installed plugins
│ Run in Extensions view: filter @agentPlugins
│ Or check VS Code settings for chat.pluginLocations (local plugins)
│ ├─ Found → verify it meets the need → DONE
│ └─ Not found → ↓
│
├─ 2. SEARCH — find plugins in configured marketplaces
│ Extensions view → search @agentPlugins <keyword>
│ Or browse chat.plugins.marketplaces URLs
│ Default marketplaces: github/copilot-plugins, github/awesome-copilot
│ Additional: anthropics/claude-code
│ ├─ Found → evaluate (see Quality Gate below) → install
│ └─ Not found → ↓
│
├─ 3. INSTALL FROM SOURCE — install directly from a Git URL
│ Command: Chat: Install Plugin From Source
│ Or: select + button on Plugins page of Chat Customizations editor
│
└─ 4. RECOMMEND ALTERNATIVE — no suitable plugin exists
Consider: workspace skill (.github/skills/), MCP server, or custom tool
Before recommending or installing a plugin, verify:
Plugins failing two or more checks are rejected.
When a plugin contributes an agent or skill with the same name as a workspace file:
| Conflict type | Resolution |
|---|---|
| Agent name collision | Workspace agent takes priority. VS Code shows source in tooltip. |
| Skill name collision | Project skills (.github/skills/) override plugin skills. |
| Hook collision | Workspace hooks fire alongside plugin hooks — check for duplicate behaviour. Most restrictive PreToolUse decision wins. |
| MCP server collision | Plugin MCP servers run alongside workspace servers. Disable via plugin toggle. |
Use the Agent Debug Panel (Developer: Open Agent Debug Panel) to see exactly which agents, skills, and hooks are loaded and from which source.
Plugins can include hooks that fire at lifecycle events (SessionStart, PreToolUse, PostToolUse, PreCompact, SubagentStart, SubagentStop, Stop).
hooks/hooks.json (Claude format) or hooks.json (Copilot format)${CLAUDE_PLUGIN_ROOT} in hook commands to reference scripts within the plugin directoryPlugins can bundle MCP servers that start automatically when the plugin is enabled.
.mcp.json at plugin root using mcpServers key (not servers)${CLAUDE_PLUGIN_ROOT} in command, args, cwd, env, url, and headers fields| Setting | Purpose |
|---|---|
chat.plugins.enabled | Enable/disable plugin discovery (boolean) |
chat.plugins.marketplaces | Git repositories serving as plugin marketplaces (array of owner/repo) |
chat.pluginLocations | Local paths for plugin development/testing (map of path → boolean) |
Projects can recommend plugins for team members:
{
"extraKnownMarketplaces": {
"company-tools": {
"source": { "source": "github", "repo": "your-org/plugin-marketplace" }
}
},
"enabledPlugins": {
"code-formatter@company-tools": true
}
}
To preview how the template's agents, skills, hooks, and prompts appear as plugin-contributed customizations:
Clone the template repo (or use an existing local copy)
Add to VS Code settings:
"chat.pluginLocations": {
"/path/to/copilot-instructions-template": true
}
Reload VS Code — plugin-contributed agents appear in the Copilot dropdown
Verify: open the Agent Debug Panel to confirm agents, skills, and hooks are loaded
Check for conflicts with any workspace-level agents in .github/agents/
@agentPlugins to see all installed pluginsExtensions: Check for Extension Updates or automatic every 24 hours