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 <noreply@anthropic.com>
This commit is contained in:
2026-01-25 15:32:54 -05:00
parent 69bbffd9cc
commit 320ea6b72b
2 changed files with 8 additions and 12 deletions

View File

@@ -18,8 +18,14 @@
"etl", "etl",
"dataframe" "dataframe"
], ],
"hooks": "hooks/hooks.json", "hooks": {
"SessionStart": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/startup-check.sh"
}
]
},
"commands": ["./commands/"], "commands": ["./commands/"],
"agents": ["./agents/"],
"mcpServers": ["./.mcp.json"] "mcpServers": ["./.mcp.json"]
} }

View File

@@ -1,10 +0,0 @@
{
"hooks": {
"SessionStart": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/startup-check.sh"
}
]
}
}