agentsclimarketplace

Doctor

Skill claude-hangar/claude-hangar/core/skills/doctor

Production-grade configuration management for Claude Code. Hooks, agents, skills, multi-project orchestration.

Install
npx -y skills add claude-hangar/claude-hangar --skill doctor

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Project health check meta-skill. Runs git-hygiene, deploy-check, and freshness-check in sequence. Use when: "doctor", "health check", "project health", "is everything ok", "check project".

SKILL.md

3.0 KB, as published. Nobody here has run it

<!-- AI-QUICK-REF ## /doctor — Quick Reference - **Modes:** quick | full - **Runs:** /git-hygiene scan → /deploy-check → /freshness-check check - **Output:** Consolidated health report with severity ratings - **Inspired by:** GSD v2 "doctor" command -->

/doctor — Project Health Check

Meta-skill that runs multiple health checks and produces a consolidated report. Single command to answer "is this project healthy?"

Inspired by: GSD v2 "doctor" — stale commit safety, project health diagnostics.

What It Checks

AreaSkill UsedWhat It Checks
Git/git-hygieneStale branches, large files, commit conventions, uncommitted work
Deploy/deploy-checkDocker, CI, env vars, SSL, DNS, monitoring
Freshness/freshness-checkDependencies, frameworks, security standards
Structure(built-in)Missing README, LICENSE, .gitignore, CLAUDE.md
Dependencies(built-in)npm audit, outdated packages, lock file

Modes

/doctor quick

Fast check (~30 seconds). Runs:

  1. Git status: Uncommitted changes? Stale branches? Last commit age?
  2. Dependencies: npm audit --audit-level=high — any critical vulnerabilities?
  3. Structure: Missing essential files (README, .gitignore, LICENSE)?
  4. Lock file: Present and committed?

/doctor full

Comprehensive check (~2-5 minutes). Runs everything in quick plus:

  1. Git hygiene: Full /git-hygiene scan (large files, conventions, branch age)
  2. Deploy readiness: Full /deploy-check (Docker, CI, env vars, SSL)
  3. Freshness: /freshness-check check (dependency versions, standards)
  4. Outdated packages: npm outdated or framework-specific check

Output Format

PROJECT HEALTH — {project name}

  Git:          ✓ Clean (3 stale branches, 0 large files)
  Dependencies: ⚠ 2 high-severity vulnerabilities (npm audit)
  Structure:    ✓ All essential files present
  Deploy:       ✓ Docker + CI configured
  Freshness:    ⚠ 3 outdated dependencies

  Overall: GOOD (2 warnings, 0 critical)

  Recommended actions:
    1. npm audit fix (2 high vulnerabilities)
    2. Update astro 6.1.2 → 6.1.3
    3. Delete 3 stale branches (feature/old-*, hotfix/done)

Health Ratings

RatingCriteria
HEALTHYNo warnings, no critical issues
GOODWarnings only, no critical issues
NEEDS ATTENTION1-2 critical issues
UNHEALTHY3+ critical issues or security vulnerabilities

Rules

  • Read-only in quick mode — never modify anything
  • Full mode may suggest commands — but does not auto-execute destructive operations
  • No false alarms — only report issues that actually need attention
  • Fast feedback — quick mode completes in under 30 seconds

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.