modify documents

This commit is contained in:
NINI
2026-05-01 02:29:30 +09:00
parent 4b89f4aa96
commit e99b5b8eff
65 changed files with 2814 additions and 72 deletions
+76 -2
View File
@@ -1,15 +1,89 @@
{
"hooks": {
"SessionStart": [
{
"matcher": "startup|resume",
"hooks": [
{
"type": "command",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/session_start_context.py\"",
"statusMessage": "Loading FESA handoff context"
}
]
}
],
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "python3 \"$(git rev-parse --show-toplevel)/.codex/hooks/pre_tool_use_policy.py\"",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/pre_tool_use_policy.py\"",
"statusMessage": "Checking risky shell command"
}
]
},
{
"matcher": "apply_patch",
"hooks": [
{
"type": "command",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/pre_edit_policy.py\"",
"statusMessage": "Checking FESA edit context"
}
]
},
{
"matcher": "Edit",
"hooks": [
{
"type": "command",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/pre_edit_policy.py\"",
"statusMessage": "Checking FESA edit context"
}
]
},
{
"matcher": "Write",
"hooks": [
{
"type": "command",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/pre_edit_policy.py\"",
"statusMessage": "Checking FESA edit context"
}
]
}
],
"PostToolUse": [
{
"matcher": "apply_patch",
"hooks": [
{
"type": "command",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/post_tool_use_policy.py\"",
"statusMessage": "Checking FESA post-edit reminders"
}
]
},
{
"matcher": "Edit",
"hooks": [
{
"type": "command",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/post_tool_use_policy.py\"",
"statusMessage": "Checking FESA post-edit reminders"
}
]
},
{
"matcher": "Write",
"hooks": [
{
"type": "command",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/post_tool_use_policy.py\"",
"statusMessage": "Checking FESA post-edit reminders"
}
]
}
],
"Stop": [
@@ -17,7 +91,7 @@
"hooks": [
{
"type": "command",
"command": "python3 \"$(git rev-parse --show-toplevel)/.codex/hooks/stop_continue.py\"",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/stop_continue.py\"",
"statusMessage": "Running Harness validation",
"timeout": 300
}