chore: add shared agent project configuration

This commit is contained in:
2026-08-28 18:03:15 +08:00
parent 1917ae91ff
commit 5e4e42c46f
110 changed files with 15965 additions and 0 deletions

27
.codex/hooks.json Normal file
View File

@@ -0,0 +1,27 @@
{
"hooks": {
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "python3 -X utf8 .codex/hooks/inject-workflow-state.py",
"timeout": 15
}
]
}
],
"SubagentStart": [
{
"matcher": "^(?:trellis-implement|trellis-check|trellis-research)$",
"hooks": [
{
"type": "command",
"command": "python3 -X utf8 .codex/hooks/inject-subagent-context.py",
"timeout": 15
}
]
}
]
}
}