Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:32:13 +08:00
commit 4d675832c7
10 changed files with 705 additions and 0 deletions

27
hooks/hooks.json Normal file
View File

@@ -0,0 +1,27 @@
{
"description": "Optional hooks for automatic CSV to JSON conversion (opt-in)",
"hooks": {
"PostToolUse": [
{
"matcher": "Write:*.csv",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/utils/auto-convert-csv.sh",
"timeout": 30
}
]
},
{
"matcher": "Edit:*.csv",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/utils/auto-convert-csv.sh",
"timeout": 30
}
]
}
]
}
}