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

configure-formatting配置格式

Agent Skill

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

总安装

1,223

周安装

52

GitHub Stars

28

下载量

428
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

configure-formatting 用于配置 Biome、Prettier 或 Ruff 等现代代码格式化工具。

  • 适用于保持代码风格统一与减少合并冲突。
  • 支持从旧工具向 Biome/Ruff 迁移的完整方案。
  • 包含格式化命令执行,可能改变文件内容需提前备份。
  • 建议在 pre-commit hook 中集成实现自动修复。

SKILL.md

/configure:formatting

Check and configure code formatting tools against modern best practices.

When to Use This Skill

Use this skill when...Use another approach when...
Setting up Biome, Prettier, Ruff format, or rustfmt for a projectRunning an existing formatter (biome format, ruff format)
Migrating from Prettier to Biome or Black to RuffFixing individual formatting issues in specific files
Auditing formatter configuration for completeness and best practicesConfiguring linting rules (/configure:linting instead)
Adding format-on-save and CI format checksSetting up pre-commit hooks only (/configure:pre-commit instead)
Standardizing formatting settings across a monorepoEditing .editorconfig or .vscode/settings.json manually

Context

  • Biome config:!find. -maxdepth 1 -name \'biome.json\'
  • Prettier config:!find. -maxdepth 1 \(-name '.prettierrc*' -o -name 'prettier.config.*' \)
  • Ruff config:!grep -l 'tool.ruff.format' pyproject.toml
  • Black config:!grep -l 'tool.black' pyproject.toml
  • Rustfmt config:!find. -maxdepth 1 \(-name 'rustfmt.toml' -o -name '.rustfmt.toml' \)
  • EditorConfig:!find. -maxdepth 1 -name \'.editorconfig\'
  • Package JSON:!find. -maxdepth 1 -name \'package.json\'
  • Python project:!find. -maxdepth 1 -name \'pyproject.toml\'
  • Rust project:!find. -maxdepth 1 -name \'Cargo.toml\'
  • Pre-commit:!find. -maxdepth 1 -name \'.pre-commit-config.yaml\'
  • 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
  • --formatter <formatter>: Override formatter detection (biome, prettier, ruff, rustfmt)

Version Checking

CRITICAL: Before flagging outdated formatters, verify latest releases using WebSearch or WebFetch:

  1. Biome: Check biomejs.dev or GitHub releases
  2. Prettier: Check prettier.io or npm
  3. Ruff: Check docs.astral.sh/ruff or GitHub releases
  4. rustfmt: Bundled with Rust toolchain - check Rust releases

Execution

Execute this code formatting configuration workflow:

Step 1: Detect project languages and existing formatters

Check for language indicators and formatter configurations:

IndicatorLanguageDetected Formatter
biome.json with formatterJavaScript/TypeScriptBiome
.prettierrc.*JavaScript/TypeScriptPrettier
pyproject.toml [tool.ruff.format]PythonRuff
pyproject.toml [tool.black]PythonBlack (legacy)
rustfmt.toml or .rustfmt.tomlRustrustfmt

Modern formatting preferences:

  • JavaScript/TypeScript: Biome (preferred) or Prettier
  • Python: Ruff format (replaces Black)
  • Rust: rustfmt (standard)

Step 2: Analyze current formatter configuration

For each detected formatter, check configuration completeness:

  1. Config file exists with required settings (indent, line width, quotes, etc.)
  2. Ignore patterns configured
  3. Format scripts defined in package.json / pyproject.toml
  4. Pre-commit hook configured
  5. CI/CD check configured

Step 3: Generate compliance report

Print a formatted compliance report:

Code Formatting Compliance Report
==================================
Project: [name]
Language: [detected]
Formatter: [detected]

Configuration:  [status per check]
Format Options: [status per check]
Scripts:        [status per check]
Integration:    [status per check]

Overall: [X issues found]
Recommendations: [list specific fixes]

If --check-only, stop here.

Step 4: Install and configure formatter (if --fix or user confirms)

Based on detected language and formatter preference, install and configure. Use configuration templates from REFERENCE.md.

  1. Install formatter package
  2. Create configuration file (biome.json,.prettierrc.json, pyproject.toml section, rustfmt.toml)
  3. Add format scripts to package.json or Makefile/justfile
  4. Create ignore file if needed (.prettierignore)

Step 5: Create EditorConfig integration

Create or update .editorconfig with settings matching the formatter configuration.

Step 6: Handle migrations (if applicable)

If legacy formatter detected (Prettier -> Biome, Black -> Ruff):

  1. Import existing configuration
  2. Install new formatter
  3. Remove old formatter
  4. Update scripts
  5. Update pre-commit hooks

Use migration guides from REFERENCE.md.

Step 7: Configure pre-commit hooks

Add formatter to .pre-commit-config.yaml using the appropriate hook repository.

Step 8: Configure CI/CD integration

Add format check step to GitHub Actions workflow.

Step 9: Configure editor integration

Create or update .vscode/settings.json with format-on-save and .vscode/extensions.json with formatter extension.

Step 10: Update standards tracking

Update .project-standards.yaml:

components:
  formatting: "2025.1"
  formatting_tool: "[biome|prettier|ruff|rustfmt]"
  formatting_pre_commit: true
  formatting_ci: true

Step 11: Print completion report

Print a summary of changes made, scripts added, and next steps (run format, verify CI, enable format-on-save).

For detailed configuration templates, migration guides, and pre-commit configurations, see REFERENCE.md.

Agentic Optimizations

ContextCommand
Quick compliance check/configure:formatting --check-only
Auto-fix all issues/configure:formatting --fix
Check Biome formattingbiome format --check --reporter=github
Check Prettier formatting`npx prettier --check. 2>&1
Check Ruff formattingruff format --check --output-format=github
Check rustfmt formatting`cargo fmt --check 2>&1

Flags

FlagDescription
--check-onlyReport status without offering fixes
--fixApply all fixes automatically without prompting
--formatter <formatter>Override formatter detection (biome, prettier, ruff, rustfmt)

Examples

# Check compliance and offer fixes
/configure:formatting

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

# Auto-fix and migrate to Biome
/configure:formatting --fix --formatter biome

Error Handling

  • Multiple formatters detected: Warn about conflict, suggest migration
  • No package manager found: Cannot install formatter, error
  • Invalid configuration: Report parse error, offer to replace with template
  • Formatting conflicts: Report files that would be reformatted

See Also

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.86%
按下载量换算153

Claude

31.39%
按下载量换算134

Cursor

19.25%
按下载量换算82

Gemini CLI

10.95%
按下载量换算47

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills