Files
2025-11-29 18:32:13 +08:00

28 lines
613 B
JSON

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