feat: add note mode and workflow config

This commit is contained in:
shiyue
2026-06-12 16:39:44 +08:00
parent 5308a10b52
commit 8b2173be8f
93 changed files with 15292 additions and 50 deletions

24
.cursor/hooks.json Normal file
View File

@@ -0,0 +1,24 @@
{
"version": 1,
"hooks": {
"preToolUse": [
{
"command": "python3 .cursor/hooks/inject-subagent-context.py",
"matcher": "Task",
"timeout": 30
}
],
"sessionStart": [
{
"command": "python3 .cursor/hooks/session-start.py",
"timeout": 10
}
],
"beforeSubmitPrompt": [
{
"command": "python3 .cursor/hooks/inject-workflow-state.py",
"timeout": 5
}
]
}
}