health

$npx mdskill add hrconsultnj/claude-plugins/health

Runs a full diagnostic of Composure installation and project setup to identify issues.

  • Helps developers verify plugin versions, auth status, hook integrity, and project initialization.
  • Integrates with Composure's fetch command for secure data loading and does not require external APIs.
  • Executes six sequential steps, including manifest validation and state checks, without skipping any.
  • Presents results in a standard status table or JSON format for easy review.

SKILL.md

.github/skills/healthView on GitHub ↗
---
name: health
description: Comprehensive health check — reports plugin version, auth, hook integrity, project initialization, graph freshness, companion plugins, and open tasks in a single diagnostic view.
argument-hint: "[--json]"
---

Run a full diagnostic of the Composure installation and project setup. This skill is self-contained — no API calls needed.

## Content Loading

Load each step through the fetch command (handles caching, decryption, and auth):

```bash
"~/.composure/bin/composure-fetch.mjs" skill composure health {step-filename}
```

**Do NOT read cache files directly** — they are encrypted at rest. Always use the fetch command above.

## Steps

| # | File | Purpose |
|---|------|---------|
| 01 | `01-plugin-manifests.md` | Plugin version + manifest validation |
| 02 | `02-hook-integrity.md` | SHA-256 verification of installed hooks |
| 03 | `03-fetch-binaries.md` | Verify CLI binaries present + executable |
| 04 | `04-cortex-state.md` | Cortex + graph database state (includes Decision 19 path detection) |
| 05 | `05-auth-state.md` | Authentication status (read-only, never prompts) |
| 06 | `06-remediate.md` | Present fix-up commands for any detected drift |

Execute all 6 steps in order. Do NOT skip checks — run all of them even if earlier ones fail. After all steps, present results in the standard status table format. If `--json` is provided, output JSON instead.

More from hrconsultnj/claude-plugins

SkillDescription
app-architectureComplete architecture guide for building features from database to UI. Routes to frontend/, fullstack/, mobile/, backend/, or sdks/ based on detected stack. Covers decomposition, multi-tenant isolation, auth model, query patterns, and component patterns.
audit-depsFocused dependency CVE audit — reports vulnerabilities with version info and safe upgrade commands.
backlogManage the tasks-plans/ workspace — add items to backlog, ideas, or reference. Process queued work. Organize by topic, not flat dumps.
build-graphBuild or update the code review knowledge graph, generate the visualization, and open it. Run this first to initialize, or let hooks keep it updated automatically.
calibrateCalibrate test bench — detect test framework, read existing test conventions, generate .claude/testbench.json config. Query Context7 for test framework reference docs. Run once per project.
ci-generateGenerate CI/CD workflow from detected stack. GitHub Actions, GitLab CI, or Bitbucket Pipelines. Includes lint, typecheck, test, build, and deploy stages.
ci-validateValidate CI/CD workflow files. Runs actionlint for GitHub Actions, checks for common mistakes, and reports issues with fix suggestions.
code-organizerRestructure a messy project into conventional file layout based on detected framework. Analyzes, plans, executes with import updates, and verifies.
deps-checkCheck dependency health -- known CVEs, outdated packages, unsafe versions. Recommends the highest safe version, not just "latest". Blocks Critical CVEs via Composure commit gate.
design-forgeThis skill should be used when the user asks to "add premium animations", "create a canvas visualization", "build a glassmorphism panel", "add a custom cursor", "create a generative background", "build an interactive card", "add scroll progress", "add sound design", "create a Three.js hero", "build a creative portfolio", "add particle effects", "add scanlines", "add a typewriter effect", "design a landing page", "implement advanced animations", "add 3D elements", "design using Next.js Conf patterns", "create interactive experience", "add Framer Motion animations", "add GSAP scroll animations", "integrate Spline 3D", or needs guidance on premium web design patterns, creative coding, generative art, micro-interactions, accessibility for animations, or bespoke interactive experiences beyond standard UI components.