Codex实装,RegularGridFloor

This commit is contained in:
SoulliesOfficial
2026-07-08 04:29:20 -04:00
parent 7b7d069b84
commit d474a8929c
176 changed files with 31884 additions and 890 deletions

114
.codex/hooks.json Normal file
View File

@@ -0,0 +1,114 @@
{
"hooks": {
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "bash 'D:\\Projects\\Cielonos\\.codex\\hooks\\validate-commit.sh'",
"timeout": 15
},
{
"type": "command",
"command": "bash 'D:\\Projects\\Cielonos\\.codex\\hooks\\validate-push.sh'",
"timeout": 10
}
]
}
],
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "bash 'D:\\Projects\\Cielonos\\.codex\\hooks\\validate-assets.sh'",
"timeout": 10
},
{
"type": "command",
"command": "bash 'D:\\Projects\\Cielonos\\.codex\\hooks\\validate-skill-change.sh'",
"timeout": 5
}
]
}
],
"PreCompact": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "bash 'D:\\Projects\\Cielonos\\.codex\\hooks\\pre-compact.sh'",
"timeout": 10
}
]
}
],
"PostCompact": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "bash 'D:\\Projects\\Cielonos\\.codex\\hooks\\post-compact.sh'",
"timeout": 10
}
]
}
],
"SessionStart": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "bash 'D:\\Projects\\Cielonos\\.codex\\hooks\\session-start.sh'",
"timeout": 10
},
{
"type": "command",
"command": "bash 'D:\\Projects\\Cielonos\\.codex\\hooks\\detect-gaps.sh'",
"timeout": 10
}
]
}
],
"SubagentStart": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "bash 'D:\\Projects\\Cielonos\\.codex\\hooks\\log-agent.sh'",
"timeout": 5
}
]
}
],
"SubagentStop": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "bash 'D:\\Projects\\Cielonos\\.codex\\hooks\\log-agent-stop.sh'",
"timeout": 5
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "bash 'D:\\Projects\\Cielonos\\.codex\\hooks\\session-stop.sh'",
"timeout": 10
}
]
}
]
}
}