Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

health-check健康检查

Agent Skill

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

总安装

240

周安装

10

GitHub Stars

3

下载量

80
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/novemberfiveco/skills --skill health-check

简介

health-check 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景进行信息检索的场景,如研究支持或数据筛选。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,具体用法需结合 README 进一步确认。
  • 安装前建议核实权限范围、维护状态,并注意是否涉及联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Health Check

Perform a structured project health assessment following the company's standardised process. Produces a comprehensive report with RAG status and prioritised action items.

Workflow Overview

Phase 1: Preparation & Scoping
      |
Phase 2: Systematic Analysis (per category)
      |
Phase 3: Report Generation
      |
Phase 4: Review & Next Steps

Phase 1: Preparation & Scoping

Clarify Project Type

Before starting, determine the project type — it affects which categories apply:

Project typeCrash monitoringAvailability testsLoad testingFirebase/backend
ApplicationYesYesYesYes
SDK / LibraryNo (consuming apps handle)NoNoNo

Clarify Context

Ask the user (if not already clear):

  • What type of project is this? (app, SDK, library, backend service)
  • Is CI/CD set up? Which platform? (Bitrise, GitHub Actions, GitLab CI, etc.)
  • Are there test coverage metrics available?
  • Where is the repository hosted? (GitHub, GitLab, Bitbucket)
  • Are there cloud/backend integrations? (AWS, Firebase, etc.)

Key Files to Discover

Use Glob and Read to find and review:

  • Documentation: README.md, CHANGELOG.md, docs/
  • Dependencies: build.gradle*, Package.swift, package.json, Podfile, Gemfile, requirements.txt, Cargo.toml, go.mod, *.csproj
  • CI/CD config: .github/workflows/, .gitlab-ci.yml, bitrise.yml, Jenkinsfile, .circleci/
  • Test directories: **/test*/**, **/spec*/**, **/*Test*, **/*Spec*
  • Source code: Main source directories for TODOs, FIXMEs, deprecated code

Search For

Use Grep to find:

  • TODO, FIXME, XXX, HACK, DEPRECATED comments
  • Hardcoded credentials: apiKey, password, secret, token, credential
  • Version strings: check for consistency across files
  • Security-sensitive code: network calls, authentication, data storage

Phase 2: Systematic Analysis

Go through each category. Skip categories that don't apply to the project type (see Phase 1 table).

1. General

  • Document all technical debt (TODOs, FIXMEs, workarounds)
  • Identify developer experience improvements
  • List code deprecations and outdated dependencies
  • List external third-party integrations/APIs with deprecations or changes
  • Check README status and completeness
  • List documentation to update, improve, deprecate, or delete
  • Check compiler/linter warnings

2. Security

  • Review repository security settings
  • Check for hardcoded credentials, API keys, secrets
  • Review network requests for proper SSL/TLS
  • Review user data handling
  • Check for security vulnerabilities in dependencies

3. Observability

  • Review logging implementation
  • Check monitoring setup (crash monitoring for apps, not SDKs)
  • Review performance monitoring and SLAs
  • Identify monitoring adjustments needed

4. QA

  • Assess test coverage (unit, integration, E2E)
  • Check if automated tests run in CI/CD
  • Identify parts requiring more or better tests
  • Verify test coverage metrics

5. DevOps

  • Review Git branching strategy
  • Check PR process and review quality
  • Verify CI/CD setup and configuration
  • Document CI/CD pipeline status

6. Platform-Specific

Apply whichever are relevant:

  • Mobile (iOS/Android): OS version compatibility, SDK compatibility, crash rates, sample/demo apps
  • Frontend: Framework version, dependencies, bundle size
  • Backend: API docs, cloud service deprecations, cost optimisations
  • SDK/Library: API stability, thread safety, error handling, logging capabilities

Phase 3: Report Generation

Generate the report using this structure. Save as HEALTH_CHECK_REPORT.md in the project root (or a platform-specific subdirectory if doing a multi-platform check).

# Health Check Report — [Project Name]

**Date**: [today's date]
**Project type**: [Application / SDK / Library / Backend Service]
**RAG Status**: [GREEN / AMBER / RED]

---

## Executive Summary

- **Overall status**: [RAG status with rationale]
- **Critical issues**: [count and brief description, or "None"]
- **Key strengths**: [what's working well]
- **Top priorities**: [1-3 most important items]

---

## 1. General

### Current State
[Assessment of technical debt, documentation, dependencies]

### Findings
| # | Finding | Severity | File / Location |
|---|---------|----------|-----------------|
| 1 | [description] | [CRITICAL/HIGH/MEDIUM/LOW] | `path/to/file:line` |

### Action Items
- [ ] [Actionable item with priority]

---

## 2. Security

### Current State
[Assessment of security posture]

### Findings
| # | Finding | Severity | File / Location |
|---|---------|----------|-----------------|
| 1 | [description] | [CRITICAL/HIGH/MEDIUM/LOW] | `path/to/file:line` |

### Action Items
- [ ] [Actionable item with priority]

---

## 3. Observability

[Same structure as above]

---

## 4. QA

[Same structure as above]

---

## 5. DevOps

[Same structure as above]

---

## 6. Platform-Specific

[Same structure as above — only include relevant subsections]

---

## Summary of Action Items

### Critical (Immediate Action Required)
- [ ] [item]

### High Priority
- [ ] [item]

### Medium Priority
- [ ] [item]

### Low Priority
- [ ] [item]

---

## Recommended Next Steps

1. [Prioritised, actionable next step with clear ownership]
2. [...]

RAG Status Guidelines

StatusCriteria
GREENNo critical issues. Good test coverage (>80%). CI/CD configured. Documentation current. Dependencies up to date. No security vulnerabilities.
AMBERCritical issues present but fixable. Functional and operational. Some areas need attention. Issues don't prevent current operation. Could move to GREEN with fixes.
REDCritical blocking issues. Security vulnerabilities. Missing essential infrastructure (CI/CD). Poor test coverage. Operational risks.

Phase 4: Review & Next Steps

After generating the report:

  1. Present the report to the user for review
  2. Ask if any sections need deeper investigation
  3. Suggest creating tickets for action items (offer to use Jira MCP if available)
  4. Recommend scheduling a follow-up review after fixes

Tips

  1. Start with Grep for quick wins — TODOs, FIXMEs, and hardcoded secrets surface issues fast
  2. Check dependency versions against latest — outdated deps are a common finding
  3. Always include file paths and line numbers — makes findings immediately actionable
  4. Adapt categories to the project — skip what doesn't apply, add what's missing
  5. Be specific in action items — "Update dependency X from v1.2 to v2.0" beats "Update dependencies"
  6. Prioritise ruthlessly — not everything is critical, and over-alarming reduces trust
  7. Note what's good — a health check isn't just a list of problems

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.47%
按下载量换算29

Claude

28.39%
按下载量换算23

Cursor

21.25%
按下载量换算17

Gemini CLI

10.52%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills