health

Audits project health across tests, dependencies, code quality, documentation, CI/CD, and security.

4|2|Updated Jan 27, 2026
One-click install
npx skills add https://github.com/Arete-Consortium/ai-skills --skill health-arete-consortium
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: health
Source: https://github.com/Arete-Consortium/ai-skills/tree/main/personas/devops/health
Command: npx skills add https://github.com/Arete-Consortium/ai-skills --skill health-arete-consortium

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Developers lack a single consolidated view of project health, forcing them to manually run tests, check outdated dependencies, scan for vulnerabilities, and verify documentation across many separate tools. ## Core Features & Use Cases - Comprehensive Health Audit: Runs tests with coverage, checks outdated and vulnerable dependencies, lints code, and audits documentation in one pass. - Structured Health Report: Generates a Markdown report with per-category status, scores, and prioritized recommended actions. - Quick and Fix Modes: Supports a --quick flag to skip slow operations and a --fix flag to attempt automatic remediation. - Use Case: Before a release, run a full health audit on a Python project to confirm 80%+ test coverage, detect vulnerable packages with pip-audit, and discover a missing CHANGELOG before shipping. ## Quick Start Ask Claude to run a full project health audit and generate a report covering tests, dependencies, code quality, documentation, CI/CD, and security.

Frequently Asked Questions about health

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

FAQPage Schema
How do I run a full project health check in one command?▼

Invoke the /health command to run tests with coverage, check outdated and vulnerable dependencies, lint code, audit documentation, and scan for secrets. It consolidates everything into a single Markdown health report with an overall score.

How to check for outdated and vulnerable Python dependencies?▼

Use pip list --outdated to find packages with newer versions and pip-audit to detect known security vulnerabilities. The health audit runs both and reports outdated packages with severity levels in the Dependencies section.

Does the health audit work with Rust or TypeScript projects?▼

Yes, the skill detects the project type (Python, Rust, or TypeScript) before running checks and adapts its test, dependency, and lint commands accordingly. The report format remains consistent across languages.

Can the health audit automatically fix issues it finds?▼

Yes, passing the --fix flag instructs the skill to attempt automatic remediation of detected issues, such as updating outdated dependencies. Without the flag, it only reports issues and lists recommended actions by priority.

What does the project health report include?▼

The report covers six categories: tests with coverage percentage, outdated and vulnerable dependencies, lint and type coverage, documentation completeness, CI/CD workflow status, and security checks including secrets scanning. Each category gets a status and the report ends with prioritized recommended actions.