feat: plugin system with hooks pipeline and bundled plugins

This commit is contained in:
Yeachan-Heo
2026-04-01 20:36:06 +09:00
parent 76ad0a8ee9
commit a74eb973bb
9 changed files with 3379 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{
"name": "sample-hooks",
"version": "0.1.0",
"description": "Bundled sample plugin scaffold for hook integration tests.",
"defaultEnabled": false,
"hooks": {
"PreToolUse": ["./hooks/pre.sh"],
"PostToolUse": ["./hooks/post.sh"]
}
}