Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
laurigates avatar

Configure Select

  • 56 installs
  • 49 repo stars
  • Updated August 4, 2026
  • laurigates/claude-plugins

Helps with ai & agent building tasks.

About

configure-select is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • configure-select
  • AI & Agent Building
  • AI-coding skill

Configure Select by the numbers

  • 56 all-time installs (skills.sh)
  • Ranked #6,668 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/laurigates/claude-plugins --skill configure-select

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs56
repo stars49
Last updatedAugust 4, 2026
Repositorylaurigates/claude-plugins

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

/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: !find . -maxdepth 1 -name '.project-standards.yaml' -exec grep -m1 "^project_type:" {} +
  • 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

3. 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 \

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

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.