Commit Graph

4 Commits

  • fix: remove agents field from plugin.json manifest (#1459)
    The Claude Code plugin validator rejects the "agents" field entirely.
    Remove it from the manifest, schema, and tests. Update schema notes
    to document this as a known constraint alongside the hooks field.
    
    Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
  • fix: add try-catch to inline hooks, fix schema drift
    - Wrap JSON.parse in try-catch for all 6 inline hooks in hooks.json
      (dev-server blocker, tmux reminder, git-push reminder, doc blocker,
      PR create logger, build analysis) — previously unguarded JSON.parse
      would crash on empty/malformed stdin, preventing data passthrough
    - Add config parse error logging to evaluate-session.js
    - Fix plugin.schema.json: author can be string or {name,url} object,
      add version (semver pattern), homepage, keywords, skills, agents
    - Fix package-manager.schema.json: add setAt (date-time) field and
      make packageManager required to match actual code behavior
  • feat: add comprehensive CI/CD pipeline
    Adds GitHub Actions workflows for CI, maintenance, and releases with multi-platform testing matrix.