初始化项目版本

This commit is contained in:
Axhub Make
2026-07-29 16:04:39 +08:00
commit 4305a1082b
2629 changed files with 760590 additions and 0 deletions

29
.cursor/hooks.json Normal file
View File

@@ -0,0 +1,29 @@
{
"version": 1,
"hooks": {
"sessionStart": [
{
"command": "python3 .cursor/hooks/token_budget_session.py",
"timeout": 10
}
],
"beforeSubmitPrompt": [
{
"command": "python3 .cursor/hooks/token_budget_prompt.py",
"timeout": 10
}
],
"afterAgentResponse": [
{
"command": "python3 .cursor/hooks/token_budget_turn.py",
"timeout": 10
}
],
"subagentStart": [
{
"command": "python3 .cursor/hooks/token_budget_subagent.py",
"timeout": 10
}
]
}
}