extension-review
Audit VS Code extensions against the current project stack and recommend keep/add/remove actions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Audit VS Code extensions against the current project stack and recommend keep/add/remove actions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create an Architectural Decision Record (ADR) to document a significant design or technology choice
Diagnose and fix a failing CI pipeline or GitHub Actions workflow
Triage a GitHub issue by classifying severity, labelling waste category, proposing next action, and drafting a structured response
Create a new MCP server — clarify purpose, choose transport, scaffold, implement, test, and register
Configure and manage Model Context Protocol servers for external tool access
Discover, evaluate, install, test, and manage agent plugins for VS Code Copilot
| name | extension-review |
| description | Audit VS Code extensions against the current project stack and recommend keep/add/remove actions |
| compatibility | >=3.2 |
Skill metadata: version "1.0"; license MIT; tags [extensions, vscode, audit, tooling, review]; compatibility ">=3.2"; recommended tools [codebase, fetch].
Review the current project's VS Code extensions and recommend what to keep, add, or remove based on the actual stack in the repository.
.vscode/extensions.json directly without an audit firstGet the installed list — Try to enumerate extensions automatically using the runCommands tool:
code --list-extensions --show-versions | sort
If the command fails (e.g., code CLI not on PATH or terminal unavailable), fall back to asking the user to run code --list-extensions | sort and paste the output.
Profile check — Check whether a repo-specific VS Code Profile is active:
code --list-extensions | grep -i copilot-profile-tools to detect the companion extension.get_active_profile Language Model Tool. If the user is on the Default Profile, recommend creating a dedicated Empty Profile (code . --profile "ProjectName") before proceeding.Read workspace recommendations — Inspect .vscode/extensions.json and .vscode/settings.json if they exist.
Detect the stack — Scan the repository for the actual language, runtime, linter, formatter, test, and config signals that determine which extensions are relevant.
Compare installed vs needed — Build three groups:
Handle unknown stacks carefully — If the project uses a tool not covered by the built-in stack table, research the VS Code Marketplace and only recommend candidates that meet all three checks:
Persist new mappings — If an unknown stack produces a qualified extension recommendation, append the new stack-to-extension mapping to .copilot/workspace/TOOLS.md under Extension registry.
Present the report — Use this structure:
## Extension Review - <project>
### Keep
- `publisher.extension` - why it still fits
### Recommended additions
- `publisher.extension` - what it provides | why needed
Install: Ctrl+P -> `ext install publisher.extension`
### Consider removing
- `publisher.extension` - duplicate / unused language / deprecated
### Notes
- stack signals discovered
- unknown stacks researched
- extension registry updates made
Wait — Do not modify .vscode/extensions.json or install/uninstall anything until the user explicitly asks.