health

Computes a weighted 0-10 health score from existing project tool outputs.

Updated Mar 30, 2026
One-click install
npx skills add https://github.com/nhattran998/personal-athlete-agent --skill health-nhattran998
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: health
Source: https://github.com/nhattran998/personal-athlete-agent/tree/main/.agents/skills/gstack-health
Command: npx skills add https://github.com/nhattran998/personal-athlete-agent --skill health-nhattran998

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Code quality dashboards provide a single, interpretable signal by aggregating outputs from common project tools into a weighted 0-10 health score, helping teams identify and prioritize quality work.

Core Features & Use Cases

  • Wraps existing tools (type checker, linter, test runner, dead code detector, and shell linter) to compute a comprehensive health score.
  • Tracks health trends over time, enabling comparisons across commits, branches, and releases.
  • Fits into CI pipelines and local workflows to surface quality issues early and drive improvement.

Quick Start

Run the health skill to generate a weighted 0-10 code-quality score and show trends for your repository.

Frequently Asked Questions about health

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I aggregate code quality metrics into a single score?▼

Compute a weighted 0-10 code quality score by running existing project tools such as a type checker, linter, test runner, and dead code detector to aggregate their results into a single interpretable health score.

Can I track code quality trends over time across different branches?▼

Yes, you can track code quality trends over time by storing historical health score data, which enables comparisons across commits, branches, and releases to monitor long-term project health.

Does the code health score calculation work in CI pipelines?▼

The code health score calculation works in CI pipelines and local workflows by applying deterministic execution to surface quality issues early and monitor health during development.

What tools do I need to generate a code quality health score?▼

To generate a code quality health score, you need existing project tools including a type checker, linter, test runner, dead code detector, and shell linter configured in your repository to feed into the weighted scoring system.

Why use a weighted health score instead of individual linter outputs?▼

Use a weighted health score to aggregate individual linter and test runner outputs into a single interpretable signal, helping teams identify and prioritize code quality work more effectively than scattered reports.