Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

configure-editor配置编辑器

Agent Skill

configure-editor 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,323

周安装

53

GitHub Stars

28

下载量

428
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:configure-editor(配置编辑器)
来源仓库:https://github.com/laurigates/claude-plugins
仓库路径:skills/configure-editor
安装命令:
npx skills add https://github.com/laurigates/claude-plugins --skill configure-editor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill configure-editor

简介

configure-editor 用于统一团队编辑器配置,确保缩进、换行符等格式一致性。

  • 适用于跨 IDE 开发的标准化管理需求。
  • 支持 EditorConfig 与 VS Code workspace 双重校验。
  • 包含配置文件修改,需同步更新团队成员本地设置。
  • 建议配合 Git hook 实现提交前自动格式化。

SKILL.md

/configure:editor

Check and configure editor settings for consistency across the team.

When to Use This Skill

Use this skill when...Use another approach when...
Setting up consistent editor configuration across a teamPersonal editor preferences only (configure in user settings)
Checking EditorConfig or VS Code workspace complianceJust viewing existing.editorconfig (use Read tool)
Configuring format-on-save for detected languagesProject doesn't use VS Code (configure for other editors manually)
Adding recommended VS Code extensions for project toolsExtensions are already properly configured
Setting up debug configurations and tasksSimple project with no debugging needs

Context

  • EditorConfig:!find. -maxdepth 1 -name \'.editorconfig\'
  • VS Code settings:!find. -maxdepth 1 -name \'.vscode/settings.json\'
  • VS Code extensions:!find. -maxdepth 1 -name \'.vscode/extensions.json\'
  • VS Code launch:!find. -maxdepth 1 -name \'.vscode/launch.json\'
  • VS Code tasks:!find. -maxdepth 1 -name \'.vscode/tasks.json\'
  • Project languages:!find. -maxdepth 1 \(-name 'package.json' -o -name 'tsconfig.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' -o -name 'biome.json' \)
  • Project standards:!find. -maxdepth 1 -name \'.project-standards.yaml\'

Parameters

Parse from $ARGUMENTS:

  • --check-only: Report compliance status without modifications
  • --fix: Apply all fixes automatically without prompting

Execution

Execute this editor configuration workflow:

Step 1: Detect project languages and tools

Check for language indicators:

IndicatorLanguage/ToolConfiguration Needed
package.jsonJavaScript/TypeScriptBiome
tsconfig.jsonTypeScriptTypeScript extension
pyproject.tomlPythonRuff, Python extension
Cargo.tomlRustrust-analyzer
biome.jsonBiome formatter/linterBiome extension

Step 2: Analyze current editor configuration

Check existing configuration against these requirements:

EditorConfig:

  1. Verify .editorconfig exists
  2. Check root directive, charset, end-of-line, final newline, trim whitespace
  3. Check language-specific sections match detected languages

VS Code Settings:

  1. Verify .vscode/settings.json exists
  2. Check format-on-save, default formatters per language, language-specific settings

VS Code Extensions:

  1. Verify .vscode/extensions.json exists
  2. Check recommended extensions match project tools

Step 3: Generate compliance report

Print 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.

Step 4: Configure editor files (if --fix or user confirms)

Apply fixes based on detected languages. Use configurations from REFERENCE.md.

  1. Create or update .editorconfig with language-specific sections
  2. Create or update .vscode/settings.json with format-on-save and per-language formatters
  3. Create or update .vscode/extensions.json with recommended extensions for detected tools
  4. Add language-specific settings (TypeScript import preferences, Python interpreter, Rust clippy)

Step 5: Create launch and task configurations

  1. Create .vscode/launch.json with debug configurations for detected languages
  2. Create .vscode/tasks.json with build/test/lint tasks

Step 6: Update standards tracking

Update .project-standards.yaml:

components:
  editor: "2025.1"
  editor_config: true
  vscode_settings: true
  vscode_extensions: true

Step 7: Create documentation

Create docs/EDITOR_SETUP.md with quick start instructions for the team covering VS Code setup, recommended extensions, and troubleshooting.

Step 8: Print completion report

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.

Agentic Optimizations

ContextCommand
Check if EditorConfig exists`test -f.editorconfig && echo "exists" \\echo "missing"`
Validate EditorConfig syntaxeditorconfig-checker.editorconfig 2>&1 (if installed)
Check VS Code settings existtest -f.vscode/settings.json && jq empty.vscode/settings.json 2>&1
List detected languagesfind. -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

Flags

FlagDescription
--check-onlyReport status without offering fixes
--fixApply all fixes automatically without prompting

Examples

# Check compliance and offer fixes
/configure:editor

# Check only, no modifications
/configure:editor --check-only

# Auto-fix all issues
/configure:editor --fix

Error Handling

  • No language detected: Create minimal EditorConfig
  • Conflicting formatters: Warn about duplicate formatter configs
  • Invalid JSON: Report parse error, offer to replace with template

See Also

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.6%
按下载量换算148

Claude

30.86%
按下载量换算132

Cursor

20.79%
按下载量换算89

Gemini CLI

9.46%
按下载量换算40

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/laurigates/claude-plugins --skill configure-editor 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills