Sub-skill of vscode-extensions: 1. Extension Management (+2).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill 1-extension-management --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of 1 Extension Management?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-1-extension-management)More formats (shields.io, HTML) on the badges page.
---
name: vscode-extensions-1-extension-management
description: 'Sub-skill of vscode-extensions: 1. Extension Management (+2).'
version: 1.0.0
category: operations
type: reference
scripts_exempt: true
---
# 1. Extension Management (+2)
## 1. Extension Management
```bash
# Keep extensions minimal
# Review periodically
code --list-extensions | wc -l
# Disable per-workspace for unused extensions
# Settings -> Extensions -> Disable (Workspace)
# Use extension packs wisely
# Create custom packs for teams
```
## 2. Performance Optimization
```jsonc
{
// Reduce file watching
"files.watcherExclude": {
"**/node_modules/**": true,
"**/.git/objects/**": true,
"**/venv/**": true
},
// Reduce search scope
"search.exclude": {
"**/node_modules": true,
"**/dist": true
},
// Disable heavy features if needed
"editor.minimap.enabled": false,
"editor.codeLens": false,
// Limit suggestions
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
}
}
```
## 3. Team Consistency
```jsonc
// .vscode/settings.json - Committed to repo
{
// Consistent formatting
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
// Consistent tab settings
"editor.tabSize": 2,
"editor.insertSpaces": true,
// Consistent line endings
"files.eol": "\n"
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!