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

health-audit健康审核

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

1,234

周安装

53

GitHub Stars

28

下载量

432
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill health-audit

简介

health-audit 用于辅助安全审计与凭据风险检查。

  • 适合分析认证流程和常见漏洞。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 可帮助生成安全复核清单。health-audit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 不能把工具输出当作确定结论。
  • 涉及生产系统时应先确认操作权限与边界。

SKILL.md

/health:audit

Audit the project's enabled plugins against the actual technology stack. Identifies plugins that don't apply to this project and suggests relevant plugins that aren't enabled.

When to Use This Skill

Use this skill when...Use another approach when...
Reviewing plugin relevance for current projectGeneral health diagnostics (use /health:check)
Cleaning up unused pluginsPlugin registry corruption (use /health:plugins --fix)
Discovering relevant plugins for tech stackAgentic optimization audit (use /health:agentic-audit)
Optimizing project-specific plugin configurationInstalling specific plugin (install directly)
Onboarding to existing projectNeed comprehensive settings validation

Context

  • Current project:!pwd
  • Project settings exists:!find.claude -maxdepth 1 -name 'settings.json'
  • Package.json exists:!find. -maxdepth 1 -name 'package.json'
  • Cargo.toml exists:!find. -maxdepth 1 -name 'Cargo.toml'
  • pyproject.toml exists:!find. -maxdepth 1 -name 'pyproject.toml'
  • requirements.txt exists:!find. -maxdepth 1 -name 'requirements.txt'
  • go.mod exists:!find. -maxdepth 1 -name 'go.mod'
  • Dockerfile exists:!find. -maxdepth 1 -name 'Dockerfile'
  • docker-compose exists:!find. -maxdepth 1 \(-name 'docker-compose.yml' -o -name 'docker-compose.yaml' -o -name 'compose.yml' -o -name 'compose.yaml' \)
  • GitHub workflows:!find.github/workflows -maxdepth 1 -name '*.yml' -quit -print
  • Terraform files:!find. -maxdepth 2 -name '*.tf' -quit -print
  • Kubernetes manifests:!find. -maxdepth 3 \(-path '*/k8s/*' -o -path '*/kubernetes/*' \) -name '*.yaml' -quit -print

Parameters

ParameterDescription
--fixApply recommended changes to .claude/settings.json
--dry-runShow what would be changed without modifying files
--verboseShow detailed analysis of each plugin decision

Execution

Execute this plugin relevance audit:

Step 1: Detect the project technology stack

Analyze project files from the context above to determine the technology stack. Match indicators against the tech stack mapping in REFERENCE.md.

Step 2: Retrieve available plugins

Run claude plugin list --json to get all available plugins from configured marketplaces. Parse the output for plugin name, description, keywords, and category.

Step 3: Read currently enabled plugins

Read .claude/settings.json and extract the enabledPlugins array. If the file does not exist or enabledPlugins is not set, treat as empty list.

Step 4: Analyze plugin relevance

Compare each enabled plugin against the detected tech stack. Use the plugin relevance mapping in REFERENCE.md to determine which plugins are relevant, irrelevant, or missing.

Categorize each plugin as:

  • RELEVANT -- matches detected tech stack
  • NOT RELEVANT -- no matching indicators found
  • MISSING -- relevant plugin not currently enabled

Step 5: Generate the audit report

Print a structured report covering:

  1. Detected technology stack with evidence
  2. Currently enabled plugins with relevance status
  3. Suggested plugins to add (with reasons)
  4. Suggested plugins to remove (with reasons)
  5. Summary counts

Step 6: Apply changes (if --fix)

When --fix is passed:

  1. Back up current settings: cp.claude/settings.json.claude/settings.json.backup
  2. Ask for confirmation before each category of changes (removals, additions)
  3. Update .claude/settings.json -- remove confirmed irrelevant plugins, add confirmed relevant plugins, preserve other settings
  4. Verify changes by re-reading the file, confirming valid JSON, and showing the diff

User-Level vs Project-Level

Note: This command only manages project-level plugin settings in .claude/settings.json.

User-level plugins (in ~/.claude/settings.json) are managed separately and don't need duplication at project level.

When analyzing, check if a plugin is already enabled at user level:

jq -r '.enabledPlugins[]? // empty' ~/.claude/settings.json 2>/dev/null

If a plugin is enabled at user level, it doesn't need to be in project settings unless you want project-specific behavior.

Edge Cases

ScenarioBehavior
No .claude/settings.jsonCreate it with recommended plugins
Empty enabledPluginsSuggest adding relevant plugins
Monorepo with multiple languagesSuggest all matching plugins
Plugin not in marketplaceFlag as "unknown" but don't remove
User declined changesRespect decision, show manual instructions

Agentic Optimizations

ContextCommand
Plugin relevance audit/health:audit
Audit with auto-fix/health:audit --fix
Dry-run mode/health:audit --dry-run
List enabled pluginsjq -r '.enabledPlugins[]? // empty'.claude/settings.json 2>/dev/null
Detect project languagesfind. -maxdepth 1 \(-name 'package.json' -o -name 'Cargo.toml' -o -name 'pyproject.toml' \) -exec basename {} \;

Flags

FlagDescription
--fixApply recommended changes (with confirmation)
--dry-runShow what would be changed without modifying
--verboseShow detailed reasoning for each decision

See Also

  • /health:plugins - Fix plugin registry issues
  • /health:check - Full diagnostic scan
  • /configure:claude-plugins - Initial plugin setup

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.08%
按下载量换算156

Claude

29.46%
按下载量换算127

Cursor

16.95%
按下载量换算73

Gemini CLI

8.12%
按下载量换算35

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills