Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:29:36 +08:00
commit 89a64b631e
129 changed files with 49131 additions and 0 deletions

20
hooks/hooks.json Normal file
View File

@@ -0,0 +1,20 @@
{
"description": "Mycelium infrastructure validation and coordination hooks",
"version": "1.0",
"hooks": {
"PreToolUse": [
{
"description": "Validate infrastructure before running tests",
"matcher": "Bash.*pytest|Bash.*uv run pytest",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/pre-test-validation.sh",
"timeout": 60000
}
]
}
]
}
}