fix(data-platform): correct invalid plugin.json manifest format #155

Merged
lmiranda merged 2 commits from fix/data-platform-manifest into development 2026-01-25 20:36:53 +00:00
2 changed files with 8 additions and 12 deletions
Showing only changes of commit 320ea6b72b - Show all commits

View File

@@ -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"]
}

View File

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