Agent skill
vscode-extensions-1-extension-management
Sub-skill of vscode-extensions: 1. Extension Management (+2).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/operations/devtools/vscode-extensions/1-extension-management
SKILL.md
1. Extension Management (+2)
1. Extension Management
# 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
{
// 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
// .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"
}
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?