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

configure-select配置选择

Agent Skill

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

总安装

1,373

周安装

55

GitHub Stars

28

下载量

444
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于交互式选择要运行的基础设施标准检查项。

  • 适合需要定制检查范围或逐步实施合规要求的场景。
  • 可单独启用特定组件,避免全量运行带来的资源消耗。
  • 安装前需确认是否包含系统命令执行权限,避免误操作影响项目状态。
  • configure-select 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/configure:select

Interactively select which infrastructure standards checks to run.

When to Use This Skill

Use this skill when...Use another approach when...
Setting up selected components interactivelyRunning all components (use /configure:all)
Choosing specific standards to implementChecking status only (use /configure:status)
Customizing configuration scope for projectSingle component needed (use specific /configure:X skill)
User wants control over which components to configureAutomated full setup preferred
Building configuration incrementallyComplete infrastructure setup needed immediately

Context

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

Parameters

Parse from $ARGUMENTS:

  • --check-only: Report status without offering fixes (CI/CD mode)
  • --fix: Apply fixes automatically to all selected components

Execution

Execute this interactive component selection workflow:

Step 1: Detect project type

  1. Read .project-standards.yaml if it exists (check project_type field)
  2. Auto-detect from file structure:

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

  1. Report detected type to user

Step 2: Present component selection

Use AskUserQuestion with multiSelect to present four category-based questions:

Question 1: CI/CD & Version Control

OptionDescription
Pre-commit hooksGit hooks for linting, formatting, commit messages
Release automationrelease-please workflow and changelog generation
GitHub ActionsCI/CD workflows for testing and deployment
All CI/CDIncludes: pre-commit, release-please, workflows, github-pages, makefile

Question 2: Container & Deployment

OptionDescription
DockerfileAlpine/slim base, non-root user, multi-stage builds
Container infraRegistry, scanning, devcontainer setup
SkaffoldKubernetes development configuration
All containerIncludes: dockerfile, container, skaffold, sentry, justfile

Question 3: Testing

OptionDescription
Test frameworkVitest, Jest, pytest, or cargo-nextest setup
Code coverageCoverage thresholds and reporting
API testingPact contracts, OpenAPI validation
All testingIncludes: tests, coverage, api-tests, integration-tests, load-tests, ux-testing, memory-profiling

Question 4: Code Quality

OptionDescription
Linting & FormattingBiome, Ruff, Clippy configuration
Security scanningDependency audits, SAST, secrets detection
DocumentationTSDoc, JSDoc, pydoc, rustdoc generators
All qualityIncludes: linting, formatting, dead-code, docs, security, editor, package-management

Step 3: Map selections to commands

SelectionCommands
Pre-commit hooks/configure:pre-commit
Release automation/configure:release-please
GitHub Actions/configure:workflows
All CI/CDpre-commit, release-please, workflows, github-pages, makefile
Dockerfile/configure:dockerfile
Container infra/configure:container
Skaffold/configure:skaffold
All containerdockerfile, container, skaffold, sentry, justfile
Test framework/configure:tests
Code coverage/configure:coverage
API testing/configure:api-tests
All testingtests, coverage, api-tests, integration-tests, load-tests, ux-testing, memory-profiling
Linting & Formatting/configure:linting, /configure:formatting
Security scanning/configure:security
Documentation/configure:docs
All qualitylinting, formatting, dead-code, docs, security, editor, package-management

Step 4: Execute selected checks

Run each selected command with appropriate flags:

  • Default: Run with --check-only first, then offer --fix
  • If --check-only flag: Only audit, no fixes offered
  • If --fix flag: Apply fixes automatically

Report results as each check completes.

Step 5: Generate summary report

Print a summary for selected components only:

Selected Components Summary:
+-----------------+----------+---------------------------------+
| Component       | Status   | Notes                           |
+-----------------+----------+---------------------------------+
| Pre-commit      | WARN     | 2 outdated hooks                |
| Linting         | PASS     | Biome configured                |
| Formatting      | PASS     | Biome configured                |
+-----------------+----------+---------------------------------+

Agentic Optimizations

ContextCommand
Interactive component selection/configure:select
Select and auto-fix/configure:select --fix
Check mode only/configure:select --check-only
Detect project type`test -f.project-standards.yaml && grep "^project_type:".project-standards.yaml \sed 's/.*:[[:space:]]*//'`

Flags

FlagDescription
--check-onlyReport status without offering fixes
--fixApply fixes automatically to all selected

Comparison with Other Commands

CommandUse Case
/configure:allRun everything (CI, full audit)
/configure:selectChoose specific components interactively
/configure:statusQuick read-only overview
/configure:<component>Single component only

See Also

  • /configure:all - Run all checks
  • /configure:status - Read-only status overview

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.86%
按下载量换算155

Claude

29.06%
按下载量换算129

Cursor

18.66%
按下载量换算83

Gemini CLI

8.61%
按下载量换算38

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills