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

configure-status配置状态

Agent Skill

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

总安装

1,298

周安装

52

GitHub Stars

28

下载量

420
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于查看项目基础设施标准的合规状态,不进行修改操作。

  • 适合快速健康检查或 CI/CD 流水线中的状态验证。
  • 可生成报告供人工复核,避免自动修复可能引发的误改。
  • 安装前需确认是否包含系统命令执行权限,仅用于只读查询。
  • configure-status 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/configure:status

Display infrastructure standards compliance status without making changes.

When to Use This Skill

Use this skill when...Use another approach when...
Checking overall compliance statusRunning full compliance checks with fixes (use /configure:all --fix)
Generating compliance reportsNeed to fix issues found (use /configure:all)
Quick project health checkChecking specific component (use /configure:X --check-only)
CI/CD status validationRunning interactive selection (use /configure:select)
Reviewing current configuration stateNeed detailed component analysis

Context

  • Project standards:!find. -maxdepth 1 -name \'.project-standards.yaml\'
  • Project type:!grep -m1 "^project_type:".project-standards.yaml
  • Standards version:!grep -m1 "^standards_version:".project-standards.yaml
  • Last configured:!grep -m1 "^last_configured:".project-standards.yaml
  • Pre-commit config:!find. -maxdepth 1 -name \'.pre-commit-config.yaml\'
  • Workflows:!find.github/workflows -maxdepth 1 -name '*.yml'
  • Has Dockerfile:!find. -maxdepth 1 -name 'Dockerfile*' -print -quit
  • Has skaffold:!find. -maxdepth 1 -name \'skaffold.yaml\'
  • Has helm:!find. -maxdepth 2 -type d -name 'helm' -print -quit
  • Test configs:!find. -maxdepth 1 \(-name 'vitest.config.*' -o -name 'jest.config.*' -o -name 'pytest.ini' \)
  • Linting config:!find. -maxdepth 1 \(-name 'biome.json' -o -name '.eslintrc*' \)
  • Editor config:!find. -maxdepth 1 -name \'.editorconfig\'
  • Gitleaks config:!find. -maxdepth 1 -name \'.gitleaks.toml\'
  • Package files:!find. -maxdepth 1 \(-name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' \)

Parameters

Parse from $ARGUMENTS:

  • --verbose: Show detailed compliance information for each component

Execution

Execute this read-only compliance status check:

Step 1: Detect project type

  1. Read .project-standards.yaml if it exists (shows tracked version and last configured date)
  2. Auto-detect project type from file structure
  3. Report discrepancy if detected type differs from tracked type

Step 2: Scan configuration files

Check for presence and validity of each configuration:

ComponentFiles Checked
Pre-commit.pre-commit-config.yaml
Release-pleaserelease-please-config.json, .release-please-manifest.json, .github/workflows/release-please.yml
DockerfileDockerfile, Dockerfile.*
Skaffoldskaffold.yaml
CI Workflows.github/workflows/*.yml
Helmhelm/*/Chart.yaml
Documentationtsdoc.json, typedoc.json, mkdocs.yml, docs/conf.py, pyproject.toml [tool.ruff.lint.pydocstyle]
GitHub Pages.github/workflows/docs.yml, .github/workflows/*pages*.yml
Cache Bustingnext.config.*, vite.config.*, vercel.json, _headers
Testsvitest.config.*, jest.config.*, pytest.ini, pyproject.toml [tool.pytest], .cargo/config.toml
Coveragevitest.config.* [coverage], pyproject.toml [tool.coverage], .coveragerc
Lintingbiome.json, pyproject.toml [tool.ruff], clippy.toml
Formatting.prettierrc*, biome.json, pyproject.toml [tool.ruff.format], rustfmt.toml
Dead Codeknip.json, knip.ts, pyproject.toml [tool.vulture]
Editor.editorconfig, .vscode/settings.json, .vscode/extensions.json
Security.github/workflows/*security*, .gitleaks.toml, pyproject.toml [tool.bandit]

Step 3: Determine compliance status

For each component, assign a status:

StatusMeaning
PASSFully compliant with project standards
WARNPresent but outdated or incomplete
FAILMissing required configuration
SKIPNot applicable for project type

Step 4: Print compliance report

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

Step 5: Show verbose details (if requested)

If --verbose flag is set:

  • Show specific version numbers for each hook/tool
  • List individual compliance checks performed
  • Show detected deviations from .project-standards.yaml
  • Display file modification timestamps
  • Show cache-busting configuration details (framework, CDN, hash patterns)

Agentic Optimizations

ContextCommand
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 filesfind.github/workflows -maxdepth 1 -name '*.yml' -exec basename {} \;

Flags

FlagDescription
--verboseShow detailed compliance information

Notes

  • This command is read-only - no files are modified
  • Use for CI/CD compliance checks (exit code reflects status)
  • Run before /configure:all to preview what will be fixed

See Also

  • /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 checks

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.3%
按下载量换算140

Claude

32.96%
按下载量换算138

Cursor

20.42%
按下载量换算86

Gemini CLI

10.46%
按下载量换算44

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills