add pdftomd

This commit is contained in:
김경종
2026-05-08 16:42:19 +09:00
parent 551ab50735
commit 88d6b92283
99 changed files with 47332 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
{
"hooks": {
"SessionStart": [
{
"matcher": "startup|resume|clear",
"hooks": [
{
"type": "command",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/session_start_context.py\"",
"timeout": 10,
"statusMessage": "Loading project plan context"
}
]
}
],
"PreToolUse": [
{
"matcher": "^Bash$",
"hooks": [
{
"type": "command",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/pre_tool_policy.py\"",
"timeout": 10,
"statusMessage": "Checking project shell policy"
}
]
},
{
"matcher": "^apply_patch$|Edit|Write",
"hooks": [
{
"type": "command",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/pre_tool_policy.py\"",
"timeout": 10,
"statusMessage": "Checking project edit policy"
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "python \"$(git rev-parse --show-toplevel)/.codex/hooks/stop_workspace_check.py\"",
"timeout": 10,
"statusMessage": "Checking project completion state"
}
]
}
]
}
}