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

configure-pre-commit配置预提交

Agent Skill

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

总安装

1,423

周安装

57

GitHub Stars

28

下载量

461
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于配置和管理项目的预提交钩子,确保代码在提交前符合项目标准。

  • 适合需要自动化检查代码质量、格式或合规性的开发场景。
  • 通过命令行工具集成到项目中,自动运行相关检查并给出反馈。
  • 安装前需确认是否包含系统命令执行权限,避免误操作影响本地环境。
  • configure-pre-commit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/configure:pre-commit

Check and configure pre-commit hooks against project standards.

When to Use This Skill

Use this skill when...Use another approach when...
Setting up or validating pre-commit hooksProject doesn't use pre-commit framework (use git hooks directly)
Checking compliance with project standardsJust running hooks manually (use pre-commit run command)
Installing project-type-specific hooksHooks are already properly configured
Migrating to pre-commit frameworkSimple project with no quality checks needed
Updating hook configurations for detected toolsNeed to disable pre-commit entirely

Context

  • Pre-commit config:!find. -maxdepth 1 -name \'.pre-commit-config.yaml\'
  • Project standards:!find. -maxdepth 1 -name \'.project-standards.yaml\'
  • Project type in standards:!grep -m1 "^project_type:".project-standards.yaml
  • Has terraform:!find. -maxdepth 2 \(-name '*.tf' -o -type d -name 'terraform' \) -print -quit
  • Has helm:!find. -maxdepth 2 -type d -name 'helm' -print -quit
  • Has package.json:!find. -maxdepth 1 -name \'package.json\'
  • Has pyproject.toml:!find. -maxdepth 1 -name \'pyproject.toml\'

Parameters

Parse from $ARGUMENTS:

  • --check-only: Report status without offering fixes
  • --fix: Apply all fixes automatically without prompting
  • --type <type>: Override project type detection (frontend, infrastructure, python)

Execution

Execute this pre-commit compliance check:

Step 1: Detect project type

  1. Read .project-standards.yaml for project_type field if it exists
  2. If not found, auto-detect:

- infrastructure: Has terraform/, helm/, argocd/, or *.tf files - frontend: Has package.json with vue/react dependencies - python: Has pyproject.toml or requirements.txt

  1. Apply --type flag override if provided

Step 2: Check configuration file

  1. If .pre-commit-config.yaml is missing: report FAIL, offer to create from template
  2. If it exists: read and parse the configuration

Step 3: Verify hook versions against latest releases

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

  1. pre-commit-hooks: GitHub releases
  2. conventional-pre-commit: GitHub releases
  3. biome: GitHub releases
  4. ruff-pre-commit: GitHub releases
  5. gitleaks: GitHub releases

Step 4: Analyze compliance

Compare existing configuration against project standards (from pre-commit-standards skill):

Required Base Hooks (All Projects):

  • pre-commit-hooks v5.0.0+ with: trailing-whitespace, end-of-file-fixer, check-yaml, check-json, check-merge-conflict, check-added-large-files
  • conventional-pre-commit v4.3.0+ with commit-msg stage

Frontend-specific:

  • biome (pre-commit) v0.4.0+
  • helmlint (if helm/ directory exists)

Infrastructure-specific:

  • tflint, helmlint (gruntwork v0.1.29+)
  • actionlint v1.7.7+
  • helm-docs v1.14.2+
  • gitleaks v8.22.1+

Python-specific:

  • ruff-pre-commit v0.8.4+ (ruff, ruff-format)
  • gitleaks v8.22.1+

Step 5: Generate compliance report

Print a report in this format:

Pre-commit Compliance Report
================================
Project Type: [type] ([detected|override])
Config File: .pre-commit-config.yaml ([found|missing])

Hook Status:
  [hook-name]     [version]   [PASS|WARN|FAIL] ([details])

Outdated Hooks:
  - [hook]: [current] -> [standard]

Overall: [N] issues found

Step 6: Apply fixes (if requested)

If --fix flag is set or user confirms:

  1. Missing config file: Create from standard template for detected project type
  2. Missing hooks: Add required hooks with standard versions
  3. Outdated versions: Update rev: values to standard versions
  4. Missing hook types: Add default_install_hook_types with pre-commit and commit-msg

After modification, run pre-commit install --install-hooks to install hooks.

Step 7: Update standards tracking

Update or create .project-standards.yaml:

standards_version: "2025.1"
project_type: "[detected]"
last_configured: "[timestamp]"
components:
  pre-commit: "2025.1"

Agentic Optimizations

ContextCommand
Check if pre-commit installed`command -v pre-commit >/dev/null 2>&1 && echo "installed" \\echo "missing"`
Validate config syntaxpre-commit validate-config.pre-commit-config.yaml 2>&1
List configured hooks`grep -E '^\s+- id:'.pre-commit-config.yaml 2>/dev/null \sed 's/.*id:[[:space:]]*//'`
Check hook versionspre-commit autoupdate --freeze 2>&1
Quick compliance check/configure:pre-commit --check-only
Auto-fix configuration/configure:pre-commit --fix

Flags

FlagDescription
--check-onlyReport status without offering fixes
--fixApply all fixes automatically without prompting
--type <type>Override project type detection (frontend, infrastructure, python)

Error Handling

  • No git repository: Warn but continue (pre-commit still useful)
  • Invalid YAML: Report parse error, offer to replace with template
  • Unknown hook repos: Skip (do not remove custom hooks)
  • Permission errors: Report and suggest manual fix

See Also

  • /configure:all - Run all compliance checks
  • /configure:status - Quick compliance overview
  • pre-commit-standards skill - Standard definitions

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.09%
按下载量换算171

Claude

28%
按下载量换算129

Cursor

20.54%
按下载量换算95

Gemini CLI

9.24%
按下载量换算43

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills