From configure-plugin
Shows infrastructure compliance status (read-only). Detects project type, lists components, and reports adherence to standards for Docker, Kubernetes, CI/CD, linting, and more.
How this skill is triggered — by the user, by Claude, or both
Slash command
/configure-plugin:configure-status [--verbose][--verbose]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Display infrastructure standards compliance status without making changes.
Display infrastructure standards compliance status without making changes.
| Use this skill when... | Use another approach when... |
|---|---|
| Checking overall compliance status | Running full compliance checks with fixes (use /configure:all --fix) |
| Generating compliance reports | Need to fix issues found (use /configure:all) |
| Quick project health check | Checking specific component (use /configure:X --check-only) |
| CI/CD status validation | Running interactive selection (use /configure:select) |
| Reviewing current configuration state | Need detailed component analysis |
find . -maxdepth 1 -name \'.project-standards.yaml\'find . -maxdepth 1 -name '.project-standards.yaml' -exec grep -m1 "^project_type:" {} +find . -maxdepth 1 -name '.project-standards.yaml' -exec grep -m1 "^standards_version:" {} +find . -maxdepth 1 -name '.project-standards.yaml' -exec grep -m1 "^last_configured:" {} +find . -maxdepth 1 -name \'.pre-commit-config.yaml\'find . -path '*/.github/workflows/*' -maxdepth 3 -name '*.yml'find . -maxdepth 1 -name 'Dockerfile*' -print -quitfind . -maxdepth 1 -name \'skaffold.yaml\'find . -maxdepth 2 -type d -name 'helm' -print -quitfind . -maxdepth 1 \( -name 'vitest.config.*' -o -name 'jest.config.*' -o -name 'pytest.ini' \)find . -maxdepth 1 \( -name 'biome.json' -o -name '.eslintrc*' \)find . -maxdepth 1 -name \'.editorconfig\'find . -maxdepth 1 -name \'.gitleaks.toml\'find . -maxdepth 1 \( -name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' \)Parse from $ARGUMENTS:
--verbose: Show detailed compliance information for each componentExecute this read-only compliance status check:
.project-standards.yaml if it exists (shows tracked version and last configured date)List the component roster from the manifest (single source of truth — configure-all/components.yaml):
bash "${CLAUDE_SKILL_DIR}/../configure-all/scripts/list-components.sh"
For each COMPONENT=<name> ... HAS_SCRIPT=true line, run that component's
detection script (read-only) and collect only its STATUS= and ISSUE_COUNT=
lines for the roll-up:
bash "${CLAUDE_SKILL_DIR}/../<name>/scripts/<name>.sh" --project-dir "$(pwd)"
For HAS_SCRIPT=false components, assess presence from the file-presence
table in REFERENCE.md using the Context probes above. Never
re-derive the component list by hand — new detection scripts automatically
improve this skill via the manifest.
For each component, assign a status:
| Status | Meaning |
|---|---|
| PASS | Fully compliant with project standards |
| WARN | Present but outdated or incomplete |
| FAIL | Missing required configuration |
| SKIP | Not applicable for project type |
Infrastructure Standards Status
====================================
Repository: [name]
Project Type: [type] ([detected])
Standards Version: [version] (tracked: [tracked])
Last Configured: [date]
Component Status:
Pre-commit PASS v5.0.0 hooks, conventional commits
Release-please PASS Node workspace plugin
Dockerfile WARN Missing healthcheck
Skaffold PASS 3 profiles configured
CI Workflows WARN Missing test workflow
Helm SKIP No helm/ directory
Tests PASS Vitest configured
Coverage WARN 72% (below 80% threshold)
Linting PASS Biome configured
Formatting PASS Biome configured
Dead Code WARN Knip found 3 unused exports
Editor PASS .editorconfig present
Security PASS gitleaks + npm audit
Summary: [N] warnings, [N] failures
Run /configure:all to fix issues
If --verbose flag is set:
.project-standards.yaml| Context | Command |
|---|---|
| Quick status check | /configure:status |
| Verbose status | /configure:status --verbose |
| Check standards version | grep "^standards_version:" .project-standards.yaml 2>/dev/null | sed 's/.*:[[:space:]]*//' |
| Check last configured date | grep "^last_configured:" .project-standards.yaml 2>/dev/null | sed 's/.*:[[:space:]]*//' |
| List all workflow files | find .github/workflows -maxdepth 1 -name '*.yml' -exec basename {} \; |
| Flag | Description |
|---|---|
--verbose | Show detailed compliance information |
/configure:all to preview what will be fixed/configure:all - Run all compliance checks/configure:select - Interactively select which components to configure/configure:pre-commit - Pre-commit specific checks/configure:release-please - Release-please specific checksnpx claudepluginhub laurigates/claude-plugins --plugin configure-pluginRuns all infrastructure standards compliance checks and fixes. Use when onboarding a new project, doing a full compliance audit, or batch-fixing with --fix.
Audits a repository for baseline compliance across 9 categories including configuration, code quality, security, CI/CD, testing, and documentation. Emits a Markdown checklist report and JSON sidecar.
Audits existing projects for gaps in infrastructure, security, quality, and harness setup. Reports issues ordered by severity. Read-only; delegates fixes to /project-init.