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

configure-all配置全部

Agent Skill

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

总安装

1,427

周安装

51

GitHub Stars

28

下载量

420
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

configure-all 运行全部基础设施标准合规检查,覆盖多个组件。

  • 适用于新项目初始配置或全面审计场景。
  • 可替代单个 /configure:X 技能,一次性完成多项验证。
  • 安装前请确认权限范围、维护状态及是否会执行系统命令。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

/configure:all

Run all infrastructure standards compliance checks.

When to Use This Skill

Use this skill when...Use another approach when...
Performing comprehensive infrastructure auditChecking single component (use specific /configure:X skill)
Setting up new project with all standardsProject already has all standards configured
CI/CD compliance validationNeed detailed status only (use /configure:status)
Running initial configurationInteractive component selection needed (use /configure:select)
Batch-fixing all compliance issues with --fixManual review of each component preferred

Context

  • Project standards:!find. -maxdepth 1 -name \'.project-standards.yaml\'
  • Project type indicators:!find. -maxdepth 1 \(-name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' -o -name '*.tf' \)
  • Infrastructure dirs:!find. -maxdepth 1 -type d \(-name 'terraform' -o -name 'helm' -o -name 'argocd' \)
  • Current standards version:!grep -m1 "^standards_version:".project-standards.yaml

Parameters

Parse from command arguments:

  • --check-only: Report status without offering fixes (CI/CD mode)
  • --fix: Apply all fixes automatically without prompting
  • --type <type>: Override auto-detected project type (frontend, infrastructure, python)

Execution

Execute this comprehensive infrastructure standards compliance check:

Step 1: Detect project type

  1. Read .project-standards.yaml if it exists
  2. Auto-detect project type from file indicators:

- 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 override if provided
  2. Report detected vs tracked type if different

Step 2: Run all checks

Execute each configure command in check-only mode using the SlashCommand tool:

/configure:makefile --check-only
/configure:pre-commit --check-only
/configure:release-please --check-only
/configure:dockerfile --check-only
/configure:container --check-only
/configure:skaffold --check-only
/configure:workflows --check-only
/configure:sentry --check-only
/configure:docs --check-only
/configure:github-pages --check-only
/configure:cache-busting --check-only
/configure:tests --check-only
/configure:coverage --check-only
/configure:memory-profiling --check-only
/configure:linting --check-only
/configure:formatting --check-only
/configure:dead-code --check-only
/configure:editor --check-only
/configure:security --check-only

Skip components that do not apply to the detected project type. For component applicability by project type, see REFERENCE.md.

Collect results from each check.

Step 3: Generate compliance report

Print a summary table with each component's status (PASS/WARN/FAIL), overall counts, and a list of issues to fix. For report format template, see REFERENCE.md.

Step 4: Apply fixes (if requested)

If --fix flag is set or user confirms:

  1. Run each failing configure command with --fix
  2. Report what was fixed and what requires manual intervention

Step 5: Update standards tracking

Create or update .project-standards.yaml with the current standards version, project type, timestamp, and component versions. For template, see REFERENCE.md.

Agentic Optimizations

ContextCommand
Quick compliance check (all components)/configure:all --check-only
Auto-fix all issues/configure:all --fix
Check standards file validity`test -f.project-standards.yaml && cat.project-standards.yaml \head -10`
List project type indicatorsfind. -maxdepth 1 \(-name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' \) -exec basename {} \;
Count missing componentsgrep -c "status: missing" compliance-report.txt 2>/dev/null

Flags

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

Exit Codes (for CI)

CodeMeaning
0All checks passed
1Warnings found (non-blocking)
2Failures found (blocking)

Agent Teams (Optional)

For faster compliance checks on large projects, spawn teammates for parallel configuration checks:

TeammateFocusChecks
Linting teammateCode quality configslinting, formatting, dead-code, editor
Security teammateSecurity configssecurity, pre-commit, container
Testing teammateTest infrastructuretests, coverage, memory-profiling
CI teammateDeployment configsworkflows, release-please, dockerfile, skaffold

This is optional -- the skill works sequentially without agent teams.

See Also

  • /configure:select - Interactively select which components to configure
  • /configure:status - Quick read-only status overview
  • /configure:pre-commit - Pre-commit specific checks
  • /configure:release-please - Release automation checks
  • /configure:dockerfile - Dockerfile configuration checks
  • /configure:container - Comprehensive container infrastructure
  • /configure:skaffold - Kubernetes development checks
  • /configure:workflows - GitHub Actions checks
  • /configure:sentry - Sentry error tracking checks
  • /configure:docs - Documentation standards and generators
  • /configure:github-pages - GitHub Pages deployment
  • /configure:cache-busting - Cache-busting strategies
  • /configure:tests - Testing framework setup
  • /configure:coverage - Code coverage configuration
  • /configure:memory-profiling - Memory profiling with pytest-memray
  • /configure:linting - Linter configuration
  • /configure:formatting - Code formatter setup
  • /configure:dead-code - Dead code detection
  • /configure:editor - Editor/IDE configuration
  • /configure:security - Security scanning

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.68%
按下载量换算154

Claude

30.94%
按下载量换算130

Cursor

18.3%
按下载量换算77

Gemini CLI

10.08%
按下载量换算42

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills