Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:01:25 +08:00
commit 195d99b1e4
4 changed files with 124 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
{
"name": "agent-kit",
"description": "Base plugin by blogic with integrated MCP servers",
"version": "1.0.8",
"author": {
"name": "blogic"
},
"hooks": {
"SessionStart": [
{
"matcher": "startup|resume|clear|compact",
"hooks": [
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/scripts/session-start-dynamic.sh"
}
]
}
],
"PostToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/scripts/check-after-edit.sh"
}
]
}
],
"Stop": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/scripts/check-after-stop.sh"
}
]
}
],
"Notification": [
{
"hooks": [
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/scripts/notify-approval.sh"
}
]
}
]
},
"mcp": [
"./.mcp.json"
]
}