What problem does it solve? Plugin validation often surfaces dozens of small mechanical issues—trailing commas in JSON, missing shebangs, non-executable scripts, incomplete frontmatter—that are tedious to fix by hand. This Skill detects and repairs those issues automatically while keeping you in control of every change. ## Core Features & Use Cases - JSON Repair: Detects and fixes trailing commas and syntax errors in plugin.json and hooks.json, then verifies the result parses cleanly. - Script Fixes: Adds missing #!/bin/bash shebangs and applies chmod +x to shell scripts in scripts/ and hooks/ directories. - Frontmatter Completion: Fills in missing name, description, and allowed-tools fields in SKILL.md files using sensible defaults derived from directory names. - Hook Type Conversion: Converts incompatible type: "prompt" hooks to type: "command" on non-ToolUseContext events, preserving the original prompt as a comment. - Use Case: After running a plugin audit that reports 15 warnings, invoke this Skill to preview each proposed fix with before/after diffs, approve them selectively, and re-validate to confirm resolution. ## Quick Start Fix the common issues found during validation of my plugin, showing me each proposed change before applying it.