heal-cli 0.1.0

Hook-driven Evaluation & Autonomous Loop — code-health harness CLI for AI coding agents
Documentation
{
  "$schema": "https://json.schemastore.org/claude-plugin",
  "name": "heal",
  "version": "0.1.0",
  "description": "HEAL — code health monitoring & maintenance via Claude Code hooks and skills.",
  "author": "kechol",
  "license": "MIT",
  "hooks": {
    "PostToolUse": [
      {
        "matcher": "Edit|Write|MultiEdit",
        "command": "${CLAUDE_PLUGIN_ROOT}/hooks/claude-post-tool-use.sh"
      }
    ],
    "Stop": [
      {
        "command": "${CLAUDE_PLUGIN_ROOT}/hooks/claude-stop.sh"
      }
    ],
    "SessionStart": [
      {
        "command": "${CLAUDE_PLUGIN_ROOT}/hooks/claude-session-start.sh"
      }
    ]
  },
  "skills": [
    "skills/check-overview",
    "skills/check-hotspots",
    "skills/check-complexity",
    "skills/check-duplication",
    "skills/check-coupling"
  ]
}