From 320ea6b72b0824db9b63b206335f09ca1bf52426 Mon Sep 17 00:00:00 2001 From: lmiranda Date: Sun, 25 Jan 2026 15:32:54 -0500 Subject: [PATCH 1/2] fix(data-platform): correct invalid plugin.json manifest format - Remove invalid "agents": ["./agents/"] - agent .md files don't need registration - Inline hooks instead of external reference "hooks/hooks.json" - Delete orphaned hooks.json file (content now in plugin.json) This fixes "invalid input" validation errors for hooks and agents fields. Co-Authored-By: Claude Opus 4.5 --- plugins/data-platform/.claude-plugin/plugin.json | 10 ++++++++-- plugins/data-platform/hooks/hooks.json | 10 ---------- 2 files changed, 8 insertions(+), 12 deletions(-) delete mode 100644 plugins/data-platform/hooks/hooks.json diff --git a/plugins/data-platform/.claude-plugin/plugin.json b/plugins/data-platform/.claude-plugin/plugin.json index d15138c..00bae91 100644 --- a/plugins/data-platform/.claude-plugin/plugin.json +++ b/plugins/data-platform/.claude-plugin/plugin.json @@ -18,8 +18,14 @@ "etl", "dataframe" ], - "hooks": "hooks/hooks.json", + "hooks": { + "SessionStart": [ + { + "type": "command", + "command": "${CLAUDE_PLUGIN_ROOT}/hooks/startup-check.sh" + } + ] + }, "commands": ["./commands/"], - "agents": ["./agents/"], "mcpServers": ["./.mcp.json"] } diff --git a/plugins/data-platform/hooks/hooks.json b/plugins/data-platform/hooks/hooks.json deleted file mode 100644 index 529b5ec..0000000 --- a/plugins/data-platform/hooks/hooks.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "hooks": { - "SessionStart": [ - { - "type": "command", - "command": "${CLAUDE_PLUGIN_ROOT}/hooks/startup-check.sh" - } - ] - } -} -- 2.49.1 From 9d1fedd3a531d8529c89c84d9e16464bc22c1ef5 Mon Sep 17 00:00:00 2001 From: lmiranda Date: Sun, 25 Jan 2026 15:33:49 -0500 Subject: [PATCH 2/2] docs: add plugin.json format rules to CLAUDE.md Add critical warning about hooks and agents field formats to prevent future manifest validation failures. References lesson: plugin-manifest-validation---hooks-and-agents-format-requirements Co-Authored-By: Claude Opus 4.5 --- CLAUDE.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index 3e1d326..b4eb294 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -163,6 +163,12 @@ leo-claude-mktplace/ - **MCP server venv path**: `${CLAUDE_PLUGIN_ROOT}/mcp-servers/{name}/.venv/bin/python` - **CLI tools forbidden** - Use MCP tools exclusively (never `tea`, `gh`, etc.) +#### ⚠️ plugin.json Format Rules (CRITICAL) +- **Hooks MUST be inline** - NEVER use `"hooks": "path/to/file.json"` +- **Agents auto-discover** - NEVER add `"agents": ["./agents/"]` - .md files found automatically +- **Always validate** - Run `./scripts/validate-marketplace.sh` before committing +- See lesson: `lessons/patterns/plugin-manifest-validation---hooks-and-agents-format-requirements` + ### Hooks (Valid Events Only) `PreToolUse`, `PostToolUse`, `UserPromptSubmit`, `SessionStart`, `SessionEnd`, `Notification`, `Stop`, `SubagentStop`, `PreCompact` -- 2.49.1