health

Run code quality checks and compute a weighted 0-10 health score.

Updated Apr 18, 2026
One-click install
npx skills add https://github.com/algorithmbasics/gstack --skill health-algorithmbasics
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: health
Source: https://github.com/algorithmbasics/gstack/tree/main/health
Command: npx skills add https://github.com/algorithmbasics/gstack --skill health-algorithmbasics

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

Code quality dashboards aggregate checks to reveal health of a codebase, surfacing issues before they become failures.

Core Features & Use Cases

  • Weighted health scoring that combines type checking, linting, tests, and dead code detection into a single 0-10 score.
  • Trend tracking over time to visualize improvements or regressions across releases and branches.
  • Guidance for engineers to prioritize improvements and monitor long-term quality.

Quick Start

Run the health checks on your codebase to generate a real-time health score and trend data.

Frequently Asked Questions about health

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

FAQPage Schema
How do I track code quality trends and calculate a health score for my repository?

Calculate a repository health score by aggregating type checking, linting, test coverage, and dead code detection. The tool produces a weighted 0-10 score and tracks trends over time to visualize improvements or regressions across branches and releases.

Can I integrate code health checks into a CI pipeline to detect quality drift?

Yes, you can run code health checks in CI pipelines to detect quality drift. The tool coordinates checks for type safety and lint cleanliness, generating a real-time health score to monitor long-term codebase quality and guide improvements.

What is a weighted code health score and how does it quantify codebase quality?

A weighted code health score quantifies codebase quality by combining multiple checks into a single 0-10 metric. It aggregates type safety, lint cleanliness, test coverage, and dead code detection to surface issues before they become failures.

How do I configure repeatable code health checks across multiple projects?

You can configure repeatable code health checks by persisting a Health Stack configuration in CLAUDE.md. This allows you to run a consistent suite of checks across multiple projects and repositories to monitor code quality consistently.

Does code quality monitoring work without external dependencies for type checking and linting?

Yes, code quality monitoring works without external dependencies. The tool coordinates existing type checking, linting, and test coverage tools natively, running a suite of checks to compute the health score directly within your environment.