configure-plugin/skills/configure-editor/SKILL.md
EditorConfig and VS Code workspace settings for team consistency. Use when setting up format-on-save, recommended extensions, or debug configurations.
npx skillsauth add laurigates/claude-plugins configure-editorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Check and configure editor settings for consistency across the team.
| Use this skill when... | Use another approach when... | |------------------------|------------------------------| | Setting up consistent editor configuration across a team | Personal editor preferences only (configure in user settings) | | Checking EditorConfig or VS Code workspace compliance | Just viewing existing .editorconfig (use Read tool) | | Configuring format-on-save for detected languages | Project doesn't use VS Code (configure for other editors manually) | | Adding recommended VS Code extensions for project tools | Extensions are already properly configured | | Setting up debug configurations and tasks | Simple project with no debugging needs |
find . -maxdepth 1 -name \'.editorconfig\'find . -maxdepth 1 -name \'.vscode/settings.json\'find . -maxdepth 1 -name \'.vscode/extensions.json\'find . -maxdepth 1 -name \'.vscode/launch.json\'find . -maxdepth 1 -name \'.vscode/tasks.json\'find . -maxdepth 1 \( -name 'package.json' -o -name 'tsconfig.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' -o -name 'biome.json' \)find . -maxdepth 1 -name \'.project-standards.yaml\'Parse from $ARGUMENTS:
--check-only: Report compliance status without modifications--fix: Apply all fixes automatically without promptingExecute this editor configuration workflow:
Check for language indicators:
| Indicator | Language/Tool | Configuration Needed |
|-----------|---------------|---------------------|
| package.json | JavaScript/TypeScript | Biome |
| tsconfig.json | TypeScript | TypeScript extension |
| pyproject.toml | Python | Ruff, Python extension |
| Cargo.toml | Rust | rust-analyzer |
| biome.json | Biome formatter/linter | Biome extension |
Check existing configuration against these requirements:
EditorConfig:
.editorconfig existsVS Code Settings:
.vscode/settings.json existsVS Code Extensions:
.vscode/extensions.json existsPrint a formatted compliance report showing status of each check:
Editor Configuration Compliance Report
=======================================
Project: [name]
Languages: [detected]
Detected Tools: [detected]
EditorConfig: [status per check]
VS Code Settings: [status per check]
VS Code Extensions: [status per check]
Overall: [X issues found]
Recommendations: [list specific fixes]
If --check-only, stop here.
Apply fixes based on detected languages. Use configurations from REFERENCE.md.
.editorconfig with language-specific sections.vscode/settings.json with format-on-save and per-language formatters.vscode/extensions.json with recommended extensions for detected tools.vscode/launch.json with debug configurations for detected languages.vscode/tasks.json with build/test/lint tasksUpdate .project-standards.yaml:
components:
editor: "2025.1"
editor_config: true
vscode_settings: true
vscode_extensions: true
Create docs/EDITOR_SETUP.md with quick start instructions for the team covering VS Code setup, recommended extensions, and troubleshooting.
Print a summary of all changes made, including files created/updated, extensions recommended, and next steps for the team.
For detailed configuration templates and language-specific settings, see REFERENCE.md.
| Context | Command |
|---------|---------|
| Check if EditorConfig exists | test -f .editorconfig && echo "exists" \|\| echo "missing" |
| Validate EditorConfig syntax | editorconfig-checker .editorconfig 2>&1 (if installed) |
| Check VS Code settings exist | test -f .vscode/settings.json && jq empty .vscode/settings.json 2>&1 |
| List detected languages | find . -maxdepth 1 \( -name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' \) -exec basename {} \; |
| Quick compliance check | /configure:editor --check-only |
| Auto-fix all issues | /configure:editor --fix |
| Flag | Description |
|------|-------------|
| --check-only | Report status without offering fixes |
| --fix | Apply all fixes automatically without prompting |
# Check compliance and offer fixes
/configure:editor
# Check only, no modifications
/configure:editor --check-only
# Auto-fix all issues
/configure:editor --fix
/configure:formatting - Configure code formatting/configure:linting - Configure linting tools/configure:all - Run all compliance checkstesting
Verify accumulated bug claims at upstream HEAD and dedup against trackers before filing issues. Use when filing upstream reports from backlogs, audit docs, or git-history findings.
documentation
Gate outward-bound text (upstream issues, docs, PR bodies) through isolated haiku fresh-reader critique before publishing. Use when an artifact must survive a reader with zero project context.
tools
Suggest improvements to SKILL.md content, descriptions, or tool config from eval results. Use when raising pass rates, fixing triggering, or iterating on a skill after evaluation.
tools
deadbranch CLI for stale-branch cleanup — dry-run preview, TUI or non-interactive delete, protects main/develop/WIP. Use when asked to clean up branches, prune branches, or remove stale branches.