Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 09:07:50 +08:00
commit 5ae7faad9c
8 changed files with 1567 additions and 0 deletions

14
hooks/hooks.json Normal file
View File

@@ -0,0 +1,14 @@
{
"hooks": {
"PostToolUse": [
{
"filter": "Write(*CLAUDE.md)|Edit(*CLAUDE.md)|Write(*claude.md)|Edit(*claude.md)",
"command": "bash",
"args": [
"-c",
"echo '📄 CLAUDE.md updated! Syncing to AGENTS.md...' && echo '' && echo ' Use the claude-to-agents-converter agent to update AGENTS.md' && echo ' Or run /sync-agents-md to update all AGENTS.md files' && echo '' && echo 'This keeps your documentation accessible to all AI coding assistants.'"
]
}
]
}
}